Allow acting as ATT wifi.

This commit is contained in:
Derek Jamison 2023-04-19 23:24:30 -04:00
parent a829cb7620
commit 0230baa7e8

View File

@ -26,6 +26,11 @@ Function Get-Decoded-SSID {
[Parameter(Mandatory=$true)]
[String]$SSID
)
# If the SSID starts with "ATT" skip that part of the SSID. :)
if ($SSID.StartsWith("ATT")) {
$SSID = $SSID.Substring(3)
}
$letters = $SSID.ToCharArray()
$index = 0
$i = 1