How to find subdomains of a website

How to find subdomains of a website

Disclaimer: Everything on this site is for educational purposes and should not be used for evil.

Tutorial:

apt update
apt install sublist3r

Commands:

-d - Domain name

-b --bruteforce - Bruteforces subdomains, instead of the 

-p --ports - Scans domains that it found for the port(s) you specified

-v --verbose - Shows more information

-t --threads - Specifies how many threads to use

-e --engines - Specifies what search engine to use

-o --output - Saves the result to a text file

-h --help - Shows this text

Usage example:

sublist3r -d google.com -p 80 -e Bing -o /home/user/google.txt

Comments