diff --git a/tools/anonsurf.py b/tools/anonsurf.py index 0544fad..d2ff2df 100644 --- a/tools/anonsurf.py +++ b/tools/anonsurf.py @@ -30,6 +30,7 @@ class Multitor(HackingTool): "sudo git clone https://github.com/trimstray/multitor.git", "cd multitor;sudo bash setup.sh install" ] + RUN_COMMANDS = ["multitor --init 2 --user debian-tor --socks-port 9000 --control-port 9900 --proxy privoxy --haproxy"] PROJECT_URL = "https://github.com/trimstray/multitor" def __init__(self): diff --git a/tools/ddos.py b/tools/ddos.py index be19d5f..038b266 100644 --- a/tools/ddos.py +++ b/tools/ddos.py @@ -10,7 +10,7 @@ class SlowLoris(HackingTool): TITLE = "SlowLoris" DESCRIPTION = "Slowloris is basically an HTTP Denial of Service attack." \ "It send lots of HTTP Request" - INSTALL_COMMANDS = ["sudo pip install slowloris"] + INSTALL_COMMANDS = ["sudo pip3 install slowloris"] def run(self): target_site = input("Enter Target Site:- ") @@ -45,9 +45,9 @@ class UFONet(HackingTool): "More Usage Visit" INSTALL_COMMANDS = [ "sudo git clone https://github.com/epsylon/ufonet.git", - "cd ufonet;sudo python setup.py install" + "cd ufonet;sudo python3 setup.py install;sudo pip3 install GeoIP;sudo pip3 install python-geoip;sudo pip3 install pygeoip;sudo pip3 install requests;sudo pip3 install pycrypto;sudo pip3 install pycurl;sudo pip3 install whois;sudo pip3 install scapy-python3" ] - RUN_COMMANDS = ["sudo ./ufonet --gui"] + RUN_COMMANDS = ["sudo python3 ufonet --gui"] PROJECT_URL = "https://github.com/epsylon/ufonet" diff --git a/tools/exploit_frameworks.py b/tools/exploit_frameworks.py index b285095..da228b0 100644 --- a/tools/exploit_frameworks.py +++ b/tools/exploit_frameworks.py @@ -19,8 +19,10 @@ class RouterSploit(HackingTool): class WebSploit(HackingTool): TITLE = "WebSploit" DESCRIPTION = "Websploit is an advanced MITM framework." - INSTALL_COMMANDS = ["https://github.com/The404Hacking/websploit.git"] - RUN_COMMANDS = ["cd websploit;python3 websploit.py"] + INSTALL_COMMANDS = [ + "sudo git clone https://github.com/The404Hacking/websploit.git;cd websploit/Setup;sudo chmod +x install.sh && sudo bash install.sh" + ] + RUN_COMMANDS = ["sudo websploit"] PROJECT_URL = "https://github.com/The404Hacking/websploit " diff --git a/tools/information_gathering_tools.py b/tools/information_gathering_tools.py index 7d424c7..269a229 100644 --- a/tools/information_gathering_tools.py +++ b/tools/information_gathering_tools.py @@ -28,8 +28,9 @@ class Dracnmap(HackingTool): "exploit the network and gathering information with nmap help." INSTALL_COMMANDS = [ "sudo git clone https://github.com/Screetsec/Dracnmap.git", - "cd Dracnmap && chmod +x Dracnmap.sh" + "cd Dracnmap && chmod +x dracnmap-v2.2-dracOs.sh dracnmap-v2.2.sh" ] + RUN_COMMANDS = ["sudo ./dracnmap-v2.2.sh"] PROJECT_URL = "https://github.com/Screetsec/Dracnmap" def __init__(self): diff --git a/tools/others/android_attack.py b/tools/others/android_attack.py index 65bdb21..3c06381 100644 --- a/tools/others/android_attack.py +++ b/tools/others/android_attack.py @@ -40,7 +40,7 @@ class Droidcam(HackingTool): DESCRIPTION = "Powerful Tool For Grab Front Camera Snap Using A Link" INSTALL_COMMANDS = [ "sudo git clone https://github.com/kinghacker0/WishFish.git;" - "sudo apt install php wget openssh" + "sudo apt install php wget openssh-client" ] RUN_COMMANDS = ["cd wishfish && sudo bash wishfish.sh"] PROJECT_URL = "https://github.com/kinghacker0/WishFish" diff --git a/tools/others/socialmedia_finder.py b/tools/others/socialmedia_finder.py index ba1d27d..a8f029e 100644 --- a/tools/others/socialmedia_finder.py +++ b/tools/others/socialmedia_finder.py @@ -11,8 +11,10 @@ class FacialFind(HackingTool): DESCRIPTION = "A Social Media Mapping Tool that correlates profiles\n " \ "via facial recognition across different sites." INSTALL_COMMANDS = [ + "sudo apt install -y software-properties-common", "sudo add-apt-repository ppa:mozillateam/firefox-next && sudo apt update && sudo apt upgrade", "sudo git clone https://github.com/Greenwolf/social_mapper.git", + "sudo apt install -y build-essential cmake libgtk-3-dev libboost-all-dev", "cd social_mapper/setup", "sudo python3 -m pip install --no-cache-dir -r requirements.txt", 'echo "[!]Now You have To do some Manually\n' diff --git a/tools/others/wifi_jamming.py b/tools/others/wifi_jamming.py index 412e915..e2c5933 100644 --- a/tools/others/wifi_jamming.py +++ b/tools/others/wifi_jamming.py @@ -8,11 +8,11 @@ class WifiJammerNG(HackingTool): DESCRIPTION = "Continuously jam all wifi clients and access points within range." INSTALL_COMMANDS = [ "sudo git clone https://github.com/MisterBianco/wifijammer-ng.git", - "cd wifijammer-ng;sudo pip3 install -r requirements.txt" + "cd wifijammer-ng;sudo pip install -r requirements.txt" ] RUN_COMMANDS = [ 'echo "python wifijammer.py [-a AP MAC] [-c CHANNEL] [-d] [-i INTERFACE] [-m MAXIMUM] [-k] [-p PACKETS] [-s SKIP] [-t TIME INTERVAL] [-D]"| boxes | lolcat', - "cd wifijammer-ng;sudo python3 wifijammer.py" + "cd wifijammer-ng;sudo python wifijammer.py" ] PROJECT_URL = "https://github.com/MisterBianco/wifijammer-ng" @@ -25,7 +25,7 @@ class KawaiiDeauther(HackingTool): "sudo git clone https://github.com/aryanrtm/KawaiiDeauther.git", "cd KawaiiDeauther;sudo bash install.sh" ] - RUN_COMMANDS = ["cd KawaiiDeauther;sudo KawaiiDeauther.sh"] + RUN_COMMANDS = ["cd KawaiiDeauther;sudo bash KawaiiDeauther.sh"] PROJECT_URL = "https://github.com/aryanrtm/KawaiiDeauther" diff --git a/tools/payload_creator.py b/tools/payload_creator.py index 22ae29a..47b2e4b 100644 --- a/tools/payload_creator.py +++ b/tools/payload_creator.py @@ -101,11 +101,11 @@ class Spycam(HackingTool): DESCRIPTION = "Script to generate a Win32 payload that takes the webcam " \ "image every 1 minute and send it to the attacker" INSTALL_COMMANDS = [ - "sudo git clone https://github.com/thelinuxchoice/spycam.git", + "sudo git clone https://github.com/indexnotfound404/spycam.git", "cd spycam && bash install.sh && chmod +x spycam" ] RUN_COMMANDS = ["cd spycam && ./spycam"] - PROJECT_URL = "https://github.com/thelinuxchoice/spycam" + PROJECT_URL = "https://github.com/indexnotfound404/spycam" class MobDroid(HackingTool): @@ -114,7 +114,7 @@ class MobDroid(HackingTool): "easy way\n without typing long commands and save your time" INSTALL_COMMANDS = [ "git clone https://github.com/kinghacker0/mob-droid.git"] - RUN_COMMANDS = ["cd Mob-Droid;sudo python mob-droid.py"] + RUN_COMMANDS = ["cd mob-droid;sudo python mob-droid.py"] PROJECT_URL = "https://github.com/kinghacker0/Mob-Droid" @@ -123,7 +123,7 @@ class Enigma(HackingTool): DESCRIPTION = "Enigma is a Multiplatform payload dropper" INSTALL_COMMANDS = [ "sudo git clone https://github.com/UndeadSec/Enigma.git"] - RUN_COMMANDS = ["cd Enigma;sudo python3 enigma3.py"] + RUN_COMMANDS = ["cd Enigma;sudo python enigma.py"] PROJECT_URL = "https://github.com/UndeadSec/Enigma" diff --git a/tools/phising_attack.py b/tools/phising_attack.py index ae545a9..9b30a6c 100644 --- a/tools/phising_attack.py +++ b/tools/phising_attack.py @@ -10,8 +10,8 @@ class Setoolkit(HackingTool): DESCRIPTION = "The Social-Engineer Toolkit is an open-source penetration\n" \ "testing framework designed for social engineering" INSTALL_COMMANDS = [ - "git clone https://github.com/trustedsec/social-engineer-toolkit.git", - "sudo python social-engineer-toolkit/setup.py" + "git clone https://github.com/trustedsec/social-engineer-toolkit/", + "cd social-engineer-toolkit && sudo python3 setup.py" ] RUN_COMMANDS = ["sudo setoolkit"] PROJECT_URL = "https://github.com/trustedsec/social-engineer-toolkit" @@ -19,7 +19,7 @@ class Setoolkit(HackingTool): class SocialFish(HackingTool): TITLE = "SocialFish" - DESCRIPTION = "Automated Phishing Tool & Information Collector" + DESCRIPTION = "Automated Phishing Tool & Information Collector NOTE: username is 'root' and password is 'pass'" INSTALL_COMMANDS = [ "sudo git clone https://github.com/UndeadSec/SocialFish.git && sudo apt-get install python3 python3-pip python3-dev -y", "cd SocialFish && sudo python3 -m pip install -r requirements.txt" @@ -86,7 +86,7 @@ class QRJacking(HackingTool): TITLE = "QR Code Jacking" DESCRIPTION = "QR Code Jacking (Any Website)" INSTALL_COMMANDS = [ - "sudo git clone https://github.com/cryptedwolf/ohmyqr.git && sudo apt-get install scrot"] + "sudo git clone https://github.com/cryptedwolf/ohmyqr.git && sudo apt -y install scrot"] RUN_COMMANDS = ["cd ohmyqr && sudo bash ohmyqr.sh"] PROJECT_URL = "https://github.com/cryptedwolf/ohmyqr" diff --git a/tools/remote_administration.py b/tools/remote_administration.py index b5d7e0e..b8f226a 100644 --- a/tools/remote_administration.py +++ b/tools/remote_administration.py @@ -21,7 +21,7 @@ class Pyshell(HackingTool): DESCRIPTION = "Pyshell is a Rat Tool that can be able to download & upload " \ "files,\n Execute OS Command and more.." INSTALL_COMMANDS = [ - "sudo git clone https://github.com/khalednassar702/Pyshell.git;" + "sudo git clone https://github.com/knassar702/Pyshell.git;" "sudo pip install pyscreenshot python-nmap requests" ] RUN_COMMANDS = ["cd Pyshell;./Pyshell"] diff --git a/tools/reverse_engineering.py b/tools/reverse_engineering.py index 9972334..552f781 100644 --- a/tools/reverse_engineering.py +++ b/tools/reverse_engineering.py @@ -9,7 +9,7 @@ class AndroGuard(HackingTool): TITLE = "Androguard" DESCRIPTION = "Androguard is a Reverse engineering, Malware and goodware " \ "analysis of Android applications and more" - INSTALL_COMMANDS = ["sudo pip install -U androguard"] + INSTALL_COMMANDS = ["sudo pip3 install -U androguard"] PROJECT_URL = "https://github.com/androguard/androguard " def __init__(self): diff --git a/tools/webattack.py b/tools/webattack.py index b4e1b50..4ff2fa1 100644 --- a/tools/webattack.py +++ b/tools/webattack.py @@ -10,7 +10,7 @@ class Web2Attack(HackingTool): DESCRIPTION = "Web hacking framework with tools, exploits by python" INSTALL_COMMANDS = [ "sudo git clone https://github.com/santatic/web2attack.git"] - RUN_COMMANDS = ["cd web2attack && sudo bash w2aconsole"] + RUN_COMMANDS = ["cd web2attack && sudo python3 w2aconsole"] PROJECT_URL = "https://github.com/santatic/web2attack" diff --git a/tools/wireless_attack_tools.py b/tools/wireless_attack_tools.py index f508bdd..960413b 100644 --- a/tools/wireless_attack_tools.py +++ b/tools/wireless_attack_tools.py @@ -134,9 +134,9 @@ class Howmanypeople(HackingTool): "Please check your country's laws" INSTALL_COMMANDS = [ "sudo apt-get install tshark" - ";sudo pip install howmanypeoplearearound" + ";sudo python3 -m pip install howmanypeoplearearound" ] - RUN_COMMANDS = ["sudo howmanypeoplearearound"] + RUN_COMMANDS = ["howmanypeoplearearound"] class WirelessAttackTools(HackingToolsCollection): diff --git a/tools/xss_attack.py b/tools/xss_attack.py index 1797923..b93a888 100644 --- a/tools/xss_attack.py +++ b/tools/xss_attack.py @@ -36,7 +36,7 @@ class XSSFinder(HackingTool): TITLE = "Extended XSS Searcher and Finder" DESCRIPTION = "Extended XSS Searcher and Finder" INSTALL_COMMANDS = [ - "git glone https://github.com/Damian89/extended-xss-search.git"] + "git clone https://github.com/Damian89/extended-xss-search.git"] PROJECT_URL = "https://github.com/Damian89/extended-xss-search" def after_install(self): @@ -123,8 +123,9 @@ class RVuln(HackingTool): INSTALL_COMMANDS = [ "sudo git clone https://github.com/iinc0gnit0/RVuln.git;" "curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh;" - "source $HOME/.cargo/env", - "sudo apt install openssl-dev;sudo cp -r RVuln/ /usr/bin" + "source $HOME/.cargo/env;" + "sudo apt install librust-openssl-dev;" + "cd RVuln;sudo su;cargo build --release;mv target/release/RVuln" ] RUN_COMMANDS = ["RVuln"] PROJECT_URL = "https://github.com/iinc0gnit0/RVuln"