remove sudo

This commit is contained in:
Greatest125 2021-05-07 08:43:16 -04:00 committed by GitHub
parent 768b722efe
commit 6bd2d7029f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,7 +7,7 @@ class KnockMail(HackingTool):
TITLE = "Knockmail" TITLE = "Knockmail"
DESCRIPTION = "KnockMail Tool Verify If Email Exists" DESCRIPTION = "KnockMail Tool Verify If Email Exists"
INSTALL_COMMANDS = [ INSTALL_COMMANDS = [
"sudo git clone https://github.com/heywoodlh/KnockMail.git", "git clone https://github.com/heywoodlh/KnockMail.git",
"cd KnockMail;sudo pip3 install -r requirements.txt" "cd KnockMail;sudo pip3 install -r requirements.txt"
] ]
RUN_COMMANDS = ["cd KnockMail;python3 knockmail.py"] RUN_COMMANDS = ["cd KnockMail;python3 knockmail.py"]