mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-22 07:30:23 +00:00
Sanitize post with escapeshellcmd()
This commit is contained in:
parent
3575d1d185
commit
e87e7d1d3a
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@
|
|||
require '../../includes/csrf.php';
|
||||
require_once '../../includes/config.php';
|
||||
|
||||
$entity = $_POST['entity'];
|
||||
$entity = escapeshellcmd($_POST['entity']);
|
||||
|
||||
if (isset($entity)) {
|
||||
|
||||
|
|
Loading…
Reference in a new issue