python ftp登陸(匿名)

theKingOfNight發表於2018-11-11

直接上程式碼

import ftplib

host='127.0.0.1'
flag=1

username='anonymous'    #這裡直接弄匿名登陸吧
password='asdsa'        #匿名這裡隨便輸入
                        #可以使用自己的字典對這裡進行username和password的改進
while flag:
    try:
        print("trying  "+username+" "+password)
        ftp = ftplib.FTP(host)
        ftp.login(user=username,passwd=password)
        ftp.quit()
        print('Success  '+username+" "+password)
        flag=0
    except:
        pass

相關文章