1. 首页
  2. 数据库
  3. 其它
  4. python多线程扫描端口示例

python多线程扫描端口示例

上传者: 2020-12-30 19:39:51上传 PDF文件 21.52KB 热度 18次
复制代码 代码如下:# -*- coding: cp936 -*-import socketfrom threading import Thread,activeCount,Lockfrom time import ctimemutex = Lock() class Loop(Thread): def __init__(self,ip,port,que): Thread.__init__(self) self.ip = ip self.port = port self.que = que def run(s
用户评论