mirror of
https://github.com/Z4nzu/hackingtool
synced 2024-11-14 19:55:19 +00:00
Merge pull request #146 from W1LDN16H7/master
Add StegoCracker in steganography tools
This commit is contained in:
commit
005cdfb0b5
@ -19,6 +19,8 @@
|
|||||||
- [x] Payload Injector
|
- [x] Payload Injector
|
||||||
- [x] Multitor Tools update
|
- [x] Multitor Tools update
|
||||||
- [X] Added Tool in wifijamming
|
- [X] Added Tool in wifijamming
|
||||||
|
- [X] Added Tool in steganography
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Hackingtool Menu 🧰
|
# Hackingtool Menu 🧰
|
||||||
@ -159,6 +161,7 @@
|
|||||||
### Steganograhy tools
|
### Steganograhy tools
|
||||||
- SteganoHide
|
- SteganoHide
|
||||||
- StegnoCracker
|
- StegnoCracker
|
||||||
|
- [StegoCracker](https://github.com/W1LDN16H7/StegoCracker)
|
||||||
- [Whitespace](https://github.com/beardog108/snow10)
|
- [Whitespace](https://github.com/beardog108/snow10)
|
||||||
### Other tools
|
### Other tools
|
||||||
#### SocialMedia Bruteforce
|
#### SocialMedia Bruteforce
|
||||||
|
@ -48,6 +48,20 @@ class StegnoCracker(HackingTool):
|
|||||||
subprocess.run(["stegcracker", filename, passfile])
|
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):
|
class Whitespace(HackingTool):
|
||||||
TITLE = "Whitespace"
|
TITLE = "Whitespace"
|
||||||
DESCRIPTION = "Use whitespace and unicode chars for steganography"
|
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 git clone https://github.com/beardog108/snow10.git",
|
||||||
"sudo chmod -R 755 snow10"
|
"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"
|
PROJECT_URL = "https://github.com/beardog108/snow10"
|
||||||
|
|
||||||
|
|
||||||
@ -64,5 +78,8 @@ class SteganographyTools(HackingToolsCollection):
|
|||||||
TOOLS = [
|
TOOLS = [
|
||||||
SteganoHide(),
|
SteganoHide(),
|
||||||
StegnoCracker(),
|
StegnoCracker(),
|
||||||
|
StegoCracker(),
|
||||||
Whitespace()
|
Whitespace()
|
||||||
|
|
||||||
|
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user