I need to find the password for a Wi-Fi network that I am already connected to. I'm using a MacBook Pro that's running OS X Lion. Any guidance is appreciated.
4 Answers
If the password is stored, you can find it using the program Keychain Access.
If you open /Applications/Utilities/Keychain Access
, it will show you a list of stored entries. If you click the Kind column header, it will sort by kind, go to the section where AirPort network passwords are stored. On Yosemite, you may have to select "Local Items" rather than "login" under Keychains in the upper left.
Double-click the name of the network you are using (if you don't know the name of the network, you can find it in the WiFi menulet (the concentric quarter circles toward the right side of your menu bar).
Check the Show password box, enter your system password, and click the Allow button.
That should show you the password for the wireless network you are on, if it is stored on your computer. If no such entry appears, it means the password is not stored on your computer.
Note that you can also use this technique to find saved passwords for websites or other passwords that you computer has stored but you have forgotten.
Spotlight → Keychain Access → type Wi-Fi name →
select key → enter password to see Wi-Fi password
-
At least on Mojave you must now check the "Show password:" box after double-clicking the item to be asked to enter your credentials to see the WiFi password! – cody.codes Oct 06 '18 at 16:13
This is a new feature introduced on macOS Ventura.
From the Apple Support article If you need help with your Wi‑Fi password :
- Choose Apple menu > System Settings.
- Click Network in the sidebar, then click Wi-Fi on the right.
- Scroll down and click Advanced to open the list of known networks.
- Click the More button (ellipsis ...) next to the network name, then choose Copy Password.
- Paste the password somewhere else to see it.
(Emphasis mine)
Additional info: This can also be done on iPhone with iOS 16 or later and iPad with iPadOS 16.1 or later. See Find your saved Wi-Fi passwords on iPhone or iPad for guidance on this.

- 3,357
For those looking for a Terminal solution, I was able to rig one up using the security
command:
security find-generic-password -a "$1" -g | tail -0
I also wrote code that can get your current WiFi network and provide the password for it as well. You can find that in a gist here.
NOTE: You will still need to provide your user/pass to access the password. This is part of the security mechanism Apple implemented into using Keychain and cannot be easily overcome.

- 252
-
1Worth pointing for any new person, the $1 is an argument where you can also provide a string value. So let's say you want to fetch your wifi password & wifi's name is FooBar then your command would look like:
security find-generic-password -a "FooBar" -g | tail -0
– MiKr13 Oct 05 '21 at 14:37
airport
it displays all the wifis. Thanks! – Ferran Maylinch Sep 29 '17 at 12:21