Sublist3r icon indicating copy to clipboard operation
Sublist3r copied to clipboard

PROGRAM BROTHER MAN PLEASE READ AND RESPOND = WE NEED YOU SIR`s !!!!

Open Huzzla101 opened this issue 1 year ago • 1 comments

hi i just startet testing ur pen testing software now and i saw it in action on youtube where it does exactly what i want ... but when i start it this comes. i give u the whole deal please revert.... Reply when have time Sir---- We need to stay geeked... 📦 :p

i get this first when starting up program : /home/mastermind/Sublist3r/sublist3r.py:75: SyntaxWarning: invalid escape sequence '_' print("""%s /home/mastermind/Sublist3r/sublist3r.py:286: SyntaxWarning: invalid escape sequence '/' link_regx = re.compile('<cite.?>(.?)</cite>') /home/mastermind/Sublist3r/sublist3r.py:343: SyntaxWarning: invalid escape sequence '/' link = re.sub("<(/)?b>", "", link)

THEN program starts i start search and this come:

              # Coded By Ahmed Aboul-Ela - @aboul3la

Usage: python sublist3r.py [Options] use -h for help Error: the following arguments are required: -d/--domain mastermind@GRANDM:~/Sublist3r$ python3 sublist3r.py -d www.vg.no /home/mastermind/Sublist3r/sublist3r.py:75: SyntaxWarning: invalid escape sequence '_' print("""%s /home/mastermind/Sublist3r/sublist3r.py:286: SyntaxWarning: invalid escape sequence '/' link_regx = re.compile('<cite.?>(.?)</cite>') /home/mastermind/Sublist3r/sublist3r.py:343: SyntaxWarning: invalid escape sequence '/' link = re.sub("<(/)?b>", "", link) /home/mastermind/Sublist3r/sublist3r.py:439: SyntaxWarning: invalid escape sequence '/' link = re.sub('<(/)?strong>|<span.?>|<|>', '', link) /home/mastermind/Sublist3r/sublist3r.py:658: SyntaxWarning: invalid escape sequence '/' tbl_regex = re.compile('</a>Host Records.?<table.?>(.?)', re.S) /home/mastermind/Sublist3r/sublist3r.py:898: SyntaxWarning: invalid escape sequence '-' domain_check = re.compile("^(http|https)?[a-zA-Z0-9]+([-.]{1}[a-zA-Z0-9]+)*.[a-zA-Z]{2,}$")

             ____        _     _ _     _   _____
            / ___| _   _| |__ | (_)___| |_|___ / _ __
            \___ \| | | | '_ \| | / __| __| |_ \| '__|
             ___) | |_| | |_) | | \__ \ |_ ___) | |
            |____/ \__,_|_.__/|_|_|___/\__|____/|_|

            # Coded By Ahmed Aboul-Ela - @aboul3la

[-] Enumerating subdomains now for www.vg.no [-] Searching now in Baidu.. [-] Searching now in Yahoo.. [-] Searching now in Google.. [-] Searching now in Bing.. [-] Searching now in Ask.. [-] Searching now in Netcraft.. [-] Searching now in DNSdumpster.. [-] Searching now in Virustotal.. [-] Searching now in ThreatCrowd.. [-] Searching now in SSL Certificates.. [-] Searching now in PassiveDNS.. Process DNSdumpster-8: Traceback (most recent call last): File "/usr/lib/python3.12/multiprocessing/process.py", line 314, in _bootstrap self.run() File "/home/mastermind/Sublist3r/sublist3r.py", line 268, in run domain_list = self.enumerate() ^^^^^^^^^^^^^^^^ File "/home/mastermind/Sublist3r/sublist3r.py", line 647, in enumerate token = self.get_csrftoken(resp) ^^^^^^^^^^^^^^^^^^^^^^^^ File "/home/mastermind/Sublist3r/sublist3r.py", line 641, in get_csrftoken token = csrf_regex.findall(resp)[0] ~~~~~~~~~~~~~~~~~~~~~~~~^^^ IndexError: list index out of range [!] Error: Virustotal probably now is blocking our requests

Huzzla101 avatar Nov 28 '24 14:11 Huzzla101

Read your errors - there are Regex-String errors, fix them. Example: ERROR: link_regx = re.compile('<cite.?>(.?)') FIX: link_regx = re.compile(r'<cite.?>(.?)')

Rand0x avatar Dec 01 '24 15:12 Rand0x