2023-11-23 08:08:28 +00:00
|
|
|
#/usr/bin/env python
|
|
|
|
# ptrstream - developed by acidvegas in python (https://git.acid.vegas/ptrstream)
|
|
|
|
|
|
|
|
import argparse
|
|
|
|
import asyncio
|
|
|
|
import ipaddress
|
2023-11-24 08:44:24 +00:00
|
|
|
import os
|
2023-11-23 08:08:28 +00:00
|
|
|
import random
|
|
|
|
import time
|
|
|
|
import urllib.request
|
|
|
|
|
|
|
|
try:
|
|
|
|
import aiodns
|
|
|
|
except ImportError:
|
|
|
|
raise ImportError('missing required \'aiodns\' library (pip install aiodns)')
|
|
|
|
|
2023-11-23 09:39:04 +00:00
|
|
|
# Colors
|
|
|
|
class colors:
|
2023-11-24 08:54:38 +00:00
|
|
|
ip = '\033[35m'
|
|
|
|
ip_match = '\033[96m' # IP address mfound within PTR record
|
|
|
|
ptr = '\033[93m'
|
|
|
|
spooky = '\033[31m' # .gov or .mil indicator
|
|
|
|
invalid = '\033[90m'
|
|
|
|
reset = '\033[0m'
|
2023-11-23 09:39:04 +00:00
|
|
|
separator = '\033[90m'
|
|
|
|
|
|
|
|
|
2023-11-23 08:08:28 +00:00
|
|
|
def get_dns_servers() -> list:
|
|
|
|
'''Get a list of DNS servers to use for lookups.'''
|
|
|
|
source = urllib.request.urlopen('https://public-dns.info/nameservers.txt')
|
|
|
|
results = source.read().decode().split('\n')
|
|
|
|
return [server for server in results if ':' not in server]
|
|
|
|
|
2023-11-24 08:44:24 +00:00
|
|
|
|
2023-11-23 09:46:49 +00:00
|
|
|
async def rdns(semaphore: asyncio.Semaphore, ip_address: str, resolver: aiodns.DNSResolver):
|
2023-11-23 08:08:28 +00:00
|
|
|
'''
|
|
|
|
Perform a reverse DNS lookup on an IP address.
|
|
|
|
|
2023-11-24 08:44:24 +00:00
|
|
|
:param semaphore: The semaphore to use for concurrency.
|
|
|
|
:param ip_address: The IP address to perform a reverse DNS lookup on.
|
2023-11-23 08:08:28 +00:00
|
|
|
'''
|
|
|
|
async with semaphore:
|
|
|
|
reverse_name = ipaddress.ip_address(ip_address).reverse_pointer
|
|
|
|
try:
|
|
|
|
answer = await resolver.query(reverse_name, 'PTR')
|
|
|
|
return ip_address, answer.name
|
|
|
|
except:
|
|
|
|
return ip_address, None
|
|
|
|
|
2023-11-24 08:44:24 +00:00
|
|
|
|
2023-11-23 08:08:28 +00:00
|
|
|
def rig(seed: int) -> str:
|
|
|
|
'''
|
|
|
|
Random IP generator.
|
|
|
|
|
|
|
|
:param seed: The seed to use for the random number generator.
|
|
|
|
'''
|
|
|
|
max_value = 256**4
|
|
|
|
random.seed(seed)
|
|
|
|
for _ in range(max_value):
|
|
|
|
shuffled_index = random.randint(0, max_value - 1)
|
|
|
|
ip = ipaddress.ip_address(shuffled_index)
|
|
|
|
yield str(ip)
|
|
|
|
|
2023-11-24 08:44:24 +00:00
|
|
|
def fancy_print(ip: str, result: str):
|
|
|
|
'''
|
|
|
|
Print the IP address and PTR record in a fancy way.
|
|
|
|
|
|
|
|
:param ip: The IP address.
|
|
|
|
:param result: The PTR record.
|
|
|
|
'''
|
|
|
|
if result in ('127.0.0.1', 'localhost'):
|
|
|
|
print(f'{colors.ip}{ip.ljust(15)}{colors.reset} {colors.separator}-> {result}{colors.reset}')
|
|
|
|
else:
|
|
|
|
if ip in result:
|
|
|
|
result = result.replace(ip, f'{colors.ip_match}{ip}{colors.ptr}')
|
|
|
|
elif (daship := ip.replace('.', '-')) in result:
|
|
|
|
result = result.replace(daship, f'{colors.ip_match}{daship}{colors.ptr}')
|
|
|
|
elif (revip := '.'.join(ip.split('.')[::-1])) in result:
|
|
|
|
result = result.replace(revip, f'{colors.ip_match}{revip}{colors.ptr}')
|
|
|
|
elif result.endswith('.gov') or result.endswith('.mil'):
|
|
|
|
result = result.replace('.gov', f'{colors.spooky}.gov{colors.reset}')
|
|
|
|
result = result.replace('.mil', f'{colors.spooky}.mil{colors.reset}')
|
|
|
|
elif '.gov.' in result or '.mil.' in result:
|
|
|
|
result = result.replace('.gov.', f'{colors.spooky}.gov.{colors.ptr}')
|
|
|
|
result = result.replace('.mil.', f'{colors.spooky}.mil.{colors.ptr}')
|
|
|
|
print(f'{colors.ip}{ip.ljust(15)}{colors.reset} {colors.separator}->{colors.reset} {colors.ptr}{result}{colors.reset}')
|
|
|
|
|
|
|
|
|
|
|
|
async def main(args: argparse.Namespace):
|
|
|
|
'''
|
|
|
|
Generate random IPs and perform reverse DNS lookups.
|
|
|
|
|
|
|
|
:param args: The command-line arguments.
|
|
|
|
'''
|
|
|
|
if args.resolvers:
|
|
|
|
if os.path.exists(args.resolvers):
|
|
|
|
with open(args.resolvers) as file:
|
|
|
|
dns_resolvers = [item.strip() for item in file.read().splitlines()]
|
|
|
|
else:
|
|
|
|
raise FileNotFoundError(f'could not find file \'{args.resolvers}\'')
|
|
|
|
else:
|
|
|
|
dns_resolvers = get_dns_servers()
|
|
|
|
dns_resolvers = random.shuffle(dns_resolvers)
|
|
|
|
|
|
|
|
resolver = aiodns.DNSResolver(nameservers=dns_resolvers, timeout=args.timeout, tries=args.retries, rotate=True)
|
2023-11-23 08:08:28 +00:00
|
|
|
semaphore = asyncio.Semaphore(args.concurrency)
|
2023-11-24 08:44:24 +00:00
|
|
|
|
2023-11-23 08:08:28 +00:00
|
|
|
tasks = []
|
|
|
|
results_cache = []
|
|
|
|
|
2023-11-23 09:46:49 +00:00
|
|
|
seed = random.randint(10**9, 10**10 - 1)
|
|
|
|
ip_generator = rig(seed)
|
|
|
|
|
|
|
|
for ip in ip_generator:
|
|
|
|
if len(tasks) < args.concurrency:
|
|
|
|
task = asyncio.create_task(rdns(semaphore, ip, resolver))
|
|
|
|
tasks.append(task)
|
|
|
|
else:
|
|
|
|
done, pending = await asyncio.wait(tasks, return_when=asyncio.FIRST_COMPLETED)
|
|
|
|
tasks = list(pending)
|
|
|
|
for task in done:
|
|
|
|
ip, result = task.result()
|
|
|
|
if result:
|
2023-11-24 08:44:24 +00:00
|
|
|
fancy_print(ip, result)
|
2023-11-23 09:46:49 +00:00
|
|
|
results_cache.append(f'{ip}:{result}')
|
|
|
|
if len(results_cache) >= 1000:
|
|
|
|
stamp = time.strftime('%Y%m%d')
|
|
|
|
with open(f'ptr_{stamp}_{seed}.txt', 'a') as file:
|
|
|
|
file.writelines(f"{record}\n" for record in results_cache)
|
|
|
|
results_cache = []
|
2023-11-23 08:08:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
parser = argparse.ArgumentParser(description='Perform asynchronous reverse DNS lookups.')
|
|
|
|
parser.add_argument('-c', '--concurrency', type=int, default=50, help='Control the speed of lookups.')
|
|
|
|
parser.add_argument('-t', '--timeout', type=int, default=5, help='Timeout for DNS lookups.')
|
2023-11-23 09:09:36 +00:00
|
|
|
parser.add_argument('-r', '--resolvers', type=str, help='File containing DNS servers to use for lookups.')
|
2023-11-24 08:44:24 +00:00
|
|
|
parser.add_argument('-rt', '--retries', type=int, default=3, help='Number of times to retry a DNS lookup.')
|
2023-11-23 08:08:28 +00:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
2023-11-24 08:44:24 +00:00
|
|
|
asyncio.run(main(args))
|