From baa9cb0fbb02acef896d1b5e0cb316bd993f5d1a Mon Sep 17 00:00:00 2001 From: Javier Sánchez Parra Date: Wed, 5 May 2021 13:12:33 +0200 Subject: #804 Limit legacy SocketHidra key-value split This bug was found by USAL and UPV. They reported that WebConsole was showing scripts incompletely if they contain "=". SocketHidra stores key-value pair as "=" string, and the parser splits the string on "=" characters and pick the first two elements. Thus, if the value also contains "=", the parser splits it and only picks the first part. Note: keys strings never contain "=". With "scp=this=is=a=test" as example BEFORE this commit the parser returns "scp" as key "this" as value AFTER this commit the parser returns "spc" as key "this=is=a=test" as value Limit legacy SocketHidra key-value split to two elements, key and value. This commit also removes script decoding because WebConsole stores them decoded since v1.2.0. --- admin/WebConsole/includes/comunes.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/admin/WebConsole/includes/comunes.php b/admin/WebConsole/includes/comunes.php index 213e764e..f12ea94a 100644 --- a/admin/WebConsole/includes/comunes.php +++ b/admin/WebConsole/includes/comunes.php @@ -151,7 +151,7 @@ $html=""; $auxprm=explode($ch,$parametros); for($i=0;$i'; + $tbParametrosValor[$nemonico]["valor"]='
'.$valor.'
'; break; case 5: // El valor es 0 ó 1 y se muestra NO o SI $tbSN[0]="No"; -- cgit v1.2.3-18-g5258