From 2bce668f0e08c44b3e7be91298289afad60b5082 Mon Sep 17 00:00:00 2001 From: Greatest125 <66028078+Greatest125@users.noreply.github.com> Date: Sat, 26 Dec 2020 10:39:36 -0500 Subject: [PATCH] updated reconspider run commands --- tools/information_gathering_tools.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/information_gathering_tools.py b/tools/information_gathering_tools.py index 8e203c6..0c7616c 100644 --- a/tools/information_gathering_tools.py +++ b/tools/information_gathering_tools.py @@ -93,11 +93,11 @@ class ReconSpider(HackingTool): "sudo git clone https://github.com/bhavsec/reconspider.git", "sudo apt install python3 python3-pip && cd reconspider && sudo python3 setup.py install" ] - RUN_COMMANDS = ["python3 reconspider.py"] + RUN_COMMANDS = ["cd reconspider;python3 reconspider.py"] PROJECT_URL = "https://github.com/bhavsec/reconspider" - def __init__(self): - super(ReconSpider, self).__init__(runnable = False) +# def __init__(self): +# super(ReconSpider, self).__init__(runnable = False) class IsItDown(HackingTool):