1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
#!/bin/sh
# Aireplay-ng: broadcast deauth
if test ! -z "${CI}"; then exit 77; fi
# Load helper functions
. "${abs_builddir}/../test/int-test-common.sh"
# Check root
check_root
# Check all required tools are installed
check_airmon_ng_deps_present
is_tool_present tcpdump
# Check for interfering processes
airmon_ng_check
trap cleanup INT QUIT SEGV PIPE ALRM TERM EXIT
# Load mac80211_hwsim
load_module 1
# Check there are two radios
check_radios_present 1
# Get interfaces names
get_hwsim_interface_name 1
WI_IFACE=${IFACE}
# Put other interface in monitor mode
set_monitor_mode ${WI_IFACE}
[ $? -eq 1 ] && exit 1
set_interface_channel ${WI_IFACE} 1
[ $? -eq 1 ] && exit 1
# Check it is in monitor mode
[ -z "$(iw dev ${WI_IFACE} info | ${GREP} 'type monitor')" ] && exit 1
# Start tcpdump capture in the background
TCPDUMP_IFACE=${WI_IFACE}
run_tcpdump
# Next test is directed
AP_MAC="00:11:22:33:44:55"
"${abs_builddir}/../aireplay-ng${EXEEXT}" \
-0 1 \
-a ${AP_MAC} \
-D \
${WI_IFACE} \
2>&1 >/dev/null
# Wait a second
sleep 2
# Kill tcpdump
kill_tcpdump
# Count packets
AMOUNT_PACKETS=$(tcpdump -r ${TEMP_TCPDUMP_PCAP} 2>/dev/null | ${GREP} "DeAuthentication (${AP_MAC}" | wc -l)
# There should be exactly 256 deauth
[ ${AMOUNT_PACKETS} -eq 256 ] && exit 0
echo "Invalid amount of deauth (${AMOUNT_PACKETS}), expected 256"
exit 1
|