WIFI
Introduction
Capture and analysis of network traffic
Open network
# Obtain the data
sudo airodump-ng <MON_IF> -c <CHANNEL> --bssid <TARGET_BSSID> -w <FILE_PREFIX>
# Filter data
seq -f %02g 1 <#CAP_FILES> | xargs -I {} bash -c "airdecap-ng -b <TARGET_BSSID> <FILE_PREFIX>-{}.cap -o /tmp/filtered_{}.cap"
# Append filtered data
mergecap -a /tmp/filtered_*.cap -w open.capWPA-PSK
Exposed network admin panels
Captive portal
Web page
Unauthenticated access to other network segments
Outside traffic allowed
References
Last updated