Python3 小工具-ICMP扫描

Posted zmqqq

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python3 小工具-ICMP扫描相关的知识,希望对你有一定的参考价值。

from scapy.all import *
import optparse
import threading
import os

def scan(ipt):
    pkt=IP(dst=ipt)/ICMP()
    res=sr1(pkt,timeout=0.1,verbose=0)
    if res:
        print(ipt,‘ is online‘)
    
def main():
    parser=optparse.OptionParser("%prog "+"-t <target> -f <filename>")
    parser.add_option(‘-t‘,dest=‘target‘,type=‘string‘,help=‘Target‘)
    parser.add_option(‘-f‘,dest=‘fil‘,type=‘string‘,help=‘Filename‘)
    (options,args)=parser.parse_args()
    target=options.target
    fil=options.fil
    if(target==None) and (fil==None):
        print(‘Please input target(-t) or file(-f)‘)
        exit(0)

    if target:
        iplist=target.split(‘.‘)
        ip=iplist[0]+‘.‘+iplist[1]+‘.‘+iplist[2]+‘.‘
        for t in range(1,255):
            ipt=ip+str(t)
            t=threading.Thread(target=scan,args=(ipt,))
            t.start()
    if fil:
        if os.path.exists(fil):
            with open(fil) as f:
                for i in f.readlines():
                    ipt=i.strip(‘
‘)
                    t=threading.Thread(target=scan,args=(ipt,))
                    t.start()
        else:
            print(‘File is not exists!‘)
            exit(0)

if __name__==‘__main__‘:
    main()

使用说明

技术图片

开始程序

技术图片

github:https://github.com/zmqq/pytools/tree/master/icmpscan

以上是关于Python3 小工具-ICMP扫描的主要内容,如果未能解决你的问题,请参考以下文章

Python3 小工具-MAC泛洪

python3 小工具

Python编写类似nmap的扫描工具

python编写类似nmap的扫描工具

Python3漏洞扫描工具 ( Python3 插件式框架 )

25.构造ICMP数据包