From 768b722efe3f3bfe9ac1a491b737c2e5a69de790 Mon Sep 17 00:00:00 2001 From: Greatest125 <66028078+Greatest125@users.noreply.github.com> Date: Thu, 31 Dec 2020 13:57:09 -0500 Subject: [PATCH] update KnockMail to python3 --- tools/others/email_verifier.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tools/others/email_verifier.py b/tools/others/email_verifier.py index d25fc59..3d1c342 100644 --- a/tools/others/email_verifier.py +++ b/tools/others/email_verifier.py @@ -7,13 +7,14 @@ class KnockMail(HackingTool): TITLE = "Knockmail" DESCRIPTION = "KnockMail Tool Verify If Email Exists" INSTALL_COMMANDS = [ - "git clone https://github.com/4w4k3/KnockMail.git", - "cd KnockMail;sudo pip install -r requeriments.txt" + "sudo git clone https://github.com/heywoodlh/KnockMail.git", + "cd KnockMail;sudo pip3 install -r requirements.txt" ] - RUN_COMMANDS = ["cd KnockMail;python knock.py"] - PROJECT_URL = "https://github.com/4w4k3/KnockMail" + RUN_COMMANDS = ["cd KnockMail;python3 knockmail.py"] + PROJECT_URL = "https://github.com/heywoodlh/KnockMail" class EmailVerifyTools(HackingToolsCollection): TITLE = "Email Verify tools" TOOLS = [KnockMail()] +