Короче, пришлось взять, открыть: ctracker/engines/ct_security.php и грохнуть:
Код: Выделить всё
if ( $ct_attack_detection )
{
// include class for Logfile Management
include_once($phpbb_root_path . 'ctracker/classes/class_log_manager.' . $phpEx);
// write data into logfile
$logfile = new log_manager();
$logfile->write_worm();
unset($logfile);
// generate HTML Message
$htmloutput =<<<EOM
<html>
<head>
<title>CBACK CrackerTracker :: Security Alert</title>
</head>
<body>
<br>
<div align="center">
<table style="border:2px solid #000000" border="0" width="600" cellpadding="10" cellspacing="0">
<tr>
<td align="left" bgcolor="#000000"><font face="Tahoma, Arial, Helvetica" size="4" color="#FFFFFF"><b>SECURITY ALERT » » » »</b></font></td>
</tr>
<tr>
<td bgcolor="#FFDFDF" align="left">
<font face="Tahoma, Arial, Helvetica" size="2" color="#000000">
<b>CBACK CrackerTracker</b> has detected a potential attack on this site with a worm
or exploit script so the Security System stopped the script.
<br><br><br>
If you can see this page after including a new MOD into your board or after clicking
on a link please contact the Board Administrator with this error message and a description
what you have done before you could see this page, that the Admin has the possibility to
fix the problem.
</font>
</td>
</tr>
</table>
</div>
</body>
</html>
EOM;
// stop the script
die($htmloutput);
}