Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Z4nzu
GitHub Repository: Z4nzu/hackingtool
Path: blob/master/tools/others/hash_crack.py
1275 views
1
# coding=utf-8
2
from core import HackingTool
3
from core import HackingToolsCollection
4
5
6
class HashBuster(HackingTool):
7
TITLE = "Hash Buster"
8
DESCRIPTION = "Features: \n " \
9
"Automatic hash type identification \n " \
10
"Supports MD5, SHA1, SHA256, SHA384, SHA512"
11
INSTALL_COMMANDS = [
12
"git clone https://github.com/s0md3v/Hash-Buster.git",
13
"cd Hash-Buster;make install"
14
]
15
RUN_COMMANDS = ["buster -h"]
16
PROJECT_URL = "https://github.com/s0md3v/Hash-Buster"
17
18
19
class HashCrackingTools(HackingToolsCollection):
20
TITLE = "Hash cracking tools"
21
TOOLS = [HashBuster()]
22
23