Tip: If anyone want to speed up the lecture videos a little, inspect
the page, go to the browser console, and paste this in:
document.querySelector('video').playbackRate = 1.2
1.2 Tasks
Include 802.11 wireshark lab
demo on this page somewhere.
convert/import old slides
https://xkcd.com/654/
Demo in class:
wireless capture using usb-nic to be viewed in wireshark
https://wiki.wireshark.org/CaptureSetup/WLAN
#!/bin/bash# Note: ifconfig is deprecated; use ip# Note: iwconfig is deprecated; use iw# see devicesiw dev# put in monitor modesudo ip link set wlan0 downsudo iw dev wlan0 set type monitorsudo ip link set wlan0 up# back to managedsudo ip link set wlan0 downsudo iw dev wlan0 set type managedsudo ip link set wlan0 up# Then observe promiscuously...sudo wireshark# Alternatively: airmon (more next time)sudo airmon-ng start wlan0
http://etutorials.org/Networking/802.11+security.+wi-fi+protected+access+and+802.11i/
(book on WiFi)