Fixed a performance issue with the authenticator.

This commit is contained in:
Matias Barcenas 2017-08-20 14:04:22 -05:00
parent 6eee215708
commit 9a1464fda4
1 changed files with 8 additions and 8 deletions

View File

@ -470,13 +470,13 @@ while [ \$AuthenticatorState = \"running\" ]; do
echo echo
echo -e \" ACCESS POINT:\" echo -e \" ACCESS POINT:\"
echo -e \" SSID ...........: "$CWht"$APTargetSSID"$CClr"\" echo -e \" SSID ...........: $CWht$APTargetSSID$CClr\"
echo -e \" MAC ............: "$CYel"$APTargetMAC"$CClr"\" echo -e \" MAC ............: $CYel$APTargetMAC$CClr\"
echo -e \" Channel ........: "$CWht"$APTargetChannel"$CClr"\" echo -e \" Channel ........: $CWht$APTargetChannel$CClr\"
echo -e \" Vendor .........: "$CGrn"${APTargetMaker:-UNKNOWN}"$CClr"\" echo -e \" Vendor .........: $CGrn${APTargetMaker:-UNKNOWN}$CClr\"
echo -e \" Runtime ........: "$CBlu"\$ih\$h:\$im\$m:\$is\$s"$CClr"\" echo -e \" Runtime ........: $CBlu\$ih\$h:\$im\$m:\$is\$s$CClr\"
echo -e \" Attempts .......: "$CRed"\$(cat $FLUXIONWorkspacePath/hit.txt)"$CClr"\" echo -e \" Attempts .......: $CRed\$(cat $FLUXIONWorkspacePath/hit.txt)$CClr\"
echo -e \" Clients ........: "$CBlu"\$(nmap -sn -n 192.168.254.1/24 | grep 192 | grep -v 192.168.24.1 | wc -l )"$CClr"\" echo -e \" Clients ........: $CBlu\$(cat $FLUXIONWorkspacePath/clients.txt | grep DHCPACK | awk '{print \$5}' | sort| uniq | wc -l)$CClr\"
echo echo
echo -e \" CLIENTS ONLINE:\" echo -e \" CLIENTS ONLINE:\"
@ -829,7 +829,7 @@ function start_attack() {
fuser -n udp -k 53 67 80 443 &> $FLUXIONOutputDevice fuser -n udp -k 53 67 80 443 &> $FLUXIONOutputDevice
echo -e "$FLUXIONVLine $CaptivePortalStartingDHCPServiceNotice" echo -e "$FLUXIONVLine $CaptivePortalStartingDHCPServiceNotice"
xterm -bg black -fg green $TOPLEFT -title "FLUXION AP DHCP Service" -e dhcpd -d -f -lf "$FLUXIONWorkspacePath/dhcpd.leases" -cf "$FLUXIONWorkspacePath/dhcpd.conf" $VIGW 2>&1 | tee -a "$FLUXIONWorkspacePath/clients.txt" & xterm -bg black -fg green $TOPLEFT -title "FLUXION AP DHCP Service" -e "dhcpd -d -f -lf \"$FLUXIONWorkspacePath/dhcpd.leases\" -cf \"$FLUXIONWorkspacePath/dhcpd.conf\" $VIGW 2>&1 | tee -a \"$FLUXIONWorkspacePath/clients.txt\"" &
echo -e "$FLUXIONVLine $CaptivePortalStartingDNSServiceNotice" echo -e "$FLUXIONVLine $CaptivePortalStartingDNSServiceNotice"
xterm $BOTTOMLEFT -bg "#000000" -fg "#99CCFF" -title "FLUXION AP DNS Service" -e "if type python2 >/dev/null 2>/dev/null; then python2 \"$FLUXIONWorkspacePath/fluxion_captive_portal_dns\"; else python \"$FLUXIONWorkspacePath/fluxion_captive_portal_dns\"; fi" & xterm $BOTTOMLEFT -bg "#000000" -fg "#99CCFF" -title "FLUXION AP DNS Service" -e "if type python2 >/dev/null 2>/dev/null; then python2 \"$FLUXIONWorkspacePath/fluxion_captive_portal_dns\"; else python \"$FLUXIONWorkspacePath/fluxion_captive_portal_dns\"; fi" &