add a new tool named stegocracker

This commit is contained in:
TheWildNIght 2021-07-05 07:42:01 +05:30 committed by GitHub
parent ab618753cd
commit b42a5547e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,6 +48,20 @@ class StegnoCracker(HackingTool):
subprocess.run(["stegcracker", filename, passfile])
class StegoCracker(HackingTool):
TITLE = "StegoCracker"
DESCRIPTION = "StegoCracker is a tool that let's you hide data into image or audio files and can retrieve from a file "
INSTALL_COMMANDS = [
"sudo git clone https://github.com/W1LDN16H7/StegoCracker.git",
"sudo chmod -R 755 StegoCracker"
]
RUN_COMMANDS = ["cd StegoCracker && python3 -m pip install -r requirements.txt ",
"./install.sh"
]
PROJECT_URL = "https://github.com/W1LDN16H7/StegoCracker"
class Whitespace(HackingTool):
TITLE = "Whitespace"
DESCRIPTION = "Use whitespace and unicode chars for steganography"
@ -55,7 +69,7 @@ class Whitespace(HackingTool):
"sudo git clone https://github.com/beardog108/snow10.git",
"sudo chmod -R 755 snow10"
]
RUN_COMMANDS = ["cd snow10 && firefox index.html"]
RUN_COMMANDS = ["cd snow10 && ./install.sh"]
PROJECT_URL = "https://github.com/beardog108/snow10"
@ -64,5 +78,8 @@ class SteganographyTools(HackingToolsCollection):
TOOLS = [
SteganoHide(),
StegnoCracker(),
StegoCracker(),
Whitespace()
]