Add a func to break the ssid.

This commit is contained in:
Tim Young 2017-08-28 14:53:23 -05:00
parent e58a75d84e
commit fffe00ae54
1 changed files with 20 additions and 1 deletions

View File

@ -3050,5 +3050,24 @@ namespace EduNetworkBuilder
}
return true;
}
}
#region Break Things
public bool BreakSSID(string nicname)
{
List<string> choices = new List<string>() { "FBI_Surveillance_Van", "EduNetworkBuilderSSID","Bad_SSID",
"FreeWifi","HackMe","default","linksys",};
//find the nic. Change the ssid on it
choices.AddRange(new string[]{hostname+"_ssid", hostname+"FreeWireless", hostname+"AddHoc" });
choices = NB.Randomize<string>(choices);
string choice = choices[0]; //grab the first one
NetworkCard nic = NicFromName(nicname);
if (nic == null) return false; //we could not do it.
if (nic.SSID == choice) return false;
nic.SSID = choice; //change it
return true;
}
#endregion
}
}