Skip to content
This repository was archived by the owner on Oct 30, 2023. It is now read-only.

Latest commit

 

History

History
executable file
·
17 lines (12 loc) · 992 Bytes

File metadata and controls

executable file
·
17 lines (12 loc) · 992 Bytes

FAQ

Which version of PHP do I need ?

The minimum version of PHP needed to run Progpilot is 5.5.9

Where can I find the updated security files configuration (sinks, sources, validators, sanitizers and rules) of Progpilot ?

You can find the updated security files configuration of Progpilot in package/src/uptodate_data folder.

How can I use the various representations of programs ?

Example of control flow graph and call graph of source code transformed to dot format could be found here.

When I use progpilot I often run out of memory ?

Static analyzers use a lot of memory but you could try to handle this with these functions :

  • $obj_context->set_limit_defs($nb);
  • $obj_context->set_limit_size($size_bytes);

And by increasing the maximum memory amount for a script (memory_limit) in the configuration of PHP (php.ini).