]> git.mxchange.org Git - ctracker.git/blob - ctracker.php
1cf268a205a50586711e5df371f73daf032b9d5e
[ctracker.git] / ctracker.php
1 <?php
2 /**
3  * Cracker Tracker Protection System - Extended Edition
4  * Initially created by Christian Knerr - www.cback.de
5  *
6  * Extended by: Roland Haeder - www.ship-simu.org
7  *
8  * @author              Roland Haeder <webmaster@ship-simu.org>
9  * @version             3.0.0
10  * @copyright   Copyright (c) 2009 - 2011 Cracker Tracker Team
11  * @license             GNU GPL 3.0 or any newer version
12  * @link                http://www.ship-simu.org
13  *
14  * This program is based on Cracker Tracker Protection System - Stand-Alone
15  * which has been written by Christian Knerr and is heavily enhanced in
16  * detectection, logging and reporting of suspicious traffic.
17  *
18  * This program is free software: you can redistribute it and/or modify
19  * it under the terms of the GNU General Public License as published by
20  * the Free Software Foundation, either version 3 of the License, or
21  * (at your option) any later version.
22  *
23  * This program is distributed in the hope that it will be useful,
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
26  * GNU General Public License for more details.
27  *
28  * You should have received a copy of the GNU General Public License
29  * along with this program. If not, see <http://www.gnu.org/licenses/>.
30  */
31
32 // XDEBUG call
33 //* DEBUG: */ xdebug_start_trace();
34
35 // Include files
36 require('config/db_config.php');
37 require('libs/lib_general.php');
38 require('libs/lib_detector.php');
39 require('libs/lib_connect.php');
40 require('libs/lib_updates.php');
41
42 // Init
43 initCrackerTrackerArrays();
44
45 // Get a database link
46 aquireCrackerTrackerDatabaseLink();
47
48 // Update database scheme
49 crackerTrackerUpdateDatabaseScheme();
50
51 // If it differs to original and the *whole* request string is not in whitelist
52 // then block the attempt
53 if (isCrackerTrackerWormDetected()) {
54         // Send the email, this must be the last line in this if() block because it contains a exit()
55         sendCrackerTrackerMail();
56 } elseif (isCrackerTrackerPostAttackDetected()) {
57         // Send the email, this must be the last line in this if() block because it contains a exit()
58         sendCrackerTrackerPostMail();
59 } elseif ((getCrackerTrackerConfig('ctracker_alert_user') == 'Y') && (isCrackerTrackerIpSuspicious())) {
60         // This IP is suspicious, so we alert him/her
61         crackerTrackerAlertCurrentUser();
62 } // END - if
63
64 // Close any open database links
65 crackerTrackerCloseDatabaseLink();
66
67 // [EOF]
68 ?>