python实现多线程端口扫描

作者:sime_km 时间:2021-07-06 03:27:26 

一个简易的TCP端口扫描器,使用python3实现。

需求:扫描目标网站开放哪些端口号,将所有开放的端口号输出。

分析:使用socket连接,如果连接成功,认为端口开放,如果连接失败,认为端口关闭(有可能端口开放但连接失败,这里简单认为端口不开放)

使用到的库:socket, threading

过程:

先定义一个函数,对给定的(ip, port)进行扫描,看其是否能连接成功。


def tcpPortScan(ip, port, openPort):
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) # 创建套接字
sock.settimeout(0.1)   # 设置延时时间
try:
 result = sock.connect_ex((ip, port))
 if result == 0:    # 如果连接成功,返回值为0
  openPort.append(port) # 如果端口开放,就把端口port赋给openPort
except:
 pass
sock.close()     # 关闭套接字

当需要扫描目标地址的多个端口时,循环使用上述函数的话,扫描速度会极其慢,因为考虑使用多线程。

再定义一个函数,实现多线程扫描。


def threadingPortScan(host, portList, openPorts = []):

hostIP = socket.gethostbyname(host) # 获取域名对应的IP地址
nloops = range(len(portList))
threads = []

for i in nloops:
 t = threading.Thread(target=tcpPortScan, args=(hostIP, portList[i], openPorts))
 threads.append(t)

for i in nloops:
 threads[i].start()

for i in nloops:
 threads[i].join()
return openPorts  # 返回值为该域名下开放的端口列表

完整代码如下:


# -*- coding:utf-8 -*-
'''
使用多线程,检测一个目标地址的端口开放情况,目标地址由用户输入,端口暂时定义为0~1024,
检测TCP连接是否成功,如果连接成功,则端口开放,不成功则端口关闭
'''

import socket
import threading

def main():
host = input('please input domain:')
portList = range(0, 1025)
openPorts = threadingPortScan(host, portList)
print(host,'open ports:', openPorts)

# 对给定的(ip, port)进行TCP连接扫描
def tcpPortScan(ip, port, openPort):
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) # 创建套接字
sock.settimeout(0.1)   # 设置延时时间
try:
 result = sock.connect_ex((ip, port))
 if result == 0:
  openPort.append(port) # 如果端口开放,就把端口port赋给openPort
except:
 pass
sock.close()     # 关闭套接字

def threadingPortScan(host, portList, openPorts = []):

hostIP = socket.gethostbyname(host) # 获取域名对应的IP地址
nloops = range(len(portList))
threads = []

for i in nloops:
 t = threading.Thread(target=tcpPortScan, args=(hostIP, portList[i], openPorts))
 threads.append(t)

for i in nloops:
 threads[i].start()

for i in nloops:
 threads[i].join()
return openPorts  # 返回值为该域名下开放的端口列表

if __name__ == '__main__':
main()

使用www.qq.com做一个测试,测试结果如下:


>>>please input domain: www.qq.com
www.qq.com open ports: [80, 843]

总结:这个小程序仅适用于新手练习,不适合真正应用。该简易端口扫描器仅能扫描出一部分端口,有些端口可能因为防火墙拦截导致扫描失败。

来源:https://blog.csdn.net/sime_km/article/details/79747334

标签:python,多线程,端口扫描
0
投稿

猜你喜欢

  • Python scrapy增量爬取实例及实现过程解析

    2022-11-12 21:58:39
  • Python编写合并字典并实现敏感目录的小脚本

    2023-05-28 18:36:29
  • ASP+JAVAScript:复杂表单的动态生成与验证

    2007-10-06 21:51:00
  • centos yum php 7.x 无需删除升级的方法

    2023-11-20 14:48:08
  • 浅谈innodb_autoinc_lock_mode的表现形式和选值参考方法

    2024-01-12 17:22:55
  • python脚本框架webpy入门安装及应用创建

    2023-08-23 05:08:51
  • 如何使用Python破解ZIP或RAR压缩文件密码

    2022-03-24 19:28:45
  • MySQL基本操作语句小结

    2024-01-19 16:02:30
  • 利用python如何在前程无忧高效投递简历

    2022-10-26 22:33:02
  • mysql命令行中执行sql的几种方式总结

    2024-01-14 16:11:33
  • python导入不同目录下的自定义模块过程解析

    2022-11-08 16:05:47
  • win8下python3.4安装和环境配置图文教程

    2022-10-29 03:23:29
  • 使用tensorflow实现AlexNet

    2023-08-10 08:29:30
  • asp如何读取注册表的信息?

    2009-11-19 21:18:00
  • Numpy 多维数据数组的实现

    2022-12-22 11:26:03
  • python钉钉机器人运维脚本监控实例

    2022-08-23 22:19:48
  • Python 解决空列表.append() 输出为None的问题

    2023-07-24 14:07:57
  • JS实现六边形3D拖拽翻转效果的方法

    2023-08-28 15:51:31
  • Python print函数:如何将对象打印输出

    2023-03-26 23:07:16
  • IE6与IE7的unshift 方法

    2010-01-19 13:59:00
  • asp之家 网络编程 m.aspxhome.com