From bc6e98b1679bad9bb24f339b667d81456b5632a9 Mon Sep 17 00:00:00 2001 From: HellAmbro Date: Mon, 28 Dec 2020 19:53:23 +0100 Subject: [PATCH] Updated Fluxion --- tools/wireless_attack_tools.py | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/tools/wireless_attack_tools.py b/tools/wireless_attack_tools.py index 960413b..6dfa1b8 100644 --- a/tools/wireless_attack_tools.py +++ b/tools/wireless_attack_tools.py @@ -62,15 +62,13 @@ class BluePot(HackingTool): class Fluxion(HackingTool): TITLE = "Fluxion" - DESCRIPTION = "Fluxion is a wifi key cracker using evil twin attack..\n" \ - "you need a wireless adaptor for this tool" + DESCRIPTION = "Fluxion is a remake of linset by vk496 with enhanced functionality." INSTALL_COMMANDS = [ - "git clone https://github.com/thehackingsage/Fluxion.git", - "cd Fluxion && cd install && sudo chmod +x install.sh && sudo bash install.sh", - "cd .. ; sudo chmod +x fluxion.sh" + "git clone https://github.com/FluxionNetwork/fluxion.git", + "cd fluxion && sudo chmod +x fluxion.sh", ] - RUN_COMMANDS = ["cd Fluxion;sudo bash fluxion.sh"] - PROJECT_URL = "https://github.com/thehackingsage/Fluxion" + RUN_COMMANDS = ["cd fluxion;sudo bash fluxion.sh -i"] + PROJECT_URL = "https://github.com/FluxionNetwork/fluxion" class Wifiphisher(HackingTool):