sublist3r:tldr:cbf15
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 domainexample.com
, you would replace${domain_name}
withexample.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 namedsubdomains.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.