Advertisement
TVT618

Sublist3r - Fast and powerful Sub-domain Listing tool

Jul 26th, 2018
2,722
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.05 KB | None | 0 0
  1. About Sublist3r
  2. Sublist3r is a Python tool designed to enumerate subdomains of websites using OSINT. It helps pentesters and bug hunters collect and gather subdomains for the domain they are targeting. Sublist3r enumerates subdomains using many search engines such as Google, Yahoo, Bing, Baidu, and Ask. Sublist3r also enumerates subdomains using Netcraft, Virustotal, ThreatCrowd, DNSdumpster, and ReverseDNS.
  3. subbrute was integrated with Sublist3r to increase the possibility of finding more subdomains using bruteforce with an improved wordlist. The credit goes to TheRook who is the author of subbrute.
  4.  
  5. Screenshot:
  6.  
  7. Install on Linux:
  8. git clone https://github.com/aboul3la/Sublist3r
  9. cd Sublist3r
  10. sudo pip install -r requirements.txt
  11. python sublist3r.py -h
  12.  
  13. Install on Windows:
  14. Install Python 2.7.x or Python 3.x from Python.org
  15. Install Git from Git-scm.com
  16.  
  17. Open Command Prompt and enter the following commands:
  18. git clone https://github.com/aboul3la/Sublist3r
  19. cd Sublist3r
  20. sudo pip install -r requirements.txt
  21. python sublist3r.py -h
  22.  
  23. Update: cd Sublist3r && git pull -f
  24.  
  25. Recommended Python Version: Sublist3r currently supports Python 2 and Python 3.
  26. The recommended version for Python 2 is 2.7.x
  27. The recommened version for Python 3 is 3.4.x
  28.  
  29. Usage:
  30. Short Form Long Form Description
  31. -d --domain Domain name to enumerate subdomains of
  32. -b --bruteforce Enable the subbrute bruteforce module
  33. -p --ports Scan the found subdomains against specific tcp ports
  34. -v --verbose Enable the verbose mode and display results in realtime
  35. -t --threads Number of threads to use for subbrute bruteforce
  36. -e --engines Specify a comma-separated list of search engines
  37. -o --output Save the results to text file
  38. -h --help show the help message and exit
  39.  
  40. Examples:
  41. To list all the basic options and switches use -h switch: python sublist3r.py -h
  42. To enumerate subdomains of specific domain: python sublist3r.py -d example.com
  43.  
  44. To enumerate subdomains of specific domain and show only subdomains which have open ports 80 and 443 :
  45. python sublist3r.py -d example.com -p 80,443
  46.  
  47. To enumerate subdomains of specific domain and show the results in realtime:
  48. python sublist3r.py -v -d example.com
  49.  
  50. To enumerate subdomains and enable the bruteforce module:
  51. python sublist3r.py -b -d example.com
  52.  
  53. To enumerate subdomains and use specific engines such Google, Yahoo and Virustotal engines
  54. python sublist3r.py -e google,yahoo,virustotal -d example.com
  55.  
  56. License:
  57. Sublist3r is licensed under the GNU GPL license. take a look at the LICENSE for more information.
  58.  
  59. Credits:
  60. TheRook - The bruteforce module was based on his script subbrute.
  61. Bitquark - The Subbrute's wordlist was based on his research dnspop.
  62.  
  63. Special Thanks to Ibrahim Mosaad for his great contributions that helped in improving the tool.
  64.  
  65. Version: 1.0
  66.  
  67. Download Sublist3r: https://github.com/aboul3la/Sublist3r
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement