其他分享
首页 > 其他分享> > Xray批量挖洞的几种方法

Xray批量挖洞的几种方法

作者:互联网

AWVS联动Xray

crawler联动Xray

https://github.com/timwhitez/crawlergo_x_XRAY

fofa2Xray

https://github.com/piaolin/fofa2Xray/blob/master/README_ZH.md

xray批量扫描url

参考链接:
https://blog.csdn.net/qq_42404383/article/details/111304466

白嫖参考代码:

#author: 想学点black技术
#用法: 在bat.py的同目录下生成xray_url.txt,根据自己的需求更改scan_command即可
#time: 2020年12月16日20:27:40
#环境: python3
#说明: command中的xray路径需要手动修改,报告生成的位置在同一目录下

import os
import hashlib
import re

# 扫描
def get_url():
    f = open("xray_url.txt")
    lines = f.readlines()
    # 匹配http | https请求头
    pattern = re.compile(r'^(https|http)://')
    for line in lines:
        try:
            if not pattern.match(line.strip()):
                targeturl="http://"+line.strip()
            else:
                targeturl=line.strip()
            # print(targeturl.strip())
            outputfilename=hashlib.md5(targeturl.encode("utf-8"))
            do_scan(targeturl.strip(), outputfilename.hexdigest())
        except Exception as e:
            print(e)
            pass
    f.close()
    print("Xray Scan End~")
    return

# 报告
def do_scan(targeturl,outputfilename="test"):
    scan_command="E:/tools/xray_windows_amd64.exe/xray.exe webscan --basic-crawler {} --html-output {}.html".format(targeturl,outputfilename)
    # scan_command = "ping 943ogg.dnslog.cn"
    # print(scan_command)
    os.system(scan_command)
    return

if __name__ == '__main__':
    get_url()

标签:xray,批量,scan,strip,Xray,command,https,targeturl,挖洞
来源: https://www.cnblogs.com/ctfisnull/p/15192228.html