We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 20b1378 + 92e4d48 commit efc5f37Copy full SHA for efc5f37
Magento2/Sniffs/Security/InsecureFunctionSniff.php
@@ -33,5 +33,12 @@ class InsecureFunctionSniff extends ForbiddenFunctionsSniff
33
'srand' => null,
34
'mt_srand' => null,
35
'mt_rand' => 'random_int',
36
+ // Custom Rules - MTS-2096
37
+ 'eval' => null,
38
+ 'proc_nice' => null,
39
+ 'proc_open' => null,
40
+ 'proc_close' => null,
41
+ 'proc_terminate' => null,
42
+ 'proc_get_status' => null,
43
];
44
}
0 commit comments