• 大小: 1.08KB
    文件类型: .py
    金币: 1
    下载: 0 次
    发布日期: 2021-03-02
  • 语言: Python
  • 标签: python  py  端口  

资源简介

用python实现简单的端口扫描

资源截图

代码片段和文件信息

#!/usr/bin/python3
# -*- coding: utf-8 -*-
from socket import *
import threading


lock = threading.Lock()
openNum = 0
threads = []

#1
def giapfi():
    ip=input(“please input ip(192.168.0.107):“)
    port_s=eval(input(“please input start port(start-end):“))
    port_e=eval(input(“please input end port(start-end):“))
    return ipport_sport_e
    
def portScanner(hostport):
    global openNum
    try:
        
        s = socket(AF_INETSOCK_STREAM)
        #6
        s.connect((hostport))
        lock.acquire()
      

评论

共有 条评论