• 漏洞挖掘中对子域名数据的处理


    0x01 前言

    今天用lijiejie师傅的子域名扫描器测试某电商的域名,结果差不多有70000+条子域名,自己手工访问一些网站的时候,有如下结果

    1.png

    这个结果是tengine服务器的web目录下没有index而造成的现象,而且这种类似的服务器一般不存在漏洞,web服务是没有的,以及端口的开放状况也大多数是80 443端口,我们需要舍弃

    还有openresty的403

    以及nginx的502 Bad Gateway等等

    那么如何在那么多的子域名中找到web服务开放的域名,可能需要(python)的帮助

    0x01 80_open_detect_V1.0编写

    最初想的是用单线程,每行读取子域名,然后用requests模块进行访问,通过特征来判断是否是有服务的域名。

    80_open_detect_V1.0.py

    #coding=utf-8
    # Author : MrSm1th
    import requests 
    import re
    import os
    def main(file,newfile):
        i=0
        j=0
        f = open(file,"r")
        f1 = open(newfile,"a+")
        while 1:
            j+=1
            line = f.readline()
            if not line:
                print "[*]done!Found:   "+str(i)
                break
            url = "http://"+"".join(re.findall("(.*).com",line))+".com"
            print str(j)+":"+url
            try:
                if "403 Forbidden" and "Powered by Tengine" in requests.get(url).content:
                    continue
                else:
                    i+=1
                    print "[*]found:"+url
                    f1.write(url+"
    ")
            except:
                print "[-]connect fail:"+url
        f1.close()
        f.close()
    if __name__ == '__main__':
        file = raw_input("enter file you want to detect:")
        if(os.path.exists(file)==False):
            exit("[-]file not exists")
        newfile = file+"_80_open_detect.txt"
        if(os.path.exists(newfile)==True):
            exit("[-]newfile exists")
        main(file,newfile)
    

    但是经过测试后发现脚本速度很慢。随即发现需要用多线程跑。

    0x01 80_open_detect_V2.0效果

    2.png

    80_open_detect_V2.0.py 具有自定义线程 异常处理等功能 方便平时的漏洞挖掘

    记录一下。。

  • 相关阅读:
    C# 实现将 PDF 转文本的功能
    推荐大家使用的CSS书写规范、顺序
    Android 应用开发者必看的 9 个 Tips
    网站统计中的数据收集原理及实现
    JSON劫持漏洞攻防原理及演练
    巧妙使用 CSS3 的褪色和动画效果制作消息提醒框
    20条常见的编码陷阱
    11 个最佳 jQuery 滚动条插件
    JavaScript客户端MVC 框架综述
    20个初学者实用的CSS技巧
  • 原文地址:https://www.cnblogs.com/Mrsm1th/p/9010828.html
Copyright © 2020-2023  润新知