Python 端口扫描(全连接,无多线程)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 端口扫描(全连接,无多线程)相关的知识,希望对你有一定的参考价值。
‘‘‘这是一个端口全连接扫描的脚本,扫描结果会比较准确,但是比较费时间‘‘‘
‘‘‘运行环境 Python3 ‘‘‘
from socket import *
def portScanner(host,port):
try:
s = socket(AF_INET,SOCK_STREAM) #注意参数
s.connect((host,port)) #注意括号 (host,port)
print(‘[+] %d open‘ % port)
s.close()
except: #如果端口连接失败,则输出$port close
print(‘[-] %d close‘ % port)
def main():
setdefaulttimeout(1)
ports = [20, 22, 23, 80, 111, 3306] #定义要扫描的端口,也可以在下面定义 for p in range(1,1024):
for p in ports:
portScanner(‘192.168.60.130‘,p) #设置要扫描的主机为192.168.60.130
if __name__ == ‘__main__‘: #“Make a script both importable and executable”
main() # 如果这文件中的代码被外部的python文件调用是不会被执行的
ps: 关于Python中的 if __name__ == ‘__main__‘
的解释可以参考:https://www.cnblogs.com/kex1n/p/5975575.html
以上是关于Python 端口扫描(全连接,无多线程)的主要内容,如果未能解决你的问题,请参考以下文章