Forrest logo
back to the sublist3r tool

sublist3r:tldr:cbf15

sublist3r: Save the found subdomains to a text file.
$ sublist3r --domain ${domain_name} --output ${path-to-output_file}
try on your machine

The command sublist3r is used to enumerate subdomains for a given domain. The following is a breakdown of the command:

  • --domain ${domain_name}: This flag specifies the domain name for which you want to enumerate subdomains. Replace ${domain_name} with the actual domain name you want to scan. For example, if you want to scan the domain example.com, you would replace ${domain_name} with example.com.

  • --output ${path-to-output_file}: This flag specifies the path to the output file where the generated subdomains will be saved. Replace ${path-to-output_file} with the desired path and name of the output file. For example, if you want to save the output in a file named subdomains.txt on your desktop, you can use the path /Users/your-username/Desktop/subdomains.txt. Make sure to adjust it to match your own environment.

Overall, this command will run the sublist3r tool to discover subdomains of a given domain. The generated subdomains will be saved in the specified output file for further analysis or reference.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the sublist3r tool