From a779844944d653b278d043954468c93370956a54 Mon Sep 17 00:00:00 2001 From: Greatest125 <66028078+Greatest125@users.noreply.github.com> Date: Fri, 25 Dec 2020 17:10:55 -0500 Subject: [PATCH] update infoga install instructions added python3 support and fixed a typo --- tools/information_gathering_tools.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/information_gathering_tools.py b/tools/information_gathering_tools.py index 38d17bb..8e203c6 100644 --- a/tools/information_gathering_tools.py +++ b/tools/information_gathering_tools.py @@ -118,9 +118,9 @@ class Infoga(HackingTool): "(ip, hostname, country,...) from different public source" INSTALL_COMMANDS = [ "git clone https://github.com/m4ll0k/Infoga.git", - "cd infoga;sudo python setup.py install" + "cd Infoga;sudo python3 setup.py install" ] - RUN_COMMANDS = ["cd infoga;python infoga.py"] + RUN_COMMANDS = ["cd Infoga;python3 infoga.py"] PROJECT_URL = "https://github.com/m4ll0k/Infoga"