python端口扫描,,简易版:#autho
python端口扫描,,简易版:#autho
简易版:
#author:Blood_Zero#coding:utf-8import socketimport sysPortList=[21,22,23,25,80,135]#host=sys.argv[1]for i in PortList: sock=socket.socket() sock.settimeout(2) try: sock.connect((host,i)) print "the port %d is open" %i except Exception: print "the port %d is not open" %i sock.close()
执行方法:python port_scan.py www.xx.com
后续还会出很多加强版!
python端口扫描
相关内容
- 暂无相关文章
评论关闭