asset finder
assetfinder is a tool designed for finding subdomains for a given base domain. It can search public sources to find assets related to the domain, including subdomains, and support various options for filtering results.
Options:
- Domain Name (Base Domain): The primary domain you want to search for subdomains. For example,
example.com
. --subs
: Include subdomains in the search results.--silent
: Runs Assetfinder in silent mode, only showing errors and suppressing other output.--exclude
: A comma-separated list of subdomains you want to exclude from your results, e.g., www.example.com, mail.example.com
Example Assetfinder Commands
1. Basic Command:
> assetfinder example.com
Explanation: Finds assets related to example.com
without any filtering options.
2. Include Subdomains:
> assetfinder example.com --subs
Explanation: Searches for subdomains of example.com
and returns them as results.
3. Exclude Specific Subdomains:
> assetfinder example.com --exclude www.example.com
Explanation: Searches for assets related to example.com
but excludes www.example.com
from the results.
4. Use Silent Mode:
> assetfinder example.com --silent
Explanation: Runs the search quietly, showing only error messages.
5. Combining Options:
> assetfinder example.com --subs --silent --exclude www.example.com
Explanation: Searches for subdomains of example.com
, excludes www.example.com
, and runs silently.