原理:利用socket回话,只连接耳不收发任何信息from socket import *
def scan(host,port):
try:
soc = socket((host,port))
s
2020-04-25