Meaner, Faster Sublist3r2 v1.0 python3 based for linux
This commit is contained in:
parent
729d649ec5
commit
519788a852
|
|
@ -1,2 +1,2 @@
|
|||
include LICENSE README.md
|
||||
include subbrute/*.txt
|
||||
include aiodnsbrute/*.txt
|
||||
|
|
|
|||
|
|
@ -0,0 +1,359 @@
|
|||
import random
|
||||
import string
|
||||
import asyncio
|
||||
import functools
|
||||
import os
|
||||
import uvloop
|
||||
import aiodns
|
||||
import click
|
||||
import socket
|
||||
import sys
|
||||
from tqdm import tqdm
|
||||
from aiodnsbrute.logger import ConsoleLogger
|
||||
|
||||
|
||||
class aioDNSBrute(object):
|
||||
"""aiodnsbrute implements fast domain name brute forcing using Python's asyncio module."""
|
||||
|
||||
def __init__(self, verbosity=0, max_tasks=512):
|
||||
"""Constructor.
|
||||
|
||||
Args:
|
||||
verbosity: set output verbosity: 0 (default) is none, 3 is debug
|
||||
max_tasks: the maximum number of tasks asyncio will queue (default 512)
|
||||
"""
|
||||
self.tasks = []
|
||||
self.errors = []
|
||||
self.fqdn = []
|
||||
self.ignore_hosts = []
|
||||
asyncio.set_event_loop_policy(uvloop.EventLoopPolicy())
|
||||
self.loop = asyncio.get_event_loop()
|
||||
self.resolver = aiodns.DNSResolver(loop=self.loop, rotate=True)
|
||||
self.sem = asyncio.BoundedSemaphore(max_tasks)
|
||||
self.max_tasks = max_tasks
|
||||
self.verbosity = verbosity
|
||||
self.logger = ConsoleLogger(verbosity)
|
||||
|
||||
async def _dns_lookup(self, name):
|
||||
"""Performs a DNS request using aiodns, self.lookup_type is set by the run function.
|
||||
A query for A record returns <ares_query_a_result> which does not return metadata about
|
||||
when a CNAME was resolved (just host and ttl attributes) however it should be faster.
|
||||
The <ares_host_result> returned by gethostbyname contains name, aliases, and addresses, if
|
||||
name is different in response we can surmise that the original domain was a CNAME entry.
|
||||
|
||||
Args:
|
||||
name: the domain name to resolve
|
||||
|
||||
Returns:
|
||||
object: <ares_query_a_result> if query, <ares_host_result> if gethostbyname
|
||||
"""
|
||||
if self.lookup_type == "query":
|
||||
return await self.resolver.query(name, "A")
|
||||
elif self.lookup_type == "gethostbyname":
|
||||
return await self.resolver.gethostbyname(name, socket.AF_INET)
|
||||
|
||||
def _dns_result_callback(self, name, future):
|
||||
"""Handles the pycares object passed by the _dns_lookup function. We expect an errror to
|
||||
be present in the returned object because most lookups will be for names that don't exist.
|
||||
c-ares errors are passed through directly, error types can be identified in ares_strerror.c
|
||||
|
||||
Args:
|
||||
name: original lookup name (because the query_result object doesn't contain it)
|
||||
future: the completed future (pycares dns result)
|
||||
"""
|
||||
# Record processed we can now release the lock
|
||||
self.sem.release()
|
||||
# Handle known exceptions, barf on other ones
|
||||
if future.exception() is not None:
|
||||
try:
|
||||
err_number = future.exception().args[0]
|
||||
err_text = future.exception().args[1]
|
||||
except IndexError:
|
||||
self.logger.error(f"Couldn't parse exception: {future.exception()}")
|
||||
# handle the DNS errors we expect to receive, show user unexpected errors
|
||||
if err_number == 4:
|
||||
# This is domain name not found, ignore it
|
||||
pass
|
||||
# elif err_number == 12:
|
||||
# Timeout from DNS server
|
||||
#self.logger.warn(f"Timeout for {name}")
|
||||
elif err_number == 1:
|
||||
# Server answered with no data
|
||||
pass
|
||||
#else:
|
||||
#self.logger.error(
|
||||
# f"{name} generated an unexpected exception: {future.exception()}"
|
||||
#)
|
||||
# for debugging/troubleshoooting keep a list of errors
|
||||
# self.errors.append({'hostname': name, 'error': err_text})
|
||||
|
||||
# parse and output and store results.
|
||||
else:
|
||||
if self.lookup_type == "query":
|
||||
ips = [ip.host for ip in future.result()]
|
||||
cname = False
|
||||
row = f"{name:<30}\t{ips}"
|
||||
elif self.lookup_type == "gethostbyname":
|
||||
r = future.result()
|
||||
ips = [ip for ip in r.addresses]
|
||||
if name == r.name:
|
||||
cname = False
|
||||
n = f"""{name:<30}\t{f"{'':<35}" if self.verbosity >= 2 else ""}"""
|
||||
else:
|
||||
cname = True
|
||||
# format the name based on verbosity - this is kluge
|
||||
short_cname = f"{r.name[:28]}.." if len(r.name) > 30 else r.name
|
||||
n = f'{name}{"**" if self.verbosity <= 1 else ""}'
|
||||
n = f'''{n:<30}\t{f"CNAME {short_cname:<30}" if self.verbosity >= 2 else ""}'''
|
||||
row = f"{n:<30}\t{ips}"
|
||||
# store the result
|
||||
if set(ips) != set(self.ignore_hosts):
|
||||
self.logger.success(row)
|
||||
dns_lookup_result = {"domain": name, "ip": ips}
|
||||
if self.lookup_type == "gethostbyname" and cname:
|
||||
dns_lookup_result["cname"] = r.name
|
||||
dns_lookup_result["aliases"] = r.aliases
|
||||
self.fqdn.append(dns_lookup_result)
|
||||
self.logger.debug(future.result())
|
||||
self.tasks.remove(future)
|
||||
if self.verbosity >= 1:
|
||||
self.pbar.update()
|
||||
|
||||
|
||||
async def _queue_lookups(self, wordlist, domain):
|
||||
"""Takes a list of words and adds them to the async loop also passing the original
|
||||
lookup domain name; then attaches the processing callback to deal with the result.
|
||||
|
||||
Args:
|
||||
wordlist: a list of names to perform lookups for
|
||||
domain: the base domain to perform brute force against
|
||||
"""
|
||||
for word in wordlist:
|
||||
# Wait on the semaphore before adding more tasks
|
||||
await self.sem.acquire()
|
||||
host = f"{word.strip()}.{domain}"
|
||||
task = asyncio.ensure_future(self._dns_lookup(host))
|
||||
task.add_done_callback(functools.partial(self._dns_result_callback, host))
|
||||
self.tasks.append(task)
|
||||
await asyncio.gather(*self.tasks, return_exceptions=True)
|
||||
|
||||
def bruteforce_domain(target, resolvers=None, wordlist="subdomains-top1million-110000.txt", wildcard=True, verify=True, found_subdomains=[], thread_count=7000, query=True):
|
||||
subdomains_list = []
|
||||
names_list = []
|
||||
verbosity=1
|
||||
if resolvers:
|
||||
resolverfile = open(resolvers,'r')
|
||||
lines = resolverfile.read().splitlines()
|
||||
resolvers = [x.strip() for x in lines if (x and not x.startswith("#"))]
|
||||
bf = aioDNSBrute(verbosity=verbosity, max_tasks=thread_count)
|
||||
subdomains_list = bf.run(wordlist, target, resolvers, wildcard, verify, query)
|
||||
resolverfile.close()
|
||||
for r in range(1, len(subdomains_list)):
|
||||
names_list.append(subdomains_list[r]['domain'])
|
||||
|
||||
return names_list
|
||||
|
||||
def run(
|
||||
self, wordlist, domain, resolvers=None, wildcard=True, verify=True, query=True
|
||||
):
|
||||
"""
|
||||
Sets up the bruteforce job, does domain verification, sets resolvers, checks for wildcard
|
||||
response to lookups, and sets the query type to be used. After all this, open the wordlist
|
||||
file and start the brute force - with ^C handling to cleanup nicely.
|
||||
|
||||
Args:
|
||||
wordlist: a string containing a path to a filename to be used as a wordlist
|
||||
domain: the base domain name to be used for lookups
|
||||
resolvers: a list of DNS resolvers to be used (default None, uses system resolvers)
|
||||
wildcard: bool, do wildcard dns detection (default true)
|
||||
verify: bool, check if domain exists (default true)
|
||||
query: bool, use query to do lookups (default true), false means gethostbyname is used.
|
||||
|
||||
Returns:
|
||||
dict containing result of lookups
|
||||
"""
|
||||
self.logger.info(
|
||||
f"Brute forcing {domain} with a maximum of {self.max_tasks} concurrent tasks..."
|
||||
)
|
||||
if verify:
|
||||
#self.logger.info(f"Using local resolver to verify {domain} exists.")
|
||||
try:
|
||||
socket.gethostbyname(domain)
|
||||
except socket.gaierror as err:
|
||||
self.logger.error(
|
||||
f"Couldn't resolve {domain}, use the --no-verify switch to ignore this error."
|
||||
)
|
||||
raise SystemExit(
|
||||
self.logger.error(f"Error from host lookup: {err}")
|
||||
)
|
||||
else:
|
||||
self.logger.warn("Skipping domain verification. YOLO!")
|
||||
if resolvers:
|
||||
self.resolver.nameservers = resolvers
|
||||
self.logger.info(
|
||||
f"Using recursive DNS with {len(self.resolver.nameservers)} nameservers"
|
||||
)
|
||||
|
||||
if wildcard:
|
||||
# 63 chars is the max allowed segment length, there is practically no chance that it will be a legit record
|
||||
random_sld = (
|
||||
lambda: f'{"".join(random.choice(string.ascii_lowercase + string.digits) for i in range(63))}'
|
||||
)
|
||||
try:
|
||||
self.lookup_type = "query"
|
||||
wc_check = self.loop.run_until_complete(
|
||||
self._dns_lookup(f"{random_sld()}.{domain}")
|
||||
)
|
||||
except aiodns.error.DNSError as err:
|
||||
# we expect that the record will not exist and error 4 will be thrown
|
||||
#self.logger.info(
|
||||
# f"No wildcard response was detected for this domain."
|
||||
#)
|
||||
wc_check = None
|
||||
finally:
|
||||
if wc_check is not None:
|
||||
self.ignore_hosts = [host.host for host in wc_check]
|
||||
self.logger.warn(
|
||||
f"Wildcard response detected, ignoring answers containing {self.ignore_hosts}"
|
||||
)
|
||||
else:
|
||||
self.logger.warn("Wildcard detection is disabled")
|
||||
|
||||
if query:
|
||||
#self.logger.info(
|
||||
# "Using pycares `query` function to perform lookups, CNAMEs cannot be identified"
|
||||
#)
|
||||
self.lookup_type = "query"
|
||||
else:
|
||||
self.logger.info(
|
||||
"Using pycares `gethostbyname` function to perform lookups, CNAME data will be appended to results (** denotes CNAME, show actual name with -vv)"
|
||||
)
|
||||
self.lookup_type = "gethostbyname"
|
||||
|
||||
with open(wordlist, encoding="utf-8", errors="ignore") as words:
|
||||
w = words.read().splitlines()
|
||||
self.logger.info(f"Wordlist loaded, proceeding with {len(w)} DNS requests")
|
||||
try:
|
||||
if self.verbosity >= 1:
|
||||
self.pbar = tqdm(
|
||||
total=len(w), unit="rec", maxinterval=0.1, mininterval=0
|
||||
)
|
||||
self.loop.run_until_complete(self._queue_lookups(w, domain))
|
||||
except KeyboardInterrupt:
|
||||
self.logger.warn("Caught keyboard interrupt, cleaning up...")
|
||||
asyncio.gather(*asyncio.Task.all_tasks()).cancel()
|
||||
self.loop.stop()
|
||||
finally:
|
||||
self.loop.close()
|
||||
if self.verbosity >= 1:
|
||||
self.pbar.close()
|
||||
self.logger.info(f"Bruteforcing Complete")
|
||||
return self.fqdn
|
||||
|
||||
|
||||
@click.command()
|
||||
@click.option(
|
||||
"--wordlist",
|
||||
"-w",
|
||||
help="Wordlist to use for brute force.",
|
||||
default=f"{os.path.dirname(os.path.realpath(__file__))}/wordlists/bitquark_20160227_subdomains_popular_1000",
|
||||
)
|
||||
@click.option(
|
||||
"--max-tasks",
|
||||
"-t",
|
||||
default=512,
|
||||
help="Maximum number of tasks to run asynchronosly.",
|
||||
)
|
||||
@click.option(
|
||||
"--resolver-file",
|
||||
"-r",
|
||||
type=click.File("r"),
|
||||
default=None,
|
||||
help="A text file containing a list of DNS resolvers to use, one per line, comments start with #. Default: use system resolvers",
|
||||
)
|
||||
@click.option(
|
||||
"--verbosity", "-v", count=True, default=1, help="Increase output verbosity"
|
||||
)
|
||||
@click.option(
|
||||
"--output",
|
||||
"-o",
|
||||
type=click.Choice(["csv", "json", "off"]),
|
||||
default="off",
|
||||
help="Output results to DOMAIN.csv/json (extension automatically appended when not using -f).",
|
||||
)
|
||||
@click.option(
|
||||
"--outfile",
|
||||
"-f",
|
||||
type=click.File("w"),
|
||||
help="Output filename. Use '-f -' to send file output to stdout overriding normal output.",
|
||||
)
|
||||
@click.option(
|
||||
"--query/--gethostbyname",
|
||||
default=True,
|
||||
help="DNS lookup type to use query (default) should be faster, but won't return CNAME information.",
|
||||
)
|
||||
@click.option(
|
||||
"--wildcard/--no-wildcard",
|
||||
default=True,
|
||||
help="Wildcard detection, enabled by default",
|
||||
)
|
||||
@click.option(
|
||||
"--verify/--no-verify",
|
||||
default=True,
|
||||
help="Verify domain name is sane before beginning, enabled by default",
|
||||
)
|
||||
@click.version_option("0.3.2")
|
||||
@click.argument("domain", required=True)
|
||||
def main(**kwargs):
|
||||
"""aiodnsbrute is a command line tool for brute forcing domain names utilizing Python's asyncio module.
|
||||
|
||||
credit: blark (@markbaseggio)
|
||||
"""
|
||||
output = kwargs.get("output")
|
||||
verbosity = kwargs.get("verbosity")
|
||||
resolvers = kwargs.get("resolver_file")
|
||||
if output != "off":
|
||||
outfile = kwargs.get("outfile")
|
||||
# turn off output if we want JSON/CSV to stdout, hacky
|
||||
if outfile.__class__.__name__ == "TextIOWrapper":
|
||||
verbosity = 0
|
||||
if outfile is None:
|
||||
# wasn't specified on command line
|
||||
outfile = open(f'{kwargs["domain"]}.{output}', "w")
|
||||
if resolvers:
|
||||
lines = resolvers.read().splitlines()
|
||||
resolvers = [x.strip() for x in lines if (x and not x.startswith("#"))]
|
||||
|
||||
bf = aioDNSBrute(verbosity=verbosity, max_tasks=kwargs.get("max_tasks"))
|
||||
results = bf.run(
|
||||
wordlist=kwargs.get("wordlist"),
|
||||
domain=kwargs.get("domain"),
|
||||
resolvers=resolvers,
|
||||
wildcard=kwargs.get("wildcard"),
|
||||
verify=kwargs.get("verify"),
|
||||
query=kwargs.get("query"),
|
||||
)
|
||||
|
||||
if output in ("json"):
|
||||
import json
|
||||
json.dump(results, outfile)
|
||||
|
||||
if output in ("csv"):
|
||||
import csv
|
||||
writer = csv.writer(outfile)
|
||||
writer.writerow(["Hostname", "IPs", "CNAME", "Aliases"])
|
||||
[
|
||||
writer.writerow(
|
||||
[
|
||||
r.get("domain"),
|
||||
r.get("ip", [""])[0],
|
||||
r.get("cname"),
|
||||
r.get("aliases", [""])[0],
|
||||
]
|
||||
)
|
||||
for r in results
|
||||
]
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
from tqdm import tqdm
|
||||
from click import style
|
||||
|
||||
|
||||
class ConsoleLogger(object):
|
||||
"""A quick and dirty metasploit style console output logger that doesn't mess up tqdm output."""
|
||||
|
||||
def __init__(self, verbosity):
|
||||
self.verbosity = verbosity
|
||||
self.msg_type = {
|
||||
"info": ("[*]", "blue", 1),
|
||||
"success": ("[+]", "green", 1),
|
||||
"error": ("[-]", "red", 1),
|
||||
"warn": ("[!]", "yellow", 1),
|
||||
"debug": ("[D]", "cyan", 3),
|
||||
}
|
||||
|
||||
def __getattr__(self, attr):
|
||||
try:
|
||||
decorator = style(
|
||||
f"{self.msg_type[attr][0]} ", fg=self.msg_type[attr][1], bold=True
|
||||
)
|
||||
msg_verbosity = self.msg_type[attr][2]
|
||||
except KeyError:
|
||||
decorator = ""
|
||||
msg_verbosity = 1
|
||||
finally:
|
||||
if self.verbosity >= msg_verbosity:
|
||||
return lambda msg: tqdm.write(f"{decorator}{msg}")
|
||||
else:
|
||||
return lambda msg: None
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
from tqdm import tqdm
|
||||
from click import style
|
||||
|
||||
|
||||
class ConsoleLogger(object):
|
||||
"""A quick and dirty metasploit style console output logger that doesn't mess up tqdm output."""
|
||||
|
||||
def __init__(self, verbosity):
|
||||
self.verbosity = verbosity
|
||||
self.msg_type = {
|
||||
"info": ("[*]", "blue", 1),
|
||||
"success": ("[+]", "green", 1),
|
||||
"error": ("[-]", "red", 1),
|
||||
"warn": ("[!]", "yellow", 1),
|
||||
"debug": ("[D]", "cyan", 3),
|
||||
}
|
||||
|
||||
def __getattr__(self, attr):
|
||||
try:
|
||||
decorator = style(
|
||||
f"{self.msg_type[attr][0]} ", fg=self.msg_type[attr][1], bold=True
|
||||
)
|
||||
msg_verbosity = self.msg_type[attr][2]
|
||||
except KeyError:
|
||||
decorator = ""
|
||||
msg_verbosity = 1
|
||||
finally:
|
||||
if self.verbosity >= msg_verbosity:
|
||||
return lambda msg: tqdm.write(f"{decorator}{msg}")
|
||||
else:
|
||||
return lambda msg: None
|
||||
|
|
@ -984,3 +984,10 @@
|
|||
95.158.129.2
|
||||
95.173.193.3
|
||||
95.85.9.86
|
||||
80.67.188.188
|
||||
108.61.201.119
|
||||
159.69.198.101
|
||||
47.101.136.37
|
||||
118.24.208.197
|
||||
114.115.240.175
|
||||
119.29.107.85
|
||||
File diff suppressed because it is too large
Load Diff
|
|
@ -1,3 +1,4 @@
|
|||
argparse
|
||||
dnspython
|
||||
requests
|
||||
aiodnsbrute
|
||||
|
|
|
|||
36
setup.py
36
setup.py
|
|
@ -1,36 +0,0 @@
|
|||
from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name='Sublist3r',
|
||||
version='1.0',
|
||||
python_requires='>=2.7',
|
||||
install_requires=['dnspython', 'requests', 'argparse; python_version==\'2.7\''],
|
||||
packages=find_packages()+['.'],
|
||||
include_package_data=True,
|
||||
url='https://github.com/aboul3la/Sublist3r',
|
||||
license='GPL-2.0',
|
||||
description='Subdomains enumeration tool for penetration testers',
|
||||
classifiers=[
|
||||
'Development Status :: 5 - Production/Stable',
|
||||
'Environment :: Console',
|
||||
'Intended Audience :: Information Technology',
|
||||
'Intended Audience :: System Administrators',
|
||||
'Intended Audience :: Telecommunications Industry',
|
||||
'License :: OSI Approved :: GNU General Public License v2',
|
||||
'Operating System :: POSIX :: Linux',
|
||||
'Programming Language :: Python',
|
||||
'Programming Language :: Python :: 2',
|
||||
'Programming Language :: Python :: 3',
|
||||
'Programming Language :: Python :: 2.7',
|
||||
'Programming Language :: Python :: 3.4',
|
||||
'Programming Language :: Python :: 3.5',
|
||||
'Programming Language :: Python :: 3.6',
|
||||
'Topic :: Security',
|
||||
],
|
||||
keywords='subdomain dns detection',
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'sublist3r = sublist3r:interactive',
|
||||
],
|
||||
},
|
||||
)
|
||||
129408
subbrute/names.txt
129408
subbrute/names.txt
File diff suppressed because it is too large
Load Diff
|
|
@ -1,635 +0,0 @@
|
|||
#!/usr/bin/env python
|
||||
#
|
||||
#SubBrute v1.2
|
||||
#A (very) fast subdomain enumeration tool.
|
||||
#
|
||||
#Maintained by rook
|
||||
#Contributors:
|
||||
#JordanMilne, KxCode, rc0r, memoryprint, ppaulojr
|
||||
#
|
||||
import re
|
||||
import optparse
|
||||
import os
|
||||
import signal
|
||||
import sys
|
||||
import uuid
|
||||
import random
|
||||
import ctypes
|
||||
import dns.resolver
|
||||
import dns.rdatatype
|
||||
import json
|
||||
|
||||
#Python 2.x and 3.x compatiablity
|
||||
#We need the Queue library for exception handling
|
||||
try:
|
||||
import queue as Queue
|
||||
except:
|
||||
import Queue
|
||||
|
||||
#The 'multiprocessing' library does not rely upon a Global Interpreter Lock (GIL)
|
||||
import multiprocessing
|
||||
|
||||
#Microsoft compatiablity
|
||||
if sys.platform.startswith('win'):
|
||||
#Drop-in replacement, subbrute + multiprocessing throws exceptions on windows.
|
||||
import threading
|
||||
multiprocessing.Process = threading.Thread
|
||||
|
||||
class verify_nameservers(multiprocessing.Process):
|
||||
|
||||
def __init__(self, target, record_type, resolver_q, resolver_list, wildcards):
|
||||
multiprocessing.Process.__init__(self, target = self.run)
|
||||
self.daemon = True
|
||||
signal_init()
|
||||
|
||||
self.time_to_die = False
|
||||
self.resolver_q = resolver_q
|
||||
self.wildcards = wildcards
|
||||
#Do we need wildcards for other types of records?
|
||||
#This needs testing!
|
||||
self.record_type = "A"
|
||||
if record_type == "AAAA":
|
||||
self.record_type = record_type
|
||||
self.resolver_list = resolver_list
|
||||
resolver = dns.resolver.Resolver()
|
||||
#The domain provided by the user.
|
||||
self.target = target
|
||||
#1 website in the world, modify the following line when this status changes.
|
||||
#www.google.cn, I'm looking at you ;)
|
||||
self.most_popular_website = "www.google.com"
|
||||
#We shouldn't need the backup_resolver, but we we can use them if need be.
|
||||
#We must have a resolver, and localhost can work in some environments.
|
||||
self.backup_resolver = resolver.nameservers + ['127.0.0.1', '8.8.8.8', '8.8.4.4']
|
||||
#Ideally a nameserver should respond in less than 1 sec.
|
||||
resolver.timeout = 1
|
||||
resolver.lifetime = 1
|
||||
try:
|
||||
#Lets test the letancy of our connection.
|
||||
#Google's DNS server should be an ideal time test.
|
||||
resolver.nameservers = ['8.8.8.8']
|
||||
resolver.query(self.most_popular_website, self.record_type)
|
||||
except:
|
||||
#Our connection is slower than a junebug in molasses
|
||||
resolver = dns.resolver.Resolver()
|
||||
self.resolver = resolver
|
||||
|
||||
def end(self):
|
||||
self.time_to_die = True
|
||||
|
||||
#This process cannot block forever, it needs to check if its time to die.
|
||||
def add_nameserver(self, nameserver):
|
||||
keep_trying = True
|
||||
while not self.time_to_die and keep_trying:
|
||||
try:
|
||||
self.resolver_q.put(nameserver, timeout = 1)
|
||||
trace("Added nameserver:", nameserver)
|
||||
keep_trying = False
|
||||
except Exception as e:
|
||||
if type(e) == Queue.Full or str(type(e)) == "<class 'queue.Full'>":
|
||||
keep_trying = True
|
||||
|
||||
def verify(self, nameserver_list):
|
||||
added_resolver = False
|
||||
for server in nameserver_list:
|
||||
if self.time_to_die:
|
||||
#We are done here.
|
||||
break
|
||||
server = server.strip()
|
||||
if server:
|
||||
self.resolver.nameservers = [server]
|
||||
try:
|
||||
#test_result = self.resolver.query(self.most_popular_website, "A")
|
||||
#should throw an exception before this line.
|
||||
if True:#test_result:
|
||||
#Only add the nameserver to the queue if we can detect wildcards.
|
||||
if(self.find_wildcards(self.target)):# and self.find_wildcards(".com")
|
||||
#wildcards have been added to the set, it is now safe to be added to the queue.
|
||||
#blocking queue, this process will halt on put() when the queue is full:
|
||||
self.add_nameserver(server)
|
||||
added_resolver = True
|
||||
else:
|
||||
trace("Rejected nameserver - wildcard:", server)
|
||||
except Exception as e:
|
||||
#Rejected server :(
|
||||
trace("Rejected nameserver - unreliable:", server, type(e))
|
||||
return added_resolver
|
||||
|
||||
def run(self):
|
||||
#Every user will get a different set of resovlers, this helps redistribute traffic.
|
||||
random.shuffle(self.resolver_list)
|
||||
if not self.verify(self.resolver_list):
|
||||
#This should never happen, inform the user.
|
||||
sys.stderr.write('Warning: No nameservers found, trying fallback list.\n')
|
||||
#Try and fix it for the user:
|
||||
self.verify(self.backup_resolver)
|
||||
#End of the resolvers list.
|
||||
try:
|
||||
self.resolver_q.put(False, timeout = 1)
|
||||
except:
|
||||
pass
|
||||
|
||||
#Only add the nameserver to the queue if we can detect wildcards.
|
||||
#Returns False on error.
|
||||
def find_wildcards(self, host):
|
||||
#We want sovle the following three problems:
|
||||
#1)The target might have a wildcard DNS record.
|
||||
#2)The target maybe using geolocaiton-aware DNS.
|
||||
#3)The DNS server we are testing may respond to non-exsistant 'A' records with advertizements.
|
||||
#I have seen a CloudFlare Enterprise customer with the first two conditions.
|
||||
try:
|
||||
#This is case #3, these spam nameservers seem to be more trouble then they are worth.
|
||||
wildtest = self.resolver.query(uuid.uuid4().hex + ".com", "A")
|
||||
if len(wildtest):
|
||||
trace("Spam DNS detected:", host)
|
||||
return False
|
||||
except:
|
||||
pass
|
||||
test_counter = 8
|
||||
looking_for_wildcards = True
|
||||
while looking_for_wildcards and test_counter >= 0 :
|
||||
looking_for_wildcards = False
|
||||
#Don't get lost, this nameserver could be playing tricks.
|
||||
test_counter -= 1
|
||||
try:
|
||||
testdomain = "%s.%s" % (uuid.uuid4().hex, host)
|
||||
wildtest = self.resolver.query(testdomain, self.record_type)
|
||||
#This 'A' record may contain a list of wildcards.
|
||||
if wildtest:
|
||||
for w in wildtest:
|
||||
w = str(w)
|
||||
if w not in self.wildcards:
|
||||
#wildcards were detected.
|
||||
self.wildcards[w] = None
|
||||
#We found atleast one wildcard, look for more.
|
||||
looking_for_wildcards = True
|
||||
except Exception as e:
|
||||
if type(e) == dns.resolver.NXDOMAIN or type(e) == dns.name.EmptyLabel:
|
||||
#not found
|
||||
return True
|
||||
else:
|
||||
#This resolver maybe flakey, we don't want it for our tests.
|
||||
trace("wildcard exception:", self.resolver.nameservers, type(e))
|
||||
return False
|
||||
#If we hit the end of our depth counter and,
|
||||
#there are still wildcards, then reject this nameserver because it smells bad.
|
||||
return (test_counter >= 0)
|
||||
|
||||
class lookup(multiprocessing.Process):
|
||||
|
||||
def __init__(self, in_q, out_q, resolver_q, domain, wildcards, spider_blacklist):
|
||||
multiprocessing.Process.__init__(self, target = self.run)
|
||||
signal_init()
|
||||
self.required_nameservers = 16
|
||||
self.in_q = in_q
|
||||
self.out_q = out_q
|
||||
self.resolver_q = resolver_q
|
||||
self.domain = domain
|
||||
self.wildcards = wildcards
|
||||
self.spider_blacklist = spider_blacklist
|
||||
self.resolver = dns.resolver.Resolver()
|
||||
#Force pydns to use our nameservers
|
||||
self.resolver.nameservers = []
|
||||
|
||||
def get_ns(self):
|
||||
ret = []
|
||||
try:
|
||||
ret = [self.resolver_q.get_nowait()]
|
||||
if ret == False:
|
||||
#Queue is empty, inform the rest.
|
||||
self.resolver_q.put(False)
|
||||
ret = []
|
||||
except:
|
||||
pass
|
||||
return ret
|
||||
|
||||
def get_ns_blocking(self):
|
||||
ret = []
|
||||
ret = [self.resolver_q.get()]
|
||||
if ret == False:
|
||||
trace("get_ns_blocking - Resolver list is empty.")
|
||||
#Queue is empty, inform the rest.
|
||||
self.resolver_q.put(False)
|
||||
ret = []
|
||||
return ret
|
||||
|
||||
def check(self, host, record_type = "A", retries = 0):
|
||||
trace("Checking:", host)
|
||||
cname_record = []
|
||||
retries = 0
|
||||
if len(self.resolver.nameservers) <= self.required_nameservers:
|
||||
#This process needs more nameservers, lets see if we have one avaible
|
||||
self.resolver.nameservers += self.get_ns()
|
||||
#Ok we should be good to go.
|
||||
while True:
|
||||
try:
|
||||
#Query the nameserver, this is not simple...
|
||||
if not record_type or record_type == "A":
|
||||
resp = self.resolver.query(host)
|
||||
#Crawl the response
|
||||
hosts = extract_hosts(str(resp.response), self.domain)
|
||||
for h in hosts:
|
||||
if h not in self.spider_blacklist:
|
||||
self.spider_blacklist[h]=None
|
||||
trace("Found host with spider:", h)
|
||||
self.in_q.put((h, record_type, 0))
|
||||
return resp
|
||||
if record_type == "CNAME":
|
||||
#A max 20 lookups
|
||||
for x in range(20):
|
||||
try:
|
||||
resp = self.resolver.query(host, record_type)
|
||||
except dns.resolver.NoAnswer:
|
||||
resp = False
|
||||
pass
|
||||
if resp and resp[0]:
|
||||
host = str(resp[0]).rstrip(".")
|
||||
cname_record.append(host)
|
||||
else:
|
||||
return cname_record
|
||||
else:
|
||||
#All other records:
|
||||
return self.resolver.query(host, record_type)
|
||||
|
||||
except Exception as e:
|
||||
if type(e) == dns.resolver.NoNameservers:
|
||||
#We should never be here.
|
||||
#We must block, another process should try this host.
|
||||
#do we need a limit?
|
||||
self.in_q.put((host, record_type, 0))
|
||||
self.resolver.nameservers += self.get_ns_blocking()
|
||||
return False
|
||||
elif type(e) == dns.resolver.NXDOMAIN:
|
||||
#"Non-existent domain name."
|
||||
return False
|
||||
elif type(e) == dns.resolver.NoAnswer:
|
||||
#"The response did not contain an answer."
|
||||
if retries >= 1:
|
||||
trace("NoAnswer retry")
|
||||
return False
|
||||
retries += 1
|
||||
elif type(e) == dns.resolver.Timeout:
|
||||
trace("lookup failure:", host, retries)
|
||||
#Check if it is time to give up.
|
||||
if retries >= 3:
|
||||
if retries > 3:
|
||||
#Sometimes 'internal use' subdomains will timeout for every request.
|
||||
#As far as I'm concerned, the authorative name server has told us this domain exists,
|
||||
#we just can't know the address value using this method.
|
||||
return ['Mutiple Query Timeout - External address resolution was restricted']
|
||||
else:
|
||||
#Maybe another process can take a crack at it.
|
||||
self.in_q.put((host, record_type, retries + 1))
|
||||
return False
|
||||
retries += 1
|
||||
#retry...
|
||||
elif type(e) == IndexError:
|
||||
#Some old versions of dnspython throw this error,
|
||||
#doesn't seem to affect the results, and it was fixed in later versions.
|
||||
pass
|
||||
elif type(e) == TypeError:
|
||||
# We'll get here if the number procs > number of resolvers.
|
||||
# This is an internal error do we need a limit?
|
||||
self.in_q.put((host, record_type, 0))
|
||||
return False
|
||||
elif type(e) == dns.rdatatype.UnknownRdatatype:
|
||||
error("DNS record type not supported:", record_type)
|
||||
else:
|
||||
trace("Problem processing host:", host)
|
||||
#dnspython threw some strange exception...
|
||||
raise e
|
||||
|
||||
def run(self):
|
||||
#This process needs one resolver before it can start looking.
|
||||
self.resolver.nameservers += self.get_ns_blocking()
|
||||
while True:
|
||||
found_addresses = []
|
||||
work = self.in_q.get()
|
||||
#Check if we have hit the end marker
|
||||
while not work:
|
||||
#Look for a re-queued lookup
|
||||
try:
|
||||
work = self.in_q.get(blocking = False)
|
||||
#if we took the end marker of the queue we need to put it back
|
||||
if work:
|
||||
self.in_q.put(False)
|
||||
except:#Queue.Empty
|
||||
trace('End of work queue')
|
||||
#There isn't an item behind the end marker
|
||||
work = False
|
||||
break
|
||||
#Is this the end all work that needs to be done?
|
||||
if not work:
|
||||
#Perpetuate the end marker for all threads to see
|
||||
self.in_q.put(False)
|
||||
#Notify the parent that we have died of natural causes
|
||||
self.out_q.put(False)
|
||||
break
|
||||
else:
|
||||
if len(work) == 3:
|
||||
#keep track of how many times this lookup has timedout.
|
||||
(hostname, record_type, timeout_retries) = work
|
||||
response = self.check(hostname, record_type, timeout_retries)
|
||||
else:
|
||||
(hostname, record_type) = work
|
||||
response = self.check(hostname, record_type)
|
||||
sys.stdout.flush()
|
||||
trace(response)
|
||||
#self.wildcards is populated by the verify_nameservers() thread.
|
||||
#This variable doesn't need a muetex, because it has a queue.
|
||||
#A queue ensure nameserver cannot be used before it's wildcard entries are found.
|
||||
reject = False
|
||||
if response:
|
||||
for a in response:
|
||||
a = str(a)
|
||||
if a in self.wildcards:
|
||||
trace("resovled wildcard:", hostname)
|
||||
reject= True
|
||||
#reject this domain.
|
||||
break;
|
||||
else:
|
||||
found_addresses.append(a)
|
||||
if not reject:
|
||||
#This request is filled, send the results back
|
||||
result = (hostname, record_type, found_addresses)
|
||||
self.out_q.put(result)
|
||||
|
||||
#Extract relevant hosts
|
||||
#The dot at the end of a domain signifies the root,
|
||||
#and all TLDs are subs of the root.
|
||||
host_match = re.compile(r"((?<=[\s])[a-zA-Z0-9_-]+\.(?:[a-zA-Z0-9_-]+\.?)+(?=[\s]))")
|
||||
def extract_hosts(data, hostname):
|
||||
#made a global to avoid re-compilation
|
||||
global host_match
|
||||
ret = []
|
||||
hosts = re.findall(host_match, data)
|
||||
for fh in hosts:
|
||||
host = fh.rstrip(".")
|
||||
#Is this host in scope?
|
||||
if host.endswith(hostname):
|
||||
ret.append(host)
|
||||
return ret
|
||||
|
||||
#Return a list of unique sub domains, sorted by frequency.
|
||||
#Only match domains that have 3 or more sections subdomain.domain.tld
|
||||
domain_match = re.compile("([a-zA-Z0-9_-]*\.[a-zA-Z0-9_-]*\.[a-zA-Z0-9_-]*)+")
|
||||
def extract_subdomains(file_name):
|
||||
#Avoid re-compilation
|
||||
global domain_match
|
||||
subs = {}
|
||||
sub_file = open(file_name).read()
|
||||
f_all = re.findall(domain_match, sub_file)
|
||||
del sub_file
|
||||
for i in f_all:
|
||||
if i.find(".") >= 0:
|
||||
p = i.split(".")[0:-1]
|
||||
#gobble everything that might be a TLD
|
||||
while p and len(p[-1]) <= 3:
|
||||
p = p[0:-1]
|
||||
#remove the domain name
|
||||
p = p[0:-1]
|
||||
#do we have a subdomain.domain left?
|
||||
if len(p) >= 1:
|
||||
trace(str(p), " : ", i)
|
||||
for q in p:
|
||||
if q :
|
||||
#domain names can only be lower case.
|
||||
q = q.lower()
|
||||
if q in subs:
|
||||
subs[q] += 1
|
||||
else:
|
||||
subs[q] = 1
|
||||
#Free some memory before the sort...
|
||||
del f_all
|
||||
#Sort by freq in desc order
|
||||
subs_sorted = sorted(subs.keys(), key = lambda x: subs[x], reverse = True)
|
||||
return subs_sorted
|
||||
|
||||
def print_target(target, record_type = None, subdomains = "names.txt", resolve_list = "resolvers.txt", process_count = 16, output = False, json_output = False, found_subdomains=[],verbose=False):
|
||||
subdomains_list = []
|
||||
results_temp = []
|
||||
run(target, record_type, subdomains, resolve_list, process_count)
|
||||
for result in run(target, record_type, subdomains, resolve_list, process_count):
|
||||
(hostname, record_type, response) = result
|
||||
if not record_type:
|
||||
result = hostname
|
||||
else:
|
||||
result = "%s,%s" % (hostname, ",".join(response).strip(","))
|
||||
if result not in found_subdomains:
|
||||
if verbose:
|
||||
print(result)
|
||||
subdomains_list.append(result)
|
||||
|
||||
return set(subdomains_list)
|
||||
|
||||
def run(target, record_type = None, subdomains = "names.txt", resolve_list = "resolvers.txt", process_count = 16):
|
||||
subdomains = check_open(subdomains)
|
||||
resolve_list = check_open(resolve_list)
|
||||
if (len(resolve_list) / 16) < process_count:
|
||||
sys.stderr.write('Warning: Fewer than 16 resovlers per thread, consider adding more nameservers to resolvers.txt.\n')
|
||||
if os.name == 'nt':
|
||||
wildcards = {}
|
||||
spider_blacklist = {}
|
||||
else:
|
||||
wildcards = multiprocessing.Manager().dict()
|
||||
spider_blacklist = multiprocessing.Manager().dict()
|
||||
in_q = multiprocessing.Queue()
|
||||
out_q = multiprocessing.Queue()
|
||||
#have a buffer of at most two new nameservers that lookup processes can draw from.
|
||||
resolve_q = multiprocessing.Queue(maxsize = 2)
|
||||
|
||||
#Make a source of fast nameservers avaiable for other processes.
|
||||
verify_nameservers_proc = verify_nameservers(target, record_type, resolve_q, resolve_list, wildcards)
|
||||
verify_nameservers_proc.start()
|
||||
#The empty string
|
||||
in_q.put((target, record_type))
|
||||
spider_blacklist[target]=None
|
||||
#A list of subdomains is the input
|
||||
for s in subdomains:
|
||||
s = str(s).strip()
|
||||
if s:
|
||||
if s.find(","):
|
||||
#SubBrute should be forgiving, a comma will never be in a url
|
||||
#but the user might try an use a CSV file as input.
|
||||
s=s.split(",")[0]
|
||||
if not s.endswith(target):
|
||||
hostname = "%s.%s" % (s, target)
|
||||
else:
|
||||
#A user might feed an output list as a subdomain list.
|
||||
hostname = s
|
||||
if hostname not in spider_blacklist:
|
||||
spider_blacklist[hostname]=None
|
||||
work = (hostname, record_type)
|
||||
in_q.put(work)
|
||||
#Terminate the queue
|
||||
in_q.put(False)
|
||||
for i in range(process_count):
|
||||
worker = lookup(in_q, out_q, resolve_q, target, wildcards, spider_blacklist)
|
||||
worker.start()
|
||||
threads_remaining = process_count
|
||||
while True:
|
||||
try:
|
||||
#The output is valid hostnames
|
||||
result = out_q.get(True, 10)
|
||||
#we will get an empty exception before this runs.
|
||||
if not result:
|
||||
threads_remaining -= 1
|
||||
else:
|
||||
#run() is a generator, and yields results from the work queue
|
||||
yield result
|
||||
except Exception as e:
|
||||
#The cx_freeze version uses queue.Empty instead of Queue.Empty :(
|
||||
if type(e) == Queue.Empty or str(type(e)) == "<class 'queue.Empty'>":
|
||||
pass
|
||||
else:
|
||||
raise(e)
|
||||
#make sure everyone is complete
|
||||
if threads_remaining <= 0:
|
||||
break
|
||||
trace("killing nameserver process")
|
||||
#We no longer require name servers.
|
||||
try:
|
||||
killproc(pid = verify_nameservers_proc.pid)
|
||||
except:
|
||||
#Windows threading.tread
|
||||
verify_nameservers_proc.end()
|
||||
trace("End")
|
||||
|
||||
#exit handler for signals. So ctrl+c will work.
|
||||
#The 'multiprocessing' library each process is it's own process which side-steps the GIL
|
||||
#If the user wants to exit prematurely, each process must be killed.
|
||||
def killproc(signum = 0, frame = 0, pid = False):
|
||||
if not pid:
|
||||
pid = os.getpid()
|
||||
if sys.platform.startswith('win'):
|
||||
try:
|
||||
kernel32 = ctypes.windll.kernel32
|
||||
handle = kernel32.OpenProcess(1, 0, pid)
|
||||
kernel32.TerminateProcess(handle, 0)
|
||||
except:
|
||||
#Oah windows.
|
||||
pass
|
||||
else:
|
||||
os.kill(pid, 9)
|
||||
|
||||
#Toggle debug output
|
||||
verbose = False
|
||||
def trace(*args, **kwargs):
|
||||
if verbose:
|
||||
for a in args:
|
||||
sys.stderr.write(str(a))
|
||||
sys.stderr.write(" ")
|
||||
sys.stderr.write("\n")
|
||||
|
||||
def error(*args, **kwargs):
|
||||
for a in args:
|
||||
sys.stderr.write(str(a))
|
||||
sys.stderr.write(" ")
|
||||
sys.stderr.write("\n")
|
||||
sys.exit(1)
|
||||
|
||||
def check_open(input_file):
|
||||
ret = []
|
||||
#If we can't find a resolver from an input file, then we need to improvise.
|
||||
try:
|
||||
ret = open(input_file).readlines()
|
||||
except:
|
||||
error("File not found:", input_file)
|
||||
if not len(ret):
|
||||
error("File is empty:", input_file)
|
||||
return ret
|
||||
|
||||
#Every 'multiprocessing' process needs a signal handler.
|
||||
#All processes need to die, we don't want to leave zombies.
|
||||
def signal_init():
|
||||
#Escliate signal to prevent zombies.
|
||||
signal.signal(signal.SIGINT, killproc)
|
||||
try:
|
||||
signal.signal(signal.SIGTSTP, killproc)
|
||||
signal.signal(signal.SIGQUIT, killproc)
|
||||
except:
|
||||
#Windows
|
||||
pass
|
||||
|
||||
if __name__ == "__main__":
|
||||
if getattr(sys, 'frozen', False):
|
||||
# cx_freeze windows:
|
||||
base_path = os.path.dirname(sys.executable)
|
||||
multiprocessing.freeze_support()
|
||||
else:
|
||||
#everything else:
|
||||
base_path = os.path.dirname(os.path.realpath(__file__))
|
||||
parser = optparse.OptionParser("usage: %prog [options] target")
|
||||
parser.add_option("-s", "--subs", dest = "subs", default = os.path.join(base_path, "names.txt"),
|
||||
type = "string", help = "(optional) list of subdomains, default = 'names.txt'")
|
||||
parser.add_option("-r", "--resolvers", dest = "resolvers", default = os.path.join(base_path, "resolvers.txt"),
|
||||
type = "string", help = "(optional) A list of DNS resolvers, if this list is empty it will OS's internal resolver default = 'resolvers.txt'")
|
||||
parser.add_option("-t", "--targets_file", dest = "targets", default = "",
|
||||
type = "string", help = "(optional) A file containing a newline delimited list of domains to brute force.")
|
||||
parser.add_option("-o", "--output", dest = "output", default = False, help = "(optional) Output to file (Greppable Format)")
|
||||
parser.add_option("-j", "--json", dest="json", default = False, help="(optional) Output to file (JSON Format)")
|
||||
parser.add_option("-a", "-A", action = 'store_true', dest = "ipv4", default = False,
|
||||
help = "(optional) Print all IPv4 addresses for sub domains (default = off).")
|
||||
parser.add_option("--type", dest = "type", default = False,
|
||||
type = "string", help = "(optional) Print all reponses for an arbitrary DNS record type (CNAME, AAAA, TXT, SOA, MX...)")
|
||||
parser.add_option("-c", "--process_count", dest = "process_count",
|
||||
default = 16, type = "int",
|
||||
help = "(optional) Number of lookup theads to run. default = 16")
|
||||
parser.add_option("-f", "--filter_subs", dest = "filter", default = "",
|
||||
type = "string", help = "(optional) A file containing unorganized domain names which will be filtered into a list of subdomains sorted by frequency. This was used to build names.txt.")
|
||||
parser.add_option("-v", "--verbose", action = 'store_true', dest = "verbose", default = False,
|
||||
help = "(optional) Print debug information.")
|
||||
(options, args) = parser.parse_args()
|
||||
|
||||
|
||||
verbose = options.verbose
|
||||
|
||||
if len(args) < 1 and options.filter == "" and options.targets == "":
|
||||
parser.error("You must provie a target. Use -h for help.")
|
||||
|
||||
if options.filter != "":
|
||||
#cleanup this file and print it out
|
||||
for d in extract_subdomains(options.filter):
|
||||
print(d)
|
||||
sys.exit()
|
||||
|
||||
if options.targets != "":
|
||||
targets = check_open(options.targets) #the domains
|
||||
else:
|
||||
targets = args #multiple arguments on the cli: ./subbrute.py google.com gmail.com yahoo.com if (len(resolver_list) / 16) < options.process_count:
|
||||
|
||||
output = False
|
||||
if options.output:
|
||||
try:
|
||||
output = open(options.output, "w")
|
||||
except:
|
||||
error("Failed writing to file:", options.output)
|
||||
|
||||
json_output = False
|
||||
if options.json:
|
||||
try:
|
||||
json_output = open(options.json, "w")
|
||||
except:
|
||||
error("Failed writing to file:", options.json)
|
||||
|
||||
record_type = False
|
||||
if options.ipv4:
|
||||
record_type="A"
|
||||
if options.type:
|
||||
record_type = str(options.type).upper()
|
||||
|
||||
threads = []
|
||||
for target in targets:
|
||||
target = target.strip()
|
||||
if target:
|
||||
|
||||
#target => domain
|
||||
#record_type =>
|
||||
#options.subs => file the contain the subdomains list
|
||||
#options.process_count => process count default = 16
|
||||
#options.resolvers => the resolvers file
|
||||
#options.output
|
||||
#options.json
|
||||
print(target, record_type, options.subs, options.resolvers, options.process_count, output, json_output)
|
||||
print_target(target, record_type, options.subs, options.resolvers, options.process_count, output, json_output)
|
||||
|
||||
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env python
|
||||
# coding: utf-8
|
||||
# Sublist3r v1.0
|
||||
# By Ahmed Aboul-Ela - twitter.com/aboul3la
|
||||
# Sublist3r2 v1.0
|
||||
|
||||
|
||||
# modules in standard library
|
||||
import re
|
||||
|
|
@ -18,9 +18,9 @@ import json
|
|||
from collections import Counter
|
||||
|
||||
# external modules
|
||||
from subbrute import subbrute
|
||||
import dns.resolver
|
||||
import requests
|
||||
from aiodnsbrute.cli import aioDNSBrute
|
||||
|
||||
# Python 2.x and 3.x compatiablity
|
||||
if sys.version > '3':
|
||||
|
|
@ -73,13 +73,12 @@ def no_color():
|
|||
|
||||
def banner():
|
||||
print("""%s
|
||||
____ _ _ _ _ _____
|
||||
/ ___| _ _| |__ | (_)___| |_|___ / _ __
|
||||
\___ \| | | | '_ \| | / __| __| |_ \| '__|
|
||||
___) | |_| | |_) | | \__ \ |_ ___) | |
|
||||
|____/ \__,_|_.__/|_|_|___/\__|____/|_|%s%s
|
||||
____ _ _ _ _ _____ _ ____
|
||||
/ ___| _ _| |__ | (_)___| |_|___ / _ __\ __ | Sublist3r2 v1.0
|
||||
\___ \| | | | '_ \| | / __| __| |_ \| '__| / / a dnsenum tool originally by @aboul3la
|
||||
___) | |_| | |_) | | \__ \ |_ ___) | | / /_ maintained by Ronin Nakomoto
|
||||
|____/ \__,_|_.__/|_|_|___/\__|____/|_| /____|%s%s https://github.com/RoninNakomoto/Sublist3r2
|
||||
|
||||
# Coded By Ahmed Aboul-Ela - @aboul3la
|
||||
""" % (R, W, Y))
|
||||
|
||||
|
||||
|
|
@ -99,7 +98,7 @@ def parse_args():
|
|||
parser.add_argument('-b', '--bruteforce', help='Enable the subbrute bruteforce module', nargs='?', default=False)
|
||||
parser.add_argument('-p', '--ports', help='Scan the found subdomains against specified tcp ports')
|
||||
parser.add_argument('-v', '--verbose', help='Enable Verbosity and display results in realtime', nargs='?', default=False)
|
||||
parser.add_argument('-t', '--threads', help='Number of threads to use for subbrute bruteforce', type=int, default=30)
|
||||
parser.add_argument('-t', '--threads', help='Number of threads to use for aiodnsbrute bruteforce', type=int, default=7000)
|
||||
parser.add_argument('-e', '--engines', help='Specify a comma-separated list of search engines')
|
||||
parser.add_argument('-o', '--output', help='Save the results to text file')
|
||||
parser.add_argument('-n', '--no-color', help='Output without color', default=False, action='store_true')
|
||||
|
|
@ -611,7 +610,7 @@ class DNSdumpster(enumratorBaseThreaded):
|
|||
Resolver.nameservers = ['8.8.8.8', '8.8.4.4']
|
||||
self.lock.acquire()
|
||||
try:
|
||||
ip = Resolver.query(host, 'A')[0].to_text()
|
||||
ip = Resolver.resolve(host, 'A')[0].to_text()
|
||||
if ip:
|
||||
if self.verbose:
|
||||
self.print_("%s%s: %s%s" % (R, self.engine_name, W, host))
|
||||
|
|
@ -676,8 +675,15 @@ class DNSdumpster(enumratorBaseThreaded):
|
|||
class Virustotal(enumratorBaseThreaded):
|
||||
def __init__(self, domain, subdomains=None, q=None, silent=False, verbose=True):
|
||||
subdomains = subdomains or []
|
||||
base_url = 'https://www.virustotal.com/ui/domains/{domain}/subdomains'
|
||||
base_url = 'https://www.virustotal.com/api/v3/domains/{domain}/subdomains'
|
||||
self.engine_name = "Virustotal"
|
||||
if os.getenv("VT_APIKEY") is None:
|
||||
VT_APIKEY=input(B + "[+] Enter VirusTotal API key, press Enter for none: " + W)
|
||||
VT_APIKEY=VT_APIKEY.strip()
|
||||
if VT_APIKEY != "":
|
||||
os.environ["VT_APIKEY"]=(VT_APIKEY)
|
||||
os.environ["VT_APIKEY"]=(VT_APIKEY)
|
||||
self.apikey = os.getenv('VT_APIKEY', None)
|
||||
self.q = q
|
||||
super(Virustotal, self).__init__(base_url, self.engine_name, domain, subdomains, q=q, silent=silent, verbose=verbose)
|
||||
self.url = self.base_url.format(domain=self.domain)
|
||||
|
|
@ -686,26 +692,33 @@ class Virustotal(enumratorBaseThreaded):
|
|||
# the main send_req need to be rewritten
|
||||
def send_req(self, url):
|
||||
try:
|
||||
self.headers.update({'X-ApiKey':self.apikey})
|
||||
resp = self.session.get(url, headers=self.headers, timeout=self.timeout)
|
||||
except Exception as e:
|
||||
self.print_(e)
|
||||
resp = None
|
||||
|
||||
return self.get_response(resp)
|
||||
|
||||
# once the send_req is rewritten we don't need to call this function, the stock one should be ok
|
||||
def enumerate(self):
|
||||
while self.url != '':
|
||||
resp = self.send_req(self.url)
|
||||
resp = json.loads(resp)
|
||||
if 'error' in resp:
|
||||
self.print_(R + "[!] Error: Virustotal probably now is blocking our requests" + W)
|
||||
break
|
||||
if 'links' in resp and 'next' in resp['links']:
|
||||
self.url = resp['links']['next']
|
||||
else:
|
||||
self.url = ''
|
||||
self.extract_domains(resp)
|
||||
if self.apikey:
|
||||
while self.url != '':
|
||||
#try:
|
||||
resp = self.send_req(self.url)
|
||||
resp = json.loads(resp)
|
||||
if 'error' in resp:
|
||||
self.print_(R + "Error Code: {}".format(resp['error']["code"]) +W)
|
||||
self.print_(R + "Virus Total Server Message: {}".format(resp['error']["message"]) + W)
|
||||
break
|
||||
if 'links' in resp and 'next' in resp['links']:
|
||||
self.url = resp['links']['next']
|
||||
else:
|
||||
self.url = ''
|
||||
self.extract_domains(resp)
|
||||
else:
|
||||
self.print_(R + "[!] Error: VirusTotal API key environment variable not found. Skipping" + W)
|
||||
self.print_(R + "[!] set VT_APIKEY to your virus total API key using: export VT_APIKEY=Your_VT_API_KEY_VALUE" + W)
|
||||
self.print_(B + "[!] To get a VT APIKEY, register at https://www.virustotal.com/gui/join-us" +W)
|
||||
return self.subdomains
|
||||
|
||||
def extract_domains(self, resp):
|
||||
|
|
@ -952,16 +965,22 @@ def main(domain, threads, savefile, ports, silent, verbose, enable_bruteforce, e
|
|||
|
||||
if enable_bruteforce:
|
||||
if not silent:
|
||||
print(G + "[-] Starting bruteforce module now using subbrute.." + W)
|
||||
print(G + "[-] Starting bruteforce module now using aiodnsbrute.." + W)
|
||||
record_type = False
|
||||
path_to_file = os.path.dirname(os.path.realpath(__file__))
|
||||
subs = os.path.join(path_to_file, 'subbrute', 'names.txt')
|
||||
resolvers = os.path.join(path_to_file, 'subbrute', 'resolvers.txt')
|
||||
process_count = threads
|
||||
output = False
|
||||
json_output = False
|
||||
bruteforce_list = subbrute.print_target(parsed_domain.netloc, record_type, subs, resolvers, process_count, output, json_output, search_list, verbose)
|
||||
|
||||
subs = os.path.join(path_to_file, 'aiodnsbrute', 'subdomains-top1million-110000.txt')
|
||||
resolvers = os.path.join(path_to_file, 'aiodnsbrute', 'resolvers.txt')
|
||||
#resolvers=None
|
||||
#resolvers=f"{os.path.dirname(os.path.realpath(__file__))}/aiodnsbrute/resolvers.txt"
|
||||
wildcard=True
|
||||
verify=True
|
||||
query=True
|
||||
#resolvers = os.path.join(path_to_file, 'subbrute', 'resolvers.txt')
|
||||
thread_count = threads
|
||||
#output = False
|
||||
#json_output = False
|
||||
#bruteforce_list = subbrute.print_target(parsed_domain.netloc, record_type, subs, resolvers, process_count, output, json_output, search_list, verbose)
|
||||
bruteforce_list = aioDNSBrute.bruteforce_domain(parsed_domain.netloc, resolvers, subs, wildcard, verify, search_list, thread_count, query)
|
||||
subdomains = search_list.union(bruteforce_list)
|
||||
|
||||
if subdomains:
|
||||
Loading…
Reference in New Issue