From 20e3924a24a2eb164529ab911f740b5b1bb82427 Mon Sep 17 00:00:00 2001 From: Greatest125 <66028078+Greatest125@users.noreply.github.com> Date: Sat, 26 Dec 2020 16:27:42 +0000 Subject: [PATCH] added Breacher run instructions --- tools/information_gathering_tools.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tools/information_gathering_tools.py b/tools/information_gathering_tools.py index 0c0da0d..8d7ae53 100644 --- a/tools/information_gathering_tools.py +++ b/tools/information_gathering_tools.py @@ -195,10 +195,11 @@ class Breacher(HackingTool): DESCRIPTION = "An advanced multithreaded admin panel finder written in python." INSTALL_COMMANDS = ["git clone https://github.com/s0md3v/Breacher.git"] PROJECT_URL = "https://github.com/s0md3v/Breacher" - - def __init__(self): - super(Breacher, self).__init__(runnable = False) - + + def run(self): + domain = input("Enter domain (example.com) >> ") + os.chdir("Breacher") + subprocess.run(["python3", "breacher.py", "-u", domain]) class InformationGatheringTools(HackingToolsCollection): TITLE = "Information gathering tools"