mirror of
https://github.com/billz/raspap-webgui.git
synced 2025-03-01 10:31:47 +00:00
Sanitize country POST input
This commit is contained in:
parent
eabd356bcb
commit
d5009e0c1e
@ -50,7 +50,7 @@ function DisplayProviderConfig()
|
||||
if (!RASPI_MONITOR_ENABLED) {
|
||||
if (isset($_POST['SaveProviderSettings'])) {
|
||||
if (isset($_POST['country'])) {
|
||||
$country = trim($_POST['country']);
|
||||
$country = escapeshellarg(trim($_POST['country']));
|
||||
if (strlen($country) == 0) {
|
||||
$status->addMessage('Select a country from the server location list', 'danger');
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user