mirror of
https://github.com/Z4nzu/hackingtool
synced 2024-11-14 19:55:19 +00:00
21 lines
584 B
Python
21 lines
584 B
Python
# coding=utf-8
|
|
from core import HackingTool
|
|
from core import HackingToolsCollection
|
|
|
|
|
|
class KnockMail(HackingTool):
|
|
TITLE = "Knockmail"
|
|
DESCRIPTION = "KnockMail Tool Verify If Email Exists"
|
|
INSTALL_COMMANDS = [
|
|
"git clone https://github.com/heywoodlh/KnockMail.git",
|
|
"cd KnockMail;sudo pip3 install -r requirements.txt"
|
|
]
|
|
RUN_COMMANDS = ["cd KnockMail;python3 knockmail.py"]
|
|
PROJECT_URL = "https://github.com/heywoodlh/KnockMail"
|
|
|
|
|
|
class EmailVerifyTools(HackingToolsCollection):
|
|
TITLE = "Email Verify tools"
|
|
TOOLS = [KnockMail()]
|
|
|