fluxion/lib/ap/airbase-ng.sh

48 lines
1.1 KiB
Bash
Raw Normal View History

#!/bin/bash
VIGW="at0"
VIAP=$WIAccessPoint
#APServiceAuthenticationMethods=("hash" "wpa_supplicant")
#APServiceAuthenticationMethodsInfo=("(handshake, recommended)" "(connection, slow)")
# airbase-ng uses a monitor-mode virtual interface
# and creates a separate interface, atX, for dhcpd.
VIAPAddress="$VIGWNetwork.2"
VIAPRouteDelay=5
2017-08-09 19:33:17 -06:00
#APServiceConfPath="$FLUXIONWorkspacePath/APService.conf"
function ap_stop() {
killall airbase-ng &> $FLUXIONOutputDevice
local FLUXIONAPService=$(ps a | grep -e "FLUXION AP Service" | awk '{print $1'})
if [ "$FLUXIONAPService" ]; then
kill $FLUXIONAPService &> $FLUXIONOutputDevice
fi
}
function ap_reset() {
ap_stop
}
function ap_route() {
ifconfig $VIAP $VIAPAddress netmask 255.255.255.0
sysctl net.ipv6.conf.at0.disable_ipv6=1 &> $FLUXIONOutputDevice
}
function ap_prep() {
ap_stop
# Spoof virtual interface MAC address.
# This is done by airbase-ng automatically.
}
function ap_start() {
xterm $BOTTOMRIGHT -bg "#000000" -fg "#FFFFFF" -title "FLUXION AP Service [airbase-ng]" -e airbase-ng -P -e $APTargetSSID -c $APTargetChannel -a $APRogueMAC $VIAP &
sleep $VIAPRouteDelay; ap_route
}
# FLUXSCRIPT END