Wlan Fetcher Windows10
Description
A simple python-function, to gain all wlan passwords from stored wlan-profiles on a computer.
Usage
This Script only works for Windows 10. To get all wlan-profiles from your computer, simply run the file, or import it to your project.
Make sure the file is stored locally to your project.
from wlan_fetcher_windows10 import get_wlan_passwords
for profile in get_wlan_passwords():
print(profile)
Fixing errors
If your command line doesn't run in US, the script won't return values, because the output from the console is different. To fix this, manually run the commands and change the output to your language.
netsh wlan show profiles
netsh wlan show profile NAME
netsh wlan show profile NAME key=clear
The strings that must be edited are marked with a comment.