Add files via upload
This commit is contained in:
parent
252112f40f
commit
30e071d323
17
dev/fluxion
17
dev/fluxion
|
@ -2,9 +2,7 @@
|
||||||
|
|
||||||
########## DEBUG Mode ##########
|
########## DEBUG Mode ##########
|
||||||
## ##
|
## ##
|
||||||
if [ -z ${FLUX_DEBUG+x} ]; then FLUX_DEBUG=0
|
FLUX_DEBUG=1
|
||||||
else FLUX_DEBUG=1
|
|
||||||
fi
|
|
||||||
## ##
|
## ##
|
||||||
################################
|
################################
|
||||||
|
|
||||||
|
@ -24,7 +22,7 @@ ipNmap=`ifconfig | sed -En 's/127.0.0.1//;s/.*inet (addr:)?(([0-9]*\.){3}[0-9]*)
|
||||||
# Deauth duration during handshake capture
|
# Deauth duration during handshake capture
|
||||||
# oo
|
# oo
|
||||||
DEAUTHTIME="15"
|
DEAUTHTIME="15"
|
||||||
revision=54
|
revision=55
|
||||||
version=0.23
|
version=0.23
|
||||||
IP=192.168.1.1
|
IP=192.168.1.1
|
||||||
RANG_IP=$(echo $IP | cut -d "." -f 1,2,3)
|
RANG_IP=$(echo $IP | cut -d "." -f 1,2,3)
|
||||||
|
@ -1053,6 +1051,17 @@ function chinese {
|
||||||
}
|
}
|
||||||
# Choose Interface
|
# Choose Interface
|
||||||
function setinterface {
|
function setinterface {
|
||||||
|
|
||||||
|
Sites="~/fluxion/dev/Sites"
|
||||||
|
airmonfile="~/fluxion/dev/airmon"
|
||||||
|
if [ ! -d "$Sites" ]; then
|
||||||
|
cp -r ~/fluxion/Sites ~/fluxion/stable/ &>$flux_output_device
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -f "$airmonfile" ]; then
|
||||||
|
cp -r ~/fluxion/airmon ~/fluxion/stable/ &>$flux_output_device
|
||||||
|
fi
|
||||||
|
|
||||||
conditional_clear
|
conditional_clear
|
||||||
top
|
top
|
||||||
#unblock interfaces
|
#unblock interfaces
|
||||||
|
|
Loading…
Reference in New Issue