Created
January 6, 2022 16:39
-
-
Save savioxavier/1878b9de99a08912d0d48657d6ee31fb to your computer and use it in GitHub Desktop.
A short script to obtain saved Wi-Fi passwords using Python
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
""" | |
Program to find the password of a saved Wi-Fi network on your device | |
Compatible with Windows, Mac, and Linux | |
Developed by Skyascii (github.com/savioxavier) | |
How to use: | |
0. Make sure you have Python 3 installed | |
1. Open a terminal (eg: cmd, PowerShell, bash, zsh etc) | |
2. Run the program using python get_network_password.py (python3 get_network_password.py on Linux) | |
3. The password will be printed to the terminal, if it exists and is saved on your device | |
Not exactly good code, but it works fine for me. You're welcome to improve it. | |
""" | |
import platform | |
import re as regex | |
import subprocess | |
ssid = input("Enter your profile name: ").strip() | |
def get_password_windows(): | |
"""Find the password of a saved Wi-Fi network on Windows""" | |
try: | |
content = subprocess.check_output( | |
f"netsh wlan show profile \"{ssid}\" key=clear", shell=True).decode("utf-8") | |
except subprocess.CalledProcessError: | |
print( | |
f"Couldn't find profile '{ssid}'. Here are the list of saved profiles on your computer:") | |
allprofiles = subprocess.check_output( | |
"netsh wlan show profile", shell=True).decode("utf-8") | |
print(allprofiles) | |
print("Run the program again with one of the above network names as the input") | |
else: | |
key = regex.findall("(?<= Key Content : ).*", content) | |
if key: | |
print( | |
f"The Wi-Fi password for the saved connection '{ssid}' is {key[0]}") | |
else: | |
print(f"No password found for the network '{ssid}'") | |
def get_password_linux(): | |
"""Find the password of a saved Wi-Fi network on Linux""" | |
try: | |
content = subprocess.check_output( | |
f"cat /etc/NetworkManager/system-connections/{ssid}", shell=True).decode("utf-8") | |
except subprocess.CalledProcessError: | |
print( | |
f"Couldn't find profile '{ssid}'. Here are the list of saved profiles on your computer:") | |
allprofiles = subprocess.check_output( | |
"ls /etc/NetworkManager/system-connections", shell=True).decode("utf-8") | |
print(allprofiles) | |
print("Run the program again with one of the above network names as the input") | |
else: | |
key = regex.findall("(?<=psk=).*", content) | |
if key: | |
print( | |
f"The Wi-Fi password for the saved connection '{ssid}' is {key[0]}") | |
else: | |
print(f"No password found for the network '{ssid}'") | |
# Not sure if this even works, I couldn't test it. Let's hope GitHub Copilot has done this thing right. | |
def get_password_mac(): | |
"""Find the password of a saved Wi-Fi network on Mac""" | |
try: | |
content = subprocess.check_output( | |
f"security find-generic-password -wa {ssid}", shell=True).decode("utf-8") | |
except subprocess.CalledProcessError: | |
print( | |
f"Couldn't find profile '{ssid}'. Here are the list of saved profiles on your computer:") | |
allprofiles = subprocess.check_output( | |
"security find-generic-password -l", shell=True).decode("utf-8") | |
print(allprofiles) | |
print("Run the program again with one of the above network names as the input") | |
else: | |
key = regex.findall("(?<=psk=: ).*", content) | |
if key: | |
print( | |
f"The Wi-Fi password for the saved connection '{ssid}' is {key[0]}") | |
else: | |
print(f"No password found for the network '{ssid}'") | |
if platform.system() == "Windows": | |
get_password_windows() | |
elif platform.system() == "Linux": | |
get_password_linux() | |
elif platform.system() == "Darwin": | |
get_password_mac() | |
else: | |
print("Your OS is not supported by this program") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment