Loading tools/phising_attack.py +95 −7 Original line number Diff line number Diff line Loading @@ -4,11 +4,40 @@ import os from core import HackingTool from core import HackingToolsCollection class autophisher(HackingTool): TITLE = "Autophisher RK" DESCRIPTION = "Automated Phishing Toolkit" INSTALL_COMMANDS = [ "sudo git clone https://github.com/CodingRanjith/autophisher.git", "cd autophisher" ] RUN_COMMANDS = ["cd autophisher;sudo bash autophisher.sh"] PROJECT_URL = "https://github.com/CodingRanjith/autophisher" class Pyphisher(HackingTool): TITLE = "Pyphisher" DESCRIPTION = "Easy to use phishing tool with 77 website templates" INSTALL_COMMANDS = [ "sudo git clone https://github.com/KasRoudra/PyPhisher", "cd PyPhisher/files", "pip3 install -r requirements.txt" ] RUN_COMMANDS = ["cd PyPhisher;sudo python3 pyphisher.py"] PROJECT_URL = "git clone https://github.com/KasRoudra/PyPhisher" class AdvPhishing(HackingTool): TITLE = "AdvPhishing" DESCRIPTION = "This is Advance Phishing Tool ! OTP PHISHING" INSTALL_COMMANDS = [ "sudo git clone https://github.com/Ignitetch/AdvPhishing.git", "cd AdvPhishing;chmod 777 *;bash Linux-Setup.sh"] RUN_COMMANDS = ["cd AdvPhishing && sudo bash AdvPhishing.sh"] PROJECT_URL = "https://github.com/Ignitetch/AdvPhishing" class Setoolkit(HackingTool): TITLE = "Setoolkit" DESCRIPTION = "The Social-Engineer Toolkit is an open-source penetration\n" \ "testing framework designed for social engineering" "testing framework designed for social enginee" INSTALL_COMMANDS = [ "git clone https://github.com/trustedsec/social-engineer-toolkit/", "cd social-engineer-toolkit && sudo python3 setup.py" Loading @@ -32,7 +61,7 @@ class HiddenEye(HackingTool): TITLE = "HiddenEye" DESCRIPTION = "Modern Phishing Tool With Advanced Functionality And " \ "Multiple Tunnelling Services \n" \ "\t [!]https://github.com/Morsmalleo/HiddenEye" "\t [!]https://github.com/DarkSecDevelopers/HiddenEye" INSTALL_COMMANDS = [ "sudo git clone https://github.com/Morsmalleo/HiddenEye.git ;sudo chmod 777 HiddenEye", "cd HiddenEye;sudo pip3 install -r requirements.txt;sudo pip3 install requests;pip3 install pyngrok" Loading Loading @@ -61,7 +90,7 @@ class Evilginx2(HackingTool): class ISeeYou(HackingTool): TITLE = "I-See_You(Get Location using phishing attack)" TITLE = "I-See_You" DESCRIPTION = "[!] ISeeYou is a tool to find Exact Location of Victom By" \ " User SocialEngineering or Phishing Engagment..\n" \ "[!] Users can expose their local servers to the Internet " \ Loading @@ -75,7 +104,7 @@ class ISeeYou(HackingTool): class SayCheese(HackingTool): TITLE = "SayCheese (Grab target's Webcam Shots)" TITLE = "SayCheese" DESCRIPTION = "Take webcam shots from target just sending a malicious link" INSTALL_COMMANDS = ["sudo git clone https://github.com/hangetzzu/saycheese"] RUN_COMMANDS = ["cd saycheese && sudo bash saycheese.sh"] Loading @@ -90,14 +119,66 @@ class QRJacking(HackingTool): RUN_COMMANDS = ["cd ohmyqr && sudo bash ohmyqr.sh"] PROJECT_URL = "https://github.com/cryptedwolf/ohmyqr" class WifiPhisher(HackingTool): TITLE = "WifiPhisher" DESCRIPTION = "The Rogue Access Point Framework" INSTALL_COMMANDS = [ "sudo git clone https://github.com/wifiphisher/wifiphisher.git", "cd wifiphisher"] RUN_COMMANDS = ["cd wifiphisher && sudo python setup.py"] PROJECT_URL = "https://github.com/wifiphisher/wifiphisher" class BlackEye(HackingTool): TITLE = "BlackEye" DESCRIPTION = "The ultimate phishing tool with 38 websites available!" INSTALL_COMMANDS = [ "sudo git clone https://github.com/thelinuxchoice/blackeye", "cd blackeye "] RUN_COMMANDS = ["cd blackeye && sudo bash blackeye.sh"] PROJECT_URL = "https://github.com/An0nUD4Y/blackeye" class ShellPhish(HackingTool): TITLE = "ShellPhish" DESCRIPTION = "Fhishing Tool for 18 social media" DESCRIPTION = "Phishing Tool for 18 social media" INSTALL_COMMANDS = ["git clone https://github.com/An0nUD4Y/shellphish.git"] RUN_COMMANDS = ["cd shellphish;sudo bash shellphish.sh"] PROJECT_URL = "https://github.com/An0nUD4Y/shellphish" class Thanos(HackingTool): TITLE = "Thanos" DESCRIPTION = "Browser to Browser Phishingtoolkit" INSTALL_COMMANDS = [ "sudo git clone https://github.com/TridevReddy/Thanos.git", "cd Thanos && sudo chmod -R 777 Thanos.sh" ] RUN_COMMANDS = ["cd Thanos;sudo bash Thanos.sh"] PROJECT_URL = "https://github.com/TridevReddy/Thanos" class QRLJacking(HackingTool): TITLE = "QRLJacking" DESCRIPTION = "QRLJacking" INSTALL_COMMANDS = [ "git clone https://github.com/OWASP/QRLJacking.git", "cd QRLJacking", "git clone https://github.com/mozilla/geckodriver.git", "chmod +x geckodriver", "sudo mv -f geckodriver /usr/local/share/geckodriver", "sudo ln -s /usr/local/share/geckodriver /usr/local/bin/geckodriver", "sudo ln -s /usr/local/share/geckodriver /usr/bin/geckodriver", "cd QRLJacker;pip3 install -r requirements.txt" ] RUN_COMMANDS = ["cd QRLJacking/QRLJacker;python3 QrlJacker.py"] PROJECT_URL = "https://github.com/OWASP/QRLJacking" class Maskphish(HackingTool): TITLE = "Miskphish" DESCRIPTION = "Hide phishing URL under a normal looking URL (google.com or facebook.com)" INSTALL_COMMANDS = [ "sudo git clone https://github.com/jaykali/maskphish.git", "cd maskphish"] RUN_COMMANDS = ["cd maskphish;sudo bash maskphish.sh"] PROJECT_URL = "https://github.com/jaykali/maskphish" class BlackPhish(HackingTool): TITLE = "BlackPhish" Loading @@ -118,6 +199,9 @@ class BlackPhish(HackingTool): class PhishingAttackTools(HackingToolsCollection): TITLE = "Phishing attack tools" TOOLS = [ autophisher(), Pyphisher(), AdvPhishing(), Setoolkit(), SocialFish(), HiddenEye(), Loading @@ -125,6 +209,10 @@ class PhishingAttackTools(HackingToolsCollection): ISeeYou(), SayCheese(), QRJacking(), BlackEye(), ShellPhish(), BlackPhish() Thanos(), QRLJacking(), BlackPhish(), Maskphish() ] Loading
tools/phising_attack.py +95 −7 Original line number Diff line number Diff line Loading @@ -4,11 +4,40 @@ import os from core import HackingTool from core import HackingToolsCollection class autophisher(HackingTool): TITLE = "Autophisher RK" DESCRIPTION = "Automated Phishing Toolkit" INSTALL_COMMANDS = [ "sudo git clone https://github.com/CodingRanjith/autophisher.git", "cd autophisher" ] RUN_COMMANDS = ["cd autophisher;sudo bash autophisher.sh"] PROJECT_URL = "https://github.com/CodingRanjith/autophisher" class Pyphisher(HackingTool): TITLE = "Pyphisher" DESCRIPTION = "Easy to use phishing tool with 77 website templates" INSTALL_COMMANDS = [ "sudo git clone https://github.com/KasRoudra/PyPhisher", "cd PyPhisher/files", "pip3 install -r requirements.txt" ] RUN_COMMANDS = ["cd PyPhisher;sudo python3 pyphisher.py"] PROJECT_URL = "git clone https://github.com/KasRoudra/PyPhisher" class AdvPhishing(HackingTool): TITLE = "AdvPhishing" DESCRIPTION = "This is Advance Phishing Tool ! OTP PHISHING" INSTALL_COMMANDS = [ "sudo git clone https://github.com/Ignitetch/AdvPhishing.git", "cd AdvPhishing;chmod 777 *;bash Linux-Setup.sh"] RUN_COMMANDS = ["cd AdvPhishing && sudo bash AdvPhishing.sh"] PROJECT_URL = "https://github.com/Ignitetch/AdvPhishing" class Setoolkit(HackingTool): TITLE = "Setoolkit" DESCRIPTION = "The Social-Engineer Toolkit is an open-source penetration\n" \ "testing framework designed for social engineering" "testing framework designed for social enginee" INSTALL_COMMANDS = [ "git clone https://github.com/trustedsec/social-engineer-toolkit/", "cd social-engineer-toolkit && sudo python3 setup.py" Loading @@ -32,7 +61,7 @@ class HiddenEye(HackingTool): TITLE = "HiddenEye" DESCRIPTION = "Modern Phishing Tool With Advanced Functionality And " \ "Multiple Tunnelling Services \n" \ "\t [!]https://github.com/Morsmalleo/HiddenEye" "\t [!]https://github.com/DarkSecDevelopers/HiddenEye" INSTALL_COMMANDS = [ "sudo git clone https://github.com/Morsmalleo/HiddenEye.git ;sudo chmod 777 HiddenEye", "cd HiddenEye;sudo pip3 install -r requirements.txt;sudo pip3 install requests;pip3 install pyngrok" Loading Loading @@ -61,7 +90,7 @@ class Evilginx2(HackingTool): class ISeeYou(HackingTool): TITLE = "I-See_You(Get Location using phishing attack)" TITLE = "I-See_You" DESCRIPTION = "[!] ISeeYou is a tool to find Exact Location of Victom By" \ " User SocialEngineering or Phishing Engagment..\n" \ "[!] Users can expose their local servers to the Internet " \ Loading @@ -75,7 +104,7 @@ class ISeeYou(HackingTool): class SayCheese(HackingTool): TITLE = "SayCheese (Grab target's Webcam Shots)" TITLE = "SayCheese" DESCRIPTION = "Take webcam shots from target just sending a malicious link" INSTALL_COMMANDS = ["sudo git clone https://github.com/hangetzzu/saycheese"] RUN_COMMANDS = ["cd saycheese && sudo bash saycheese.sh"] Loading @@ -90,14 +119,66 @@ class QRJacking(HackingTool): RUN_COMMANDS = ["cd ohmyqr && sudo bash ohmyqr.sh"] PROJECT_URL = "https://github.com/cryptedwolf/ohmyqr" class WifiPhisher(HackingTool): TITLE = "WifiPhisher" DESCRIPTION = "The Rogue Access Point Framework" INSTALL_COMMANDS = [ "sudo git clone https://github.com/wifiphisher/wifiphisher.git", "cd wifiphisher"] RUN_COMMANDS = ["cd wifiphisher && sudo python setup.py"] PROJECT_URL = "https://github.com/wifiphisher/wifiphisher" class BlackEye(HackingTool): TITLE = "BlackEye" DESCRIPTION = "The ultimate phishing tool with 38 websites available!" INSTALL_COMMANDS = [ "sudo git clone https://github.com/thelinuxchoice/blackeye", "cd blackeye "] RUN_COMMANDS = ["cd blackeye && sudo bash blackeye.sh"] PROJECT_URL = "https://github.com/An0nUD4Y/blackeye" class ShellPhish(HackingTool): TITLE = "ShellPhish" DESCRIPTION = "Fhishing Tool for 18 social media" DESCRIPTION = "Phishing Tool for 18 social media" INSTALL_COMMANDS = ["git clone https://github.com/An0nUD4Y/shellphish.git"] RUN_COMMANDS = ["cd shellphish;sudo bash shellphish.sh"] PROJECT_URL = "https://github.com/An0nUD4Y/shellphish" class Thanos(HackingTool): TITLE = "Thanos" DESCRIPTION = "Browser to Browser Phishingtoolkit" INSTALL_COMMANDS = [ "sudo git clone https://github.com/TridevReddy/Thanos.git", "cd Thanos && sudo chmod -R 777 Thanos.sh" ] RUN_COMMANDS = ["cd Thanos;sudo bash Thanos.sh"] PROJECT_URL = "https://github.com/TridevReddy/Thanos" class QRLJacking(HackingTool): TITLE = "QRLJacking" DESCRIPTION = "QRLJacking" INSTALL_COMMANDS = [ "git clone https://github.com/OWASP/QRLJacking.git", "cd QRLJacking", "git clone https://github.com/mozilla/geckodriver.git", "chmod +x geckodriver", "sudo mv -f geckodriver /usr/local/share/geckodriver", "sudo ln -s /usr/local/share/geckodriver /usr/local/bin/geckodriver", "sudo ln -s /usr/local/share/geckodriver /usr/bin/geckodriver", "cd QRLJacker;pip3 install -r requirements.txt" ] RUN_COMMANDS = ["cd QRLJacking/QRLJacker;python3 QrlJacker.py"] PROJECT_URL = "https://github.com/OWASP/QRLJacking" class Maskphish(HackingTool): TITLE = "Miskphish" DESCRIPTION = "Hide phishing URL under a normal looking URL (google.com or facebook.com)" INSTALL_COMMANDS = [ "sudo git clone https://github.com/jaykali/maskphish.git", "cd maskphish"] RUN_COMMANDS = ["cd maskphish;sudo bash maskphish.sh"] PROJECT_URL = "https://github.com/jaykali/maskphish" class BlackPhish(HackingTool): TITLE = "BlackPhish" Loading @@ -118,6 +199,9 @@ class BlackPhish(HackingTool): class PhishingAttackTools(HackingToolsCollection): TITLE = "Phishing attack tools" TOOLS = [ autophisher(), Pyphisher(), AdvPhishing(), Setoolkit(), SocialFish(), HiddenEye(), Loading @@ -125,6 +209,10 @@ class PhishingAttackTools(HackingToolsCollection): ISeeYou(), SayCheese(), QRJacking(), BlackEye(), ShellPhish(), BlackPhish() Thanos(), QRLJacking(), BlackPhish(), Maskphish() ]