mirror of
https://github.com/billz/raspap-webgui.git
synced 2023-10-10 13:37:24 +02:00
escape qrencode arguments in multibyte-safe way
This commit is contained in:
parent
695ea7b969
commit
ad1ca08de3
@ -2,6 +2,7 @@
|
||||
|
||||
require_once '../../includes/config.php';
|
||||
require_once '../../includes/defaults.php';
|
||||
require_once '../../includes/functions.php';
|
||||
|
||||
function qr_encode($str)
|
||||
{
|
||||
@ -34,7 +35,7 @@ $ssid = qr_encode($ssid);
|
||||
$password = qr_encode($password);
|
||||
|
||||
$data = "WIFI:S:$ssid;T:$type;P:$password;$hidden;";
|
||||
$command = "qrencode -t svg -m 0 -o - " . escapeshellarg($data);
|
||||
$command = "qrencode -t svg -m 0 -o - " . mb_escapeshellarg($data);
|
||||
$svg = shell_exec($command);
|
||||
|
||||
$config_mtime = filemtime(RASPI_HOSTAPD_CONFIG);
|
||||
|
@ -332,3 +332,17 @@ function cache($key, $callback)
|
||||
return $data;
|
||||
}
|
||||
}
|
||||
|
||||
// insspired by
|
||||
// http://markushedlund.com/dev/php-escapeshellarg-with-unicodeutf-8-support
|
||||
function mb_escapeshellarg($arg)
|
||||
{
|
||||
$isWindows = strtolower(substr(PHP_OS, 0, 3)) === 'win';
|
||||
if ($isWindows) {
|
||||
$escaped_arg = str_replace(array('"', '%'), '', $arg);
|
||||
} else {
|
||||
$escaped_arg = str_replace("'", "'\\''", $arg);
|
||||
}
|
||||
return "\"$escaped_arg\"";
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user