Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Z4nzu
GitHub Repository: Z4nzu/hackingtool
Path: blob/master/tools/others/homograph_attacks.py
1275 views
1
# coding=utf-8
2
from core import HackingTool
3
from core import HackingToolsCollection
4
5
6
class EvilURL(HackingTool):
7
TITLE = "EvilURL"
8
DESCRIPTION = "Generate unicode evil domains for IDN Homograph Attack " \
9
"and detect them."
10
INSTALL_COMMANDS = ["git clone https://github.com/UndeadSec/EvilURL.git"]
11
RUN_COMMANDS = ["cd EvilURL;python3 evilurl.py"]
12
PROJECT_URL = "https://github.com/UndeadSec/EvilURL"
13
14
15
class IDNHomographAttackTools(HackingToolsCollection):
16
TITLE = "IDN Homograph Attack"
17
TOOLS = [EvilURL()]
18
19