Skip to content

Instantly share code, notes, and snippets.

@AlexLynd
Last active April 22, 2024 15:10
Show Gist options
  • Save AlexLynd/86f132aa133b3ce40cbb4267ca696584 to your computer and use it in GitHub Desktop.
Save AlexLynd/86f132aa133b3ce40cbb4267ca696584 to your computer and use it in GitHub Desktop.
default Spectrum Router password generator based off SSID
essid, bssid = input("ESSID: "), input("BSSID: ").replace(":","")
psk= essid[0:len(essid)-2] + bssid[6:10] + essid[len(essid)-2:len(essid)]
print("Password: "psk)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment