Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Incorperate EvilApp v2 into hackingtool #453

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 10 additions & 1 deletion tools/others/android_attack.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,14 @@ class EvilApp(HackingTool):
RUN_COMMANDS = ["cd EvilApp && bash evilapp.sh"]
PROJECT_URL = "https://github.com/crypticterminal/EvilApp"

class EvilAppv2(HackingTool):
TITLE = "EvilAppv2 (Hijack Session)"
DESCRIPTION = "EvilApp v2 is a updated script to generate Android App that can "
"hijack authenticated sessions in cookies."
INSTALL_COMMANDS = [
"sudo git clone https://github.com/SoundPhoenix/EvilApp-v2.git"]
RUN_COMMANDS = ["cd EvilApp-v2 && bash evilappv2-.sh"]
PROJECT_URL = "https://github.com/SoundPhoenix/EvilApp-v2"

class AndroidAttackTools(HackingToolsCollection):
TITLE = "Android Hacking tools"
Expand All @@ -63,5 +71,6 @@ class AndroidAttackTools(HackingToolsCollection):
MySMS(),
LockPhish(),
Droidcam(),
EvilApp()
EvilApp(),
EvilAppv2()
]
13 changes: 11 additions & 2 deletions tools/others/socialmedia.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,21 @@ class AppCheck(HackingTool):
RUN_COMMANDS = ["cd underhanded;sudo bash underhanded.sh"]
PROJECT_URL = "https://github.com/jakuta-tech/underhanded"


class SnapHack(HackingTool):
TITLE = "SnapHack"
DESCRIPTION = "Snapchat account hacking tool..Snapchat was programmed by Skar Hack"
INSTALL_COMMANDS = [
"sudo git clone https://github.com/skar44/SnapHack.git",
"cd SnapHack && sudo chmod +x Snaphack.sh"
]
RUN_COMMANDS = ["cd SnapHack;sudo bash Snaphack.sh"]
PROJECT_URL = "https://github.com/skar44/Snaphack/"
class SocialMediaBruteforceTools(HackingToolsCollection):
TITLE = "SocialMedia Bruteforce"
TOOLS = [
InstaBrute(),
BruteForce(),
Faceshell(),
AppCheck()
AppCheck(),
SnapHack()
]