18

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?

Alex Jones
  • 8,192

4 Answers4

17

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.

enter image description here

solsTiCe
  • 9,565
12

The 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.

cl-netbox
  • 31,569
5

You 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.password

To 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.

vk5tu
  • 411
  • 5
  • 3
  • nmcli -s -g 802-11-wireless-security.psk connection show MyWiFi user-wide, or sudo grep -hr '^psk=' /etc/NetworkManager/system-connections/MyWiFi system-wide – Pablo Bianchi Dec 31 '22 at 00:16
-3

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 nautilus

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.