From ab618753cda193f53cbde0aa66ae5d2d22902e28 Mon Sep 17 00:00:00 2001 From: TheWildNIght <58102926+W1LDN16H7@users.noreply.github.com> Date: Sun, 4 Jul 2021 22:48:00 +0530 Subject: [PATCH 1/4] add stegocracker in steganography tools --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 441ce3c..0d6c4a3 100644 --- a/README.md +++ b/README.md @@ -158,7 +158,7 @@ - [RVuln](https://github.com/iinc0gnit0/RVuln) ### Steganograhy tools - SteganoHide -- StegnoCracker +- [StegoCracker](https://github.com/W1LDN16H7/StegoCracker) - [Whitespace](https://github.com/beardog108/snow10) ### Other tools #### SocialMedia Bruteforce From b42a5547e93c6f9d0b10cd0c8e810dcb2a7aee58 Mon Sep 17 00:00:00 2001 From: TheWildNIght <58102926+W1LDN16H7@users.noreply.github.com> Date: Mon, 5 Jul 2021 07:42:01 +0530 Subject: [PATCH 2/4] add a new tool named stegocracker --- tools/steganography.py | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/tools/steganography.py b/tools/steganography.py index 1c7e039..121e906 100644 --- a/tools/steganography.py +++ b/tools/steganography.py @@ -47,6 +47,20 @@ class StegnoCracker(HackingTool): passfile = input("Enter Wordlist Filename:- ") 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" @@ -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() + + ] From ffaa03f38797828b87e6f5c4d22b49254de78b98 Mon Sep 17 00:00:00 2001 From: TheWildNIght <58102926+W1LDN16H7@users.noreply.github.com> Date: Mon, 5 Jul 2021 07:48:57 +0530 Subject: [PATCH 3/4] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 0d6c4a3..390dc9a 100644 --- a/README.md +++ b/README.md @@ -158,6 +158,7 @@ - [RVuln](https://github.com/iinc0gnit0/RVuln) ### Steganograhy tools - SteganoHide +- StegnoCracker - [StegoCracker](https://github.com/W1LDN16H7/StegoCracker) - [Whitespace](https://github.com/beardog108/snow10) ### Other tools From bb997da360eb528f4c47657d3d32a36452ef22fa Mon Sep 17 00:00:00 2001 From: TheWildNIght <58102926+W1LDN16H7@users.noreply.github.com> Date: Mon, 5 Jul 2021 07:51:43 +0530 Subject: [PATCH 4/4] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 390dc9a..5b7ba62 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,8 @@ - [x] Payload Injector - [x] Multitor Tools update - [X] Added Tool in wifijamming +- [X] Added Tool in steganography + # Hackingtool Menu 🧰