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=1
here does NetworkManager store WiFi passwords?
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.
The password files are saved in this folder :
(in case the password is stored for all users)
Execute this command to show all information :
When the password is stored for only one user, it is saved in gnome-keyring.
You could consider using the
nmcli
command to update whatever NetworkManager does under the hood. To show the current password for SSID "example":To update the password for the SSID "example" use:
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:
then 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.