Fix hostapd bug with empty channel
This commit is contained in:
parent
3f031aaf34
commit
ee242d9aba
11
fluxion.sh
11
fluxion.sh
|
@ -1843,15 +1843,14 @@ fi
|
|||
function preattack {
|
||||
|
||||
# Check if channel is negative
|
||||
if [ $CHANNEL < 0 ];then
|
||||
CHANNEL=$(echo $(($CHANNEL*-1)))
|
||||
if [ "CHANNEL" = "" ];then
|
||||
CHANNEL=1
|
||||
fi
|
||||
|
||||
# Config HostAPD
|
||||
echo "interface=$WIFI
|
||||
driver=nl80211
|
||||
ssid=$Host_SSID
|
||||
channel=$Host_CHAN" > $DUMP_PATH/hostapd.conf
|
||||
driver=nl80211
|
||||
ssid=$Host_SSID
|
||||
channel=$Host_CHAN" > $DUMP_PATH/hostapd.conf
|
||||
|
||||
# Creates PHP
|
||||
echo "<?php
|
||||
|
|
Loading…
Reference in New Issue