CrackerTracker HowTo for unexpected Security warnings: (Addition for experts: see below)

If there's a Security Warning while running CTracker v5.0.3 (e.g. when adding a download, adding a forum, sending a post), you have to do this:

Download the ctracker/engines/ct_security.php, open it and search for the following line:

define('CT_DEBUG_MODE', false);

and replace it by:

define('CT_DEBUG_MODE', true);

Upload the file to your webspace.

All admins now get a message in the header which says that the Debug Mode is active.

Now do exactly the same as before, 'till it comes to the security warning.
Then go to your ACP -> CrackerTracker -> Logmanager and read the "Debug-Entries".

There you'll find an instruction, how to fix the warning.
This instruction reads like a MOD-installation-instruction. Therefor every admin should understand it easyly.

After changing the relevant file, change the Debug Mode in the ctracker/engines/ct_security.php from "true" to "false", so that there's no message in the header anymore.

###### WARNING ######
While the Debug Mode is active, it could happen that the board becomes more slowly as normal.
This is because the Debug Mode analizes the block very precisely.
Additionally there will be no exploit-entries, but debug-entries, while the Debug Mode is active.
###### WARNING ######

###### ONLY FOR EXPERTS! ######
Possible values for the CT_SECLEVEL constant:
-----------------------------------------
Unset/HIGH - GET and Post will be scanned, no expansion/minimization of the heuristics and ignorelist allowed
MEDIUM - GET and POST will be scanned, expansion of the heuristics and ignorelist allowed
LOW - Only GET will be scanned, expansion of the heuristics and ignorelist allowed

expansion/minimization of the heuristics
-------------------------------------
$ct_addheuristic (Array to expand the heuristics)
$ct_delheuristic (Array to ignore heuristics of the ct_security.php)
$ct_ignorepvar (Array to completely ignore certain POST-vars of the script)
$ct_ignoregvar (Array to completely ignore certain GET-vars of the script)

The levels and ignores are "per script" editable and must be set before the common.php will be included.
Take possible openings of gaps in the page_header.php and page_tail.php into account.
###### ONLY FOR EXPERTS! ######