interpret hex sequences in ssid station names

resolves #917
This commit is contained in:
glaszig
2021-05-30 21:49:05 +01:00
parent f5a18b8d95
commit 92e154fa64
2 changed files with 8 additions and 0 deletions

View File

@@ -75,6 +75,7 @@ function nearbyWifiStations(&$networks, $cached = true)
}
$ssid = trim($arrNetwork[4]);
$ssid = evalHexSequence($ssid);
// filter SSID string: anything invisible in 7bit ASCII or quotes -> ignore network
if (preg_match('[\x00-\x1f\x7f-\xff\'\`\´\"]', $ssid)) {
continue;