From 98ea0036e1b2dce31e6f4a53d337824fb8bfaa5f Mon Sep 17 00:00:00 2001 From: Greatest125 <66028078+Greatest125@users.noreply.github.com> Date: Sat, 26 Dec 2020 10:45:32 -0500 Subject: [PATCH] updated and enabled dracnmap run instructions --- 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 0c7616c..a81258b 100644 --- a/tools/information_gathering_tools.py +++ b/tools/information_gathering_tools.py @@ -30,11 +30,11 @@ class Dracnmap(HackingTool): "sudo git clone https://github.com/Screetsec/Dracnmap.git", "cd Dracnmap && chmod +x dracnmap-v2.2-dracOs.sh dracnmap-v2.2.sh" ] - RUN_COMMANDS = ["sudo ./dracnmap-v2.2.sh"] + RUN_COMMANDS = ["cd Dracnmap;sudo ./dracnmap-v2.2.sh"] PROJECT_URL = "https://github.com/Screetsec/Dracnmap" - def __init__(self): - super(Dracnmap, self).__init__(runnable = False) +# def __init__(self): +# super(Dracnmap, self).__init__(runnable = False) class PortScan(HackingTool):