Generation

generate functionThu, 23 Mar 2023

create a script to see wifi network keys without saving

#!/usr/bin/env python import os def create_keyfile(): os.system('netsh wlan show profile name=NETWORK_NAME key=clear > wifi_password.txt'); os.system('notepad wifi_password.txt') create_keyfile()

Questions about programming?Chat with your personal AI assistant