mirror of
https://github.com/Z4nzu/hackingtool
synced 2024-11-15 04:05:29 +00:00
18 lines
555 B
Python
18 lines
555 B
Python
|
# coding=utf-8
|
||
|
from core import HackingTool
|
||
|
from core import HackingToolsCollection
|
||
|
|
||
|
|
||
|
class EvilURL(HackingTool):
|
||
|
TITLE = "EvilURL"
|
||
|
DESCRIPTION = "Generate unicode evil domains for IDN Homograph Attack " \
|
||
|
"and detect them."
|
||
|
INSTALL_COMMANDS = ["git clone https://github.com/UndeadSec/EvilURL.git"]
|
||
|
RUN_COMMANDS = ["cd EvilURL;python3 evilurl.py"]
|
||
|
PROJECT_URL = "https://github.com/UndeadSec/EvilURL"
|
||
|
|
||
|
|
||
|
class IDNHomographAttackTools(HackingToolsCollection):
|
||
|
TITLE = "IDN Homograph Attack"
|
||
|
TOOLS = [EvilURL()]
|