I had previously learned that NetworkManager stores WiFi passwords in /etc/NetworkManager/system-connections/<wifi name> file. But in my case on Ubuntu 15.10 I can't find any password in that file.
I tried this:
sudo cat /etc/NetworkManager/system-connections/cig | grep psk
[sudo] password for edward:
key-mgmt=wpa-psk
psk-flags=1here does NetworkManager store WiFi passwords?
44 Answers
If you choose to only enable your user to use that wifi network, then the wifi password is stored in the gnome keyring of your current user.
If you let every one use that wifi connection, the password is stored in the file you mentionned.
You can also manually change where that password is stored in network manager settings for that wifi network, security tab, click the hdd+green arrow icon in password field and make your choice.
2The password files are saved in this folder :
(in case the password is stored for all users)
/etc/NetworkManager/system-connections Execute this command to show all information :
sudo cat /etc/NetworkManager/system-connections/YOUR-SSID When the password is stored for only one user, it is saved in gnome-keyring.
0You could consider using the nmcli command to update whatever NetworkManager does under the hood. To show the current password for SSID "example":
nmcli --show-secrets connection show id example | fgrep 802-1x.passwordTo update the password for the SSID "example" use:
(IFS='' read -s -r -p '802.1X password '; nmcli connection modify id example 802-1x.password "$REPLY")Most of that command is to prevent the new password being displayed on the terminal, remaining in an environment variable, or being in the shell history.
If you just want to SEE the passwords and other info and not edit, and you prefer doing things gui style, in a terminal window type:
sudo nautilusthen enter password at the prompt and you can navigate with the nautilus file manager to the file and read it.
Displaying in the terminal is more straightforward and probably more secure but some WinDOHs converts will prefer the pretty windowsy interface.