This information can differ between projects and configurations of PHP. The most obvious example would be the magic quotes directive. This directive influences the security algorithm directly because the input-data will have a higher SafetyLevel.
1: [tainted sources] 2: array: _SERVER level: escaped-slashes 3: function: file_get_contents level: raw-input 4: [sensitive sinks] 5: construct: echo ( escaped-html && escaped-slashes ) 6: function: mail ( matched-string || string-from-list, matched-string, matched-string ) 7: [function result] 8: function: addslashes level: escaped-slashes
array:
and the name followed by a
SafetyLevel. A SafetyLevel is declared by level: safety-level-name
.
function:
.
construct:
followed by the name of the construct.
This should be followed by a precondition for the parameters you want to check. A SafetyLevel can be combined by the
&&
(and) or ||
(or) operator. These operators work as expected.
function:
. This line also
gives an example of the definition of preconditions for multiple parameters.
function:
keyword followed by a name and
a SafetyLevel.
Editting the default configuration file will not influence php-sat directly.
After you have altered the file you should pass it to php-sat using the
-cf f | --config-file f
flag.
The default configuration is currently very small. If you have an improved version please share it with us.
-- EricBouwers - 29 Dec 2006