码迷,mamicode.com
首页 > 编程语言 > 详细

Python与Hack之Unix口令

时间:2016-11-23 22:25:27      阅读:271      评论:0      收藏:0      [点我收藏+]

标签:user   实现   blog   unix   环境   ctf   readline   txt   salt   

1.在实验时候,先导入crypt库:必须在Unix环境下才能实现这个模块

技术分享

 

2.代码贴一下,以后有了Unix环境试试吧:

import crypt
import sys
sys.modules[‘Crypto‘]=crypto

def testPass(cryptPass):
salt=cryptPass[0:2]
dictFile=open(‘dictionary.txt‘,‘r‘)
for word in dictFile.readline():
word=word.strip(‘\n‘)
cryptWord=crypto.crypto(word,salt)
if(cryptWord==cryptPass):
print("[+] Found Password:"+word+"\n")

print("[-] Password Not Found.\n")

def main():
passFile=open(‘passwords.txt‘)
for line in passFile.readline():
if ":" in line:
user=line.split(‘:‘)[0]
cryptPass=line.split(‘:‘)[1].strip(‘ ‘)
print("[+] Cracking Password For:"+user)
testPass(cryptPass)
if __name__=="__main__":
main()


Python与Hack之Unix口令

标签:user   实现   blog   unix   环境   ctf   readline   txt   salt   

原文地址:http://www.cnblogs.com/hqutcy/p/6095418.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!