Last active
October 11, 2023 08:32
-
-
Save brentvollebregt/30d278eae98e2ff221add008259d42bb to your computer and use it in GitHub Desktop.
Will find each network profile on a Windows machine and print the profile and password
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
import subprocess | |
a = subprocess.check_output(['netsh', 'wlan', 'show', 'profiles']).decode('utf-8', errors="ignore").split('\n') | |
a = [i.split(":")[1][1:-1] for i in a if "All User Profile" in i] | |
for i in a: | |
try: | |
results = subprocess.check_output(['netsh', 'wlan', 'show', 'profile', i, 'key=clear']).decode('utf-8', errors="ignore").split('\n') | |
results = [b.split(":")[1][1:-1] for b in results if "Key Content" in b] | |
try: | |
print ("{:<30}| {:<}".format(i, results[0])) | |
except IndexError: | |
print ("{:<30}| {:<}".format(i, "")) | |
except subprocess.CalledProcessError: | |
print ("{:<30}| {:<}".format(i, "ENCODING ERROR")) | |
a = input("") |
Are you sure that it'll work?
what about Linux?
Ubuntu doesn't work with this
No only focuses on windows.
Btw, i Don't have any plan to update this...
If u want to commit or something u can do that.
No only focuses on windows. Btw, i Don't have any plan to update this... If u want to commit or something u can do that.
hm, tnx
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
this is error
Traceback (most recent call last):
File "C:\pythonProject(pogoda)\parol.py", line 16, in
networks_name_list = re.findall("(?:Profile\s*:\s)(.*)", networks)
File "C:\Python\lib\re.py", line 241, in findall
return _compile(pattern, flags).findall(string)
TypeError: cannot use a string pattern on a bytes-like object