摘要: #!/usr/bin/pythonimport optparsefrom socket import *from threading import *screenLock = Semaphore(value=1)def connScan(host,port): try: s = socket(AF_INET,SOCK_STREAM) s.connect((host,port)) screenLock.acquire() print '[+] '+str(port)+' open' except: screenLo... 阅读全文
posted @ 2012-12-08 16:01 Myths 阅读(371) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/pythonimport zipfileimport optparsefrom threading import Threaddef extractFile(zFile,password): try: zFile.extractall(pwd=password) print '[+] Found password '+password except: passdef main(): parser = optparse.OptionParser("usage %prog -f <zipfile> -d <dicti... 阅读全文
posted @ 2012-12-08 14:46 Myths 阅读(621) 评论(0) 推荐(0) 编辑