Merge pull request #470 from djmeero/patch-1
Fix clients not appearing in Captive Portal attack, as described in Issue #393, provided by @djmeero.
This commit is contained in:
commit
791ce4da4e
|
@ -869,7 +869,7 @@ while [ \$AuthenticatorState = \"running\" ]; do
|
|||
|
||||
local -r staticSSID=$(printf "%q" "$FluxionTargetSSID" | sed -r 's/\\\ / /g' | sed -r "s/\\\'/\'/g")
|
||||
echo "
|
||||
DHCPClients=($(nmap -PR -sn -n -oG - $CaptivePortalGatewayNetwork.100-110 2>&1 | grep Host))
|
||||
readarray -t DHCPClients < <(nmap -PR -sn -n -oG - $CaptivePortalGatewayNetwork.100-110 2>&1 | grep Host)
|
||||
|
||||
echo
|
||||
echo -e \" ACCESS POINT:\"
|
||||
|
|
Loading…
Reference in New Issue