1
0
mirror of https://github.com/Z4nzu/hackingtool.git synced 2025-08-04 21:53:12 +02:00
Files
.github
images
tools
others
android_attack.py
email_verifier.py
hash_crack.py
homograph_attacks.py
mix_tools.py
payload_injection.py
socialmedia.py
socialmedia_finder.py
web_crawling.py
wifi_jamming.py
anonsurf.py
ddos.py
exploit_frameworks.py
forensic_tools.py
information_gathering_tools.py
other_tools.py
payload_creator.py
phising_attack.py
post_exploitation.py
remote_administration.py
reverse_engineering.py
sql_tools.py
steganography.py
tool_manager.py
webattack.py
wireless_attack_tools.py
wordlist_generator.py
xss_attack.py
LICENSE
README.md
README_template.md
core.py
generate_readme.py
hackingtool.py
install.sh
requirement.txt
update.sh
hackingtool/tools/others/email_verifier.py

21 lines
584 B
Python
Raw Normal View History

# 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 = [
2021-05-07 08:43:16 -04:00
"git clone https://github.com/heywoodlh/KnockMail.git",
2020-12-31 13:57:09 -05:00
"cd KnockMail;sudo pip3 install -r requirements.txt"
]
2020-12-31 13:57:09 -05:00
RUN_COMMANDS = ["cd KnockMail;python3 knockmail.py"]
PROJECT_URL = "https://github.com/heywoodlh/KnockMail"
class EmailVerifyTools(HackingToolsCollection):
TITLE = "Email Verify tools"
TOOLS = [KnockMail()]
2020-12-31 13:57:09 -05:00