Findomain in Termux: Commands & Usage Guide
Findomain is a lightning-fast, cross-platform subdomain enumerator. It is an essential tool for bug bounty hunters and security researchers to map out a target's attack surface by discovering hidden subdomains using multiple online sources.
Installation Steps
Installing Findomain in Termux is straightforward as it is available in the official repositories.
1. Update Repositories
pkg update && pkg upgrade -y
2. Install Findomain
apt install findomain -y
3. Verify Installation
findomain --version
Basic Usage Commands
Once installed, you can start enumerating subdomains with these simple commands.
Scan a Single Target
To scan a domain and display discovered subdomains in the terminal:
findomain -t example.com
Save Output to File
Save the results to a text file for further analysis:
findomain -t example.com -u subdomains.txt
Bulk Scan
Scan multiple domains listed in a text file:
findomain -f domains.txt
Quiet Mode
Run the scan with minimal output (banners hidden):
findomain -t example.com -q