Revlookup is a tool written in Python3 that performs Reverse DNS on IPs to identify subdomains and new applications
git clone https://github.com/yHunterDep/revlookup/
cd revlookup/
pip3 install -r requirements.txt
chmod +x revlookup
./revlookup -h
usage: revlookup [-h] [-target TARGET] [-targets TARGETS]
[-cidr CIDR] [-o OUTPUT] [-s]
Revlookup 1.0 - HunterDep
options:
-h, --help show this help message and exit
-target TARGET, --target TARGET
coloque o ip alvo, ex:
192.168.0.1
-targets TARGETS, --targets TARGETS
coloque uma lista de ips, ex:
-targets ips.txt
-cidr CIDR, --cidr CIDR
passe um Cidr, ex: 192.168.0.1/24
-o OUTPUT, --output OUTPUT
salvar os resultados
-s, --silent tirar o banner
./revlookup -target 140.82.113.31
./revlookup -target 87.248.98.39
./revlookup -cidr 87.248.98.0/24
The -targets argument needs a file with ips (CIDR or NORMAL) to work, example:
./revlookup -targets ips.txt
./revlookup -target 140.82.113.31 --output subs.txt
./revlookup -target 140.82.113.31 --silent