Skip to content

Commit

Permalink
Fix error shown while checking if a handshake is wpa2 when wpa3 hands…
Browse files Browse the repository at this point in the history
…hake is captured
  • Loading branch information
v1s1t0r1sh3r3 committed Jul 1, 2024
1 parent a5674c7 commit 0f72cfb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
- Improvements on 5Ghz country code check and 5Ghz band capability detection on adapters
- Fixed bug to avoid set advanced captive portal on second time if is not desired after setting it previously
- Now channel is automatically updated on control window during "DoS pursuit mode" for all Evil Twin attacks
- Fixed error shown while checking if a handshake is wpa2 when wpa3 handshake is captured

### 11.22
- Possibility to add manually ESSID name for selected hidden networks
Expand Down
2 changes: 1 addition & 1 deletion airgeddon.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7996,7 +7996,7 @@ function check_bssid_in_captured_file() {

if [[ "${handshake_captured}" = "1" ]] || [[ "${pmkid_captured}" = "1" ]]; then
if [[ "${2}" = "showing_msgs_capturing" ]] || [[ "${2}" = "showing_msgs_checking" ]]; then
if ! is_wpa2_handshake "${1}" "${bssid}"; then
if ! is_wpa2_handshake "${1}" "${bssid}" > /dev/null 2>&1; then
echo
language_strings "${language}" 700 "red"
language_strings "${language}" 115 "read"
Expand Down

0 comments on commit 0f72cfb

Please sign in to comment.