-
-
Save kuzeydev/45cf02a1d9c21392a95e469dab5209d2 to your computer and use it in GitHub Desktop.
Find WIFI Password
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Windows | |
| netsh wlan show profile NOM_DU_RESEAU_WIFI key=clear | |
| # Mac | |
| security find-generic-password -wa NOM_DU_RESEAU_WIFI | |
| # Linux | |
| sudo cat /etc/NetworkManager/system-connections/NOM_DU_RESEAU_WIFI | grep psk= | |
| # From https://korben.info/une-commande-pour-retrouver-en-clair-le-mot-de-passe-dun-reseau-wifi.html |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment