摘要: #!/usr/bin/python # -*- coding: utf-8 -*- # 查找哪台电脑开了远程端口 from socket import * # 3389 host = '192.168.11.' opened_ports = [] for ip in range(1, 254): s 阅读全文
posted @ 2022-10-13 14:44 那时一个人 阅读(69) 评论(0) 推荐(0)