#!/usr/bin/env python
# _*_ coding:utf-8 _*_
import sys
import struct
import time
import array
import string
import getopt
import binascii
import threading
import socket
import select
import threading
import subprocess
from Queue import Queue
#设ICMP定包头字段初始值
ICMP_DATA_STR = 56
#total size of data
ICMP_TYPE = 8
#initital values of header variables
ICMP_TYPE_IP6 = 128
#ipv6
ICMP_CODE = 0
ICMP_CHECKSUM = 0
#校验和值
ICMP_ID = 0
ICMP_SEQ_NR = 0
#序列号值
def _construct(id , size , ipv6):
'''
构造一个ICMP echo 数据包
'''
if ipv6: #构建数据包头,ipv6和ipv4对应不同头部
header = struct.pack('BbHHh' , ICMP_TYPE_IP6 , ICMP_CODE , ICMP_CHECKSUM,\
ICMP_ID , ICMP_SEQ_NR + id)
else: #ipv4头部
header = struct.pack('bbHHh' , ICMP_TYPE,ICMP_CODE,ICMP_CHECKSUM,\
ICMP_ID , ICMP_SEQ_NR + id)
load = "__ Are you here?__" #填充数据字段内容
#space for time 去掉时间字符串后的包的大小
size -= struct.calcsize("d")
rest = ""
if size > len(load):
rest = load
size -= len(load)
rest += size * "x" #将数据位剩余位填充x
data = struct.pack('d' , time.time()) + rest #将时间填充到数据位中
packet = header + data #构建数据包
checksum = _in_cksum(packet) #做校验和错误
#costruct header with correct checksum 加入校验位后重新打包
if ipv6:
header = struct.pack('BbHHh' , ICMP_TYP
python实现简单Nmap扫描
最新推荐文章于 2024-08-09 11:17:43 发布
该Python脚本实现了简单的网络扫描功能,包括ICMP echo数据包的构造和TCP连接扫描。它能检测主机存活并尝试连接指定端口,如22、80和443。同时,提供了命令行参数支持自定义扫描IP数量和端口。
摘要由CSDN通过智能技术生成