mirror of
https://github.com/billz/raspap-webgui.git
synced 2023-10-10 13:37:24 +02:00
parent
f5a18b8d95
commit
92e154fa64
@ -641,3 +641,10 @@ function validate_host($host) {
|
|||||||
return preg_match('/^([a-z\d](-*[a-z\d])*)(\.([a-z\d](-*[a-z\d])*))*$/i', $host);
|
return preg_match('/^([a-z\d](-*[a-z\d])*)(\.([a-z\d](-*[a-z\d])*))*$/i', $host);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function evalHexSequence($string) {
|
||||||
|
$evaluator = function ($input) {
|
||||||
|
return hex2bin($input[1]);
|
||||||
|
};
|
||||||
|
return preg_replace_callback('/\\\x(..)/', $evaluator, $string);
|
||||||
|
}
|
||||||
|
|
||||||
|
@ -75,6 +75,7 @@ function nearbyWifiStations(&$networks, $cached = true)
|
|||||||
}
|
}
|
||||||
|
|
||||||
$ssid = trim($arrNetwork[4]);
|
$ssid = trim($arrNetwork[4]);
|
||||||
|
$ssid = evalHexSequence($ssid);
|
||||||
// filter SSID string: anything invisible in 7bit ASCII or quotes -> ignore network
|
// filter SSID string: anything invisible in 7bit ASCII or quotes -> ignore network
|
||||||
if (preg_match('[\x00-\x1f\x7f-\xff\'\`\´\"]', $ssid)) {
|
if (preg_match('[\x00-\x1f\x7f-\xff\'\`\´\"]', $ssid)) {
|
||||||
continue;
|
continue;
|
||||||
|
Loading…
Reference in New Issue
Block a user