Assetfinder is a simple and fast subdomain discovery tool. It is used during reconnaissance to find related domains and subdomains of a target using public data sources.
It is lightweight and works very well with tools like Subfinder, httpx, and Nuclei.
Installation Commands
Update Termux and install required packages:
pkg update && pkg upgrade && pkg install git golang -yClone the repository:
git clone https://github.com/tomnomnom/assetfinder.gitMove into the directory:
cd assetfinderInitialize Go module:
go mod init assetfinderDownload dependencies:
go mod tidyBuild the binary:
go buildRun Assetfinder:
./assetfinder --help(Optional) Move to global path:
mv assetfinder $PREFIX/binUsage Commands
Find subdomains:
assetfinder example.comShow only subdomains:
assetfinder --subs-only example.comSave output to file:
assetfinder --subs-only example.com > subdomains.txtUse with httpx:
assetfinder --subs-only example.com | httpx -silentFull recon chain:
assetfinder --subs-only example.com | httpx -silent | nuclei -silent