From 1953ea5da73627f5c2ffbcca5f51463f6545d01d Mon Sep 17 00:00:00 2001 From: Greatest125 <66028078+Greatest125@users.noreply.github.com> Date: Sun, 27 Dec 2020 18:43:48 +0000 Subject: [PATCH] updated sublist3r to Python3 --- tools/webattack.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tools/webattack.py b/tools/webattack.py index 4ff2fa1..fa62b75 100644 --- a/tools/webattack.py +++ b/tools/webattack.py @@ -33,14 +33,14 @@ class SubDomainFinder(HackingTool): DESCRIPTION = "Sublist3r is a python tool designed to enumerate " \ "subdomains of websites using OSINT \n " \ "Usage:\n\t" \ - "[1] python sublist3r.py -d example.com \n" \ - "[2] python sublist3r.py -d example.com -p 80,443" + "[1] python3 sublist3r.py -d example.com \n" \ + "[2] python3 sublist3r.py -d example.com -p 80,443" INSTALL_COMMANDS = [ - "sudo pip install requests argparse dnspython", + "sudo pip3 install requests argparse dnspython", "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"