Skip to content

Instantly share code, notes, and snippets.

@xeldrago
Created August 1, 2021 07:08
Show Gist options
  • Save xeldrago/4d93ee77b84781b4dcaf5d686412052b to your computer and use it in GitHub Desktop.
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
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")
@xeldrago
Copy link
Author

xeldrago commented Aug 1, 2021

so a simple code to get your lost password lol

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment