You've already forked hackingtool
mirror of
https://github.com/Z4nzu/hackingtool.git
synced 2025-06-20 06:15:54 +02:00
updated sublist3r to Python3
This commit is contained in:
@ -33,14 +33,14 @@ class SubDomainFinder(HackingTool):
|
|||||||
DESCRIPTION = "Sublist3r is a python tool designed to enumerate " \
|
DESCRIPTION = "Sublist3r is a python tool designed to enumerate " \
|
||||||
"subdomains of websites using OSINT \n " \
|
"subdomains of websites using OSINT \n " \
|
||||||
"Usage:\n\t" \
|
"Usage:\n\t" \
|
||||||
"[1] python sublist3r.py -d example.com \n" \
|
"[1] python3 sublist3r.py -d example.com \n" \
|
||||||
"[2] python sublist3r.py -d example.com -p 80,443"
|
"[2] python3 sublist3r.py -d example.com -p 80,443"
|
||||||
INSTALL_COMMANDS = [
|
INSTALL_COMMANDS = [
|
||||||
"sudo pip install requests argparse dnspython",
|
"sudo pip3 install requests argparse dnspython",
|
||||||
"sudo git clone https://github.com/aboul3la/Sublist3r.git",
|
"sudo git clone https://github.com/aboul3la/Sublist3r.git",
|
||||||
"cd Sublist3r && sudo pip install -r requirements.txt"
|
"cd Sublist3r && sudo pip3 install -r requirements.txt"
|
||||||
]
|
]
|
||||||
RUN_COMMANDS = ["cd Sublist3r && python sublist3r.py -h"]
|
RUN_COMMANDS = ["cd Sublist3r && python3 sublist3r.py -h"]
|
||||||
PROJECT_URL = "https://github.com/aboul3la/Sublist3r"
|
PROJECT_URL = "https://github.com/aboul3la/Sublist3r"
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user