├── LICENSE ├── README.md ├── mediatek ├── README.md └── mediatek-downgrade.pcapng ├── openbsd ├── README.md ├── attack_ap_dos.patch ├── example-mitm-attack.pcapng ├── get-and-compile-dos.sh ├── get-and-compile-mitm.sh └── mitm_poc.patch ├── tkip-countermeasures ├── README.md └── tkipdos_poc.patch └── windows ├── README.md ├── win10_tkipdos_poc.patch └── win7_dos_attack.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/blackhat17-pocs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/blackhat17-pocs/HEAD/README.md -------------------------------------------------------------------------------- /mediatek/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/blackhat17-pocs/HEAD/mediatek/README.md -------------------------------------------------------------------------------- /mediatek/mediatek-downgrade.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/blackhat17-pocs/HEAD/mediatek/mediatek-downgrade.pcapng -------------------------------------------------------------------------------- /openbsd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/blackhat17-pocs/HEAD/openbsd/README.md -------------------------------------------------------------------------------- /openbsd/attack_ap_dos.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/blackhat17-pocs/HEAD/openbsd/attack_ap_dos.patch -------------------------------------------------------------------------------- /openbsd/example-mitm-attack.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/blackhat17-pocs/HEAD/openbsd/example-mitm-attack.pcapng -------------------------------------------------------------------------------- /openbsd/get-and-compile-dos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/blackhat17-pocs/HEAD/openbsd/get-and-compile-dos.sh -------------------------------------------------------------------------------- /openbsd/get-and-compile-mitm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/blackhat17-pocs/HEAD/openbsd/get-and-compile-mitm.sh -------------------------------------------------------------------------------- /openbsd/mitm_poc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/blackhat17-pocs/HEAD/openbsd/mitm_poc.patch -------------------------------------------------------------------------------- /tkip-countermeasures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/blackhat17-pocs/HEAD/tkip-countermeasures/README.md -------------------------------------------------------------------------------- /tkip-countermeasures/tkipdos_poc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/blackhat17-pocs/HEAD/tkip-countermeasures/tkipdos_poc.patch -------------------------------------------------------------------------------- /windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/blackhat17-pocs/HEAD/windows/README.md -------------------------------------------------------------------------------- /windows/win10_tkipdos_poc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/blackhat17-pocs/HEAD/windows/win10_tkipdos_poc.patch -------------------------------------------------------------------------------- /windows/win7_dos_attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/blackhat17-pocs/HEAD/windows/win7_dos_attack.py --------------------------------------------------------------------------------