mirror of
https://github.com/Z4nzu/hackingtool
synced 2024-11-15 04:05:29 +00:00
22 lines
638 B
Python
22 lines
638 B
Python
|
# coding=utf-8
|
||
|
from core import HackingTool
|
||
|
from core import HackingToolsCollection
|
||
|
|
||
|
|
||
|
class HashBuster(HackingTool):
|
||
|
TITLE = "Hash Buster"
|
||
|
DESCRIPTION = "Features: \n " \
|
||
|
"Automatic hash type identification \n " \
|
||
|
"Supports MD5, SHA1, SHA256, SHA384, SHA512"
|
||
|
INSTALL_COMMANDS = [
|
||
|
"git clone https://github.com/s0md3v/Hash-Buster.git",
|
||
|
"cd Hash-Buster;make install"
|
||
|
]
|
||
|
RUN_COMMANDS = ["buster -h"]
|
||
|
PROJECT_URL = "https://github.com/s0md3v/Hash-Buster"
|
||
|
|
||
|
|
||
|
class HashCrackingTools(HackingToolsCollection):
|
||
|
TITLE = "Hash cracking tools"
|
||
|
TOOLS = [HashBuster()]
|