0x01 版本一import socket
from multiprocessing import Pool
# 端口扫描-
def port_scan(ip, port):
# 创建socket对象
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
# 设置超时时间
s.settimeout(0.1)
# 连接
result = s.connect_ex((ip, port))
# 关闭连接
s.close()
# 判断是否连接成功
...
-
随笔•2026-03-29• 153Views
[转发]信息安全走向漫谈
-
随笔•2025-11-24• 3Views
asking(每日)
-
2026-04-26• 62Views
这些年的痕迹