You've already forked hackingtool
mirror of
https://github.com/Z4nzu/hackingtool.git
synced 2025-06-20 06:15:54 +02: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()]
|