Created
August 1, 2021 07:08
-
-
Save xeldrago/4d93ee77b84781b4dcaf5d686412052b to your computer and use it in GitHub Desktop.
yo guys, simple useful piece of code to find your lost or forgotten password of your wifi
This file contains hidden or 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 os #you'll need os module for running commands into your command prompt or jus open command prompt and type the below command | |
#that is what this code does lol command is "netsh wlan show profile {name of network} key=clear" -- hafun!! | |
net_id=input("type the network name connected to your device\n") | |
os.system(f"netsh wlan show profile {net_id} key=clear") #the command i said | |
print("now from the output, look for key content, that is your lost or forgotten password") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
so a simple code to get your lost password lol