From 3abd660aef7b118156dc9b52f9c4b332847c752b Mon Sep 17 00:00:00 2001 From: Greatest125 <66028078+Greatest125@users.noreply.github.com> Date: Sat, 26 Dec 2020 17:18:49 +0000 Subject: [PATCH] updated bluepot install to v0.2 and fixed formatting --- tools/wireless_attack_tools.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tools/wireless_attack_tools.py b/tools/wireless_attack_tools.py index be2f844..a9bf639 100644 --- a/tools/wireless_attack_tools.py +++ b/tools/wireless_attack_tools.py @@ -48,15 +48,15 @@ class pixiewps(HackingTool): class BluePot(HackingTool): TITLE = "Bluetooth Honeypot GUI Framework" - DESCRIPTION = "You need to have at least 1 bluetooh receiver " \ - "(if you have many it will work with those, too).\n" \ - "You must install/libbluetooth-dev on " \ + DESCRIPTION = "You need to have at least 1 bluetooh receiver " \n + "(if you have many it will work with those, too).\n" \n + "You must install/libbluetooth-dev on " \n "Ubuntu/bluez-libs-devel on Fedora/bluez-devel on openSUSE" INSTALL_COMMANDS = [ - "wget https://github.com/andrewmichaelsmith/bluepot/raw/master/bin/bluepot-0.1.tar.gz " - "&& tar xfz bluepot-0.1.tar.gz && sudo java -jar bluepot/BluePot-0.1.jar" + "wget https://github.com/andrewmichaelsmith/bluepot/raw/master/bin/bluepot-0.2.tar.gz" + "sudo tar xfz bluepot-0.2.tar.gz" ] - RUN_COMMANDS = ["cd bluepot-0.1 && sudo java -jar bluepot/BluePot-0.1.jar"] + RUN_COMMANDS = ["cd bluepot && sudo java -jar bluepot.jar"] PROJECT_URL = "https://github.com/andrewmichaelsmith/bluepot"