diff --git a/CHANGELOG.md b/CHANGELOG.md index 4033f1828..b38dd439f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ - Possibility to add manually ESSID name for selected hidden networks - Improvement on process killing on Evil Twin attacks - Add WPS version to network selection menu for WPS networks - - Reordered networks on WPS network selection menu, now better received at the end to avoid scrolling + - Reordered networks on network selection menus (standard and WPS), now networks with the strongest received signal will be placed last to avoid scrolling - Fixed small bug on Evil Twin captive portal attack for passwords containing more than one space char ### 11.21 diff --git a/airgeddon.sh b/airgeddon.sh index fa67594a5..581f61ca7 100755 --- a/airgeddon.sh +++ b/airgeddon.sh @@ -13340,7 +13340,7 @@ function explore_for_targets_option() { return 1 fi - sort -t "," -d -k 4 "${tmpdir}nws.txt" > "${tmpdir}wnws.txt" + sort -t "," -d -k 3 "${tmpdir}nws.txt" > "${tmpdir}wnws.txt" select_target }