You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The purpose of this script is to get all the saved wi-fi to a text file.
6
+
7
+
## Short description of package/script
8
+
9
+
The Windows enviroment does not directly provide the saved Wi-Fi passwords on the system, but we can get the passwords using the command prompt using this feature we can call command prompt command through a python script and get multiple passwords within seconds.
10
+
11
+
## Workflow of the Project
12
+
13
+
- The project utilizes the subprocess built-in module to execute command prompt command from the python script
14
+
- The script also uses ReGex to get only the Wi-Fi profiles from the output of the subprocess.
15
+
- After getting all the Wi-Fi we need to execute the subprocess command once more to get password for each profile.
16
+
- If the Wi-Fi is not password protected the script will set its Password as Open.
17
+
- After getting all the password it is exported to a textfile.
18
+
19
+
## Setup instructions
20
+
21
+
- Open command prompt run `python saved_wifi_password.py`
0 commit comments