mirror of
https://github.com/billz/raspap-webgui.git
synced 2023-10-10 13:37:24 +02:00
Update connect var sanitization
This commit is contained in:
parent
a07be6e3bd
commit
7adbfe143d
@ -17,12 +17,9 @@ function DisplayWPAConfig()
|
|||||||
|
|
||||||
if (isset($_POST['connect'])) {
|
if (isset($_POST['connect'])) {
|
||||||
$result = 0;
|
$result = 0;
|
||||||
$iface = escapeshellarg($_SESSION['wifi_client_interface']);
|
|
||||||
$netid = intval($_POST['connect']);
|
$netid = intval($_POST['connect']);
|
||||||
if (is_numeric($netid)) {
|
exec('sudo wpa_cli -i ' . $_SESSION['wifi_client_interface'] . ' select_network ' . $netid);
|
||||||
exec('sudo wpa_cli -i ' . $iface . ' select_network ' . $netid);
|
|
||||||
$status->addMessage('New network selected', 'success');
|
$status->addMessage('New network selected', 'success');
|
||||||
}
|
|
||||||
} elseif (isset($_POST['wpa_reinit'])) {
|
} elseif (isset($_POST['wpa_reinit'])) {
|
||||||
$status->addMessage('Reinitializing wpa_supplicant', 'info', false);
|
$status->addMessage('Reinitializing wpa_supplicant', 'info', false);
|
||||||
$force_remove = true;
|
$force_remove = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user