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()
# 判断是否连接成功
...
-
运维•2023-11-08• 421Views
webstorm + eslint
-
运维•2023-10-22• 553Views
potplayer变声处理
-
运维•2023-10-20• 575Views
postgresql数据库查看schema的索引
-
运维•2023-10-18• 574Views
统计当前目录下的代码行数
-
2023-11-08• 421Views
webstorm + eslint
-
2023-11-15• 196Views
yarn升级