FIX #yogosha8272
This commit is contained in:
parent
c3a42162d9
commit
eddc2a1a26
@ -47,7 +47,7 @@ if (empty($_GET['keysearch']) && !defined('NOREQUIREHTML')) {
|
|||||||
|
|
||||||
require '../../main.inc.php';
|
require '../../main.inc.php';
|
||||||
|
|
||||||
$htmlname = GETPOST('htmlname', 'alpha');
|
$htmlname = GETPOST('htmlname', 'aZ09');
|
||||||
$socid = GETPOST('socid', 'int');
|
$socid = GETPOST('socid', 'int');
|
||||||
$type = GETPOST('type', 'int');
|
$type = GETPOST('type', 'int');
|
||||||
$mode = GETPOST('mode', 'int');
|
$mode = GETPOST('mode', 'int');
|
||||||
@ -242,7 +242,7 @@ if (!empty($action) && $action == 'fetch' && !empty($id)) {
|
|||||||
// Filter on the product to search can be:
|
// Filter on the product to search can be:
|
||||||
// Into an array with key $htmlname123 (we take first one found). Which page use this ?
|
// Into an array with key $htmlname123 (we take first one found). Which page use this ?
|
||||||
// Into a var with name $htmlname can be 'prodid', 'productid', ...
|
// Into a var with name $htmlname can be 'prodid', 'productid', ...
|
||||||
$match = preg_grep('/('.$htmlname.'[0-9]+)/', array_keys($_GET));
|
$match = preg_grep('/('.preg_quote($htmlname, '/').'[0-9]+)/', array_keys($_GET));
|
||||||
sort($match);
|
sort($match);
|
||||||
|
|
||||||
$idprod = (empty($match[0]) ? '' : $match[0]); // Take first key found into GET array with matching $htmlname123
|
$idprod = (empty($match[0]) ? '' : $match[0]); // Take first key found into GET array with matching $htmlname123
|
||||||
|
|||||||
@ -44,7 +44,7 @@ if (!defined('NOCSRFCHECK')) {
|
|||||||
require '../../main.inc.php';
|
require '../../main.inc.php';
|
||||||
require_once DOL_DOCUMENT_ROOT.'/societe/class/societe.class.php';
|
require_once DOL_DOCUMENT_ROOT.'/societe/class/societe.class.php';
|
||||||
|
|
||||||
$htmlname = GETPOST('htmlname', 'alpha');
|
$htmlname = GETPOST('htmlname', 'aZ09');
|
||||||
$filter = GETPOST('filter', 'alpha');
|
$filter = GETPOST('filter', 'alpha');
|
||||||
$outjson = (GETPOST('outjson', 'int') ? GETPOST('outjson', 'int') : 0);
|
$outjson = (GETPOST('outjson', 'int') ? GETPOST('outjson', 'int') : 0);
|
||||||
$action = GETPOST('action', 'aZ09');
|
$action = GETPOST('action', 'aZ09');
|
||||||
@ -102,7 +102,7 @@ if (!empty($action) && $action == 'fetch' && !empty($id)) {
|
|||||||
// Filter on the company to search can be:
|
// Filter on the company to search can be:
|
||||||
// Into an array with key $htmlname123 (we take first one found). Which page use this ?
|
// Into an array with key $htmlname123 (we take first one found). Which page use this ?
|
||||||
// Into a var with name $htmlname can be 'prodid', 'productid', ...
|
// Into a var with name $htmlname can be 'prodid', 'productid', ...
|
||||||
$match = preg_grep('/('.$htmlname.'[0-9]+)/', array_keys($_GET));
|
$match = preg_grep('/('.preg_quote($htmlname, '/').'[0-9]+)/', array_keys($_GET));
|
||||||
sort($match);
|
sort($match);
|
||||||
|
|
||||||
$id = (!empty($match[0]) ? $match[0] : ''); // Take first key found into GET array with matching $htmlname123
|
$id = (!empty($match[0]) ? $match[0] : ''); // Take first key found into GET array with matching $htmlname123
|
||||||
|
|||||||
@ -473,6 +473,19 @@ class CodingPhpTest extends PHPUnit\Framework\TestCase
|
|||||||
$this->assertTrue($ok, 'Found a forbidden string sequence into '.$file['relativename'].' : name="token" value="\'.$_SESSION[..., you must use a newToken() instead of $_SESSION[\'newtoken\'].');
|
$this->assertTrue($ok, 'Found a forbidden string sequence into '.$file['relativename'].' : name="token" value="\'.$_SESSION[..., you must use a newToken() instead of $_SESSION[\'newtoken\'].');
|
||||||
|
|
||||||
|
|
||||||
|
// Test we don't have @var array(
|
||||||
|
$ok=true;
|
||||||
|
$matches=array();
|
||||||
|
preg_match_all('/preg_grep\(.*\$/', $filecontent, $matches, PREG_SET_ORDER);
|
||||||
|
foreach ($matches as $key => $val) {
|
||||||
|
if (strpos($val[0], 'preg_quote') === false) {
|
||||||
|
$ok=false;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$this->assertTrue($ok, 'Found a preg_grep with a param that is a $var but without preg_quote in file '.$file['relativename'].'.');
|
||||||
|
|
||||||
|
|
||||||
// Test we don't have @var array(
|
// Test we don't have @var array(
|
||||||
$ok=true;
|
$ok=true;
|
||||||
$matches=array();
|
$matches=array();
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user