From e69f258f8a07be029e71b8e7a44b9ee3d1da4563 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= Date: Tue, 25 May 2021 12:50:25 +0200 Subject: [PATCH] Fixed issue with webserver modules --- pandora_console/include/lib/Module.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pandora_console/include/lib/Module.php b/pandora_console/include/lib/Module.php index 3e11480c3e..4a49bd5435 100644 --- a/pandora_console/include/lib/Module.php +++ b/pandora_console/include/lib/Module.php @@ -706,6 +706,13 @@ class Module extends Entity $updates = $this->fields; $updates['id_tipo_modulo'] = $this->moduleType()->id_tipo(); + // In the case of the webserver modules, debug_content special characters must be handled. + if ($updates['id_tipo_modulo'] >= MODULE_TYPE_WEB_ANALYSIS + && $updates['id_tipo_modulo'] <= MODULE_TYPE_WEB_CONTENT_STRING + ) { + $updates['debug_content'] = io_safe_input($updates['debug_content']); + } + if ($this->fields['id_agente_modulo'] > 0) { // Update. $rs = \db_process_sql_update(