Open
Conversation
#!/bin/bash ############################################################################ # CREDITS BEGIN ######################################################## ############################################################################ # Uses parts of the aircrack-ng suite, reaver, wifite, and many other tools ############################################################################ # CREDITS END ########################################################## ############################################################################ ############################################################################ # VERSION HISTORY BEGIN ################################################ ############################################################################ # v2.0 # - Added support for new Gnome terminal options. Tested in Kali 2018.4 # v1.9 # - Added support for Wash. Currently used for dumping scan info out to text. # - Added "Bruteforce Hidden SSID Options" To Extras Menu and updated bruteforceHiddenSSID() Function. # - Updated Menu Navigation to restrict from entering Extras Menu until after a wireless adapter has been selected. # - Configured updates with new coloring, and now will only update if remote version is higher than local version. # - Cleaned up code for doSleepMessage() Function. Now takes 3 arguments, "message", "time", and "color". # - Updated Extras Menu. Added wpa_supplicant enable and disable options. Updated wpa_cli options. # - Updated Reaver save session to only save a backup if current session file exists. # - Fixed and updated Reaver output post screen that was broken in the last release version. # v1.8 # - Cleaned up scripting and moved all global hotkey triggers to a loadMenuHotkeys Function. # - Added a bruteforceHiddenSSID() Function to handle hidden SSID name reveals. # - Added logging to XML file from airodump-ng when scanning Access Points for all encryption types. # - Added automatic 10 second timeout for Update Menu to continue to main menu for attacking. # - Fixed Update Menu. "Check For Update" and "Apply New Update" are now functional. # - Update Menu now loads automatically after accepting license agreement. # - Added support for parsing network adapter names for displaying when selecting adapter to use. # - Added a check for PixieWPS attacks. If failed, will now default to normal Reaver attack. # v1.7 # - Currently supports up to 10 wifi adapters. # - Changed hotkey for "Manual Adapter Entry" from "M" to "C", because of conflicting with main menu hotkey # - Added adapter check after disclaimer is agreed, so the main menu will show the correct number of adapters. # - Updated "killCounterMax" to use "interfacesFound" value for "stopMonitorMode()" function # - Added "checkMultipleAdapters" Function # - Added number of interfaces displayed on stats banner. # - Fixed "Interface Name" on stats banner. # - Updated airodump-ng scripting for several functions. # - Fixed PixieDust toggles. They were reversed, disable turned on and vice/versa. # - Updated airodump-ng windows to only scan for the encryption type that is currently being targeted. # v1.6 # - Added a "forceDisconnectWiFi" function to help fix active internet connection issues. # - Changed the handling of "WiFi Force Disconnect". Now, after accepting the agreement, the main menu will only load if the connection status is "0". If the status is "1", meaning the WiFi is connected to an access point, the "forceDisconnectWiFi" and "checkNetworkStatus" functions are called until the connection is released. This allows for better control of correcting errors resulting in having an active network connection. # - Added "ifconfig" and "iwconfig" output to Extras Interface Menu # - Merged "checkForEmptyBSSID", "checkForEmptyESSID", and "checkForEmptyChannel" into "checkForEmptyCredentials" function. # - Removed "arAttackDeAuthOnRetry" function. This was a duplicate and now uses "arAttackDeAuth" function instead. # -
mateussilva03
approved these changes
Dec 18, 2020
|
Download |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
#!/bin/bash
############################################################################
CREDITS BEGIN
############################################################################
Uses parts of the aircrack-ng suite, reaver, wifite, and many other tools
############################################################################
CREDITS END
############################################################################
############################################################################
VERSION HISTORY BEGIN
############################################################################
v2.0
- Added support for new Gnome terminal options. Tested in Kali 2018.4
v1.9
- Added support for Wash. Currently used for dumping scan info out to text.
- Added "Bruteforce Hidden SSID Options" To Extras Menu and updated bruteforceHiddenSSID() Function.
- Updated Menu Navigation to restrict from entering Extras Menu until after a wireless adapter has been selected.
- Configured updates with new coloring, and now will only update if remote version is higher than local version.
- Cleaned up code for doSleepMessage() Function. Now takes 3 arguments, "message", "time", and "color".
- Updated Extras Menu. Added wpa_supplicant enable and disable options. Updated wpa_cli options.
- Updated Reaver save session to only save a backup if current session file exists.
- Fixed and updated Reaver output post screen that was broken in the last release version.
v1.8
- Cleaned up scripting and moved all global hotkey triggers to a loadMenuHotkeys Function.
- Added a bruteforceHiddenSSID() Function to handle hidden SSID name reveals.
- Added logging to XML file from airodump-ng when scanning Access Points for all encryption types.
- Added automatic 10 second timeout for Update Menu to continue to main menu for attacking.
- Fixed Update Menu. "Check For Update" and "Apply New Update" are now functional.
- Update Menu now loads automatically after accepting license agreement.
- Added support for parsing network adapter names for displaying when selecting adapter to use.
- Added a check for PixieWPS attacks. If failed, will now default to normal Reaver attack.
v1.7
- Currently supports up to 10 wifi adapters.
- Changed hotkey for "Manual Adapter Entry" from "M" to "C", because of conflicting with main menu hotkey
- Added adapter check after disclaimer is agreed, so the main menu will show the correct number of adapters.
- Updated "killCounterMax" to use "interfacesFound" value for "stopMonitorMode()" function
- Added "checkMultipleAdapters" Function
- Added number of interfaces displayed on stats banner.
- Fixed "Interface Name" on stats banner.
- Updated airodump-ng scripting for several functions.
- Fixed PixieDust toggles. They were reversed, disable turned on and vice/versa.
- Updated airodump-ng windows to only scan for the encryption type that is currently being targeted.
v1.6
- Added a "forceDisconnectWiFi" function to help fix active internet connection issues.
- Changed the handling of "WiFi Force Disconnect". Now, after accepting the agreement, the main menu will only load if the connection status is "0". If the status is "1", meaning the WiFi is connected to an access point, the "forceDisconnectWiFi" and "checkNetworkStatus" functions are called until the connection is released. This allows for better control of correcting errors resulting in having an active network connection.
- Added "ifconfig" and "iwconfig" output to Extras Interface Menu
- Merged "checkForEmptyBSSID", "checkForEmptyESSID", and "checkForEmptyChannel" into "checkForEmptyCredentials" function.
- Removed "arAttackDeAuthOnRetry" function. This was a duplicate and now uses "arAttackDeAuth" function instead.
-