Skip to content

Commit

Permalink
Fix bug parsing version number for newer hcxdumptool versions
Browse files Browse the repository at this point in the history
  • Loading branch information
v1s1t0r1sh3r3 committed Sep 11, 2024
1 parent d86cb6d commit 781f383
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
@@ -1,6 +1,7 @@
### 11.40
- Code refactor of the heredocs used for the Evil Twin, WEP and WPS attacks
- Standardize xterm parameters and adjust some colors to override the system's default settings
- Fixed bug parsing version number for newer hcxdumptool versions

### 11.31
- Fixed graphics system detection when launched on a headless system using remote X windows
Expand Down
2 changes: 1 addition & 1 deletion airgeddon.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14671,7 +14671,7 @@ function get_hcxdumptool_version() {

debug_print

hcxdumptool_version=$(hcxdumptool --version | awk '{print $2}')
hcxdumptool_version=$(hcxdumptool --version | awk 'NR == 1 {print $2}')
}

#Determine beef version
Expand Down

0 comments on commit 781f383

Please sign in to comment.