Last active
June 29, 2020 06:29
-
-
Save mrkpatchaa/fe235456617725e5ac9a6c24163a61f3 to your computer and use it in GitHub Desktop.
Find WIFI Password #wifi
This file contains 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