]> git.mxchange.org Git - ctracker.git/blobdiff - libs/lib_detector.php
Detection of hexa-decimal encoded (0xXXXXX) strings added
[ctracker.git] / libs / lib_detector.php
index 4ea881f267e5e29151f26874f476eebf75cb542d..1a18062bea46613155be2f5cc3af51a58710baa7 100644 (file)
@@ -27,21 +27,21 @@ function initCrackerTrackerArrays () {
        // Set error_reporting
        if (isCrackerTrackerDebug()) {
                // For debugging purposes, this is fine
-               @error_reporting(E_ALL, E_STRICT);
+               @error_reporting(E_ALL | E_STRICT);
        } else {
                // No output
                @error_reporting(0);
        }
 
        // Whitelist some absolute query strings (see below)
-       $GLOBALS['whitelist'] = array(
+       $GLOBALS['ctracker_whitelist'] = array(
                'cmd=new',   // LinPHA
                'cmd=edit',  // LinPHA
                'cmd=lostpw' // LinPHA
        );
 
-       // Attacks we should detect and blok
-       $GLOBALS['wormprotector'] = array(
+       // Attacks we should detect and block
+       $GLOBALS['ctracker_get_blacklist'] = array(
                'chr(', 'chr=', 'chr%20', '%20chr', 'wget%20', '%20wget', 'wget(',
                'cmd=', '%20cmd', 'cmd%20', 'rush=', '%20rush', 'rush%20',
                'union%20', '%20union', 'union(', 'union=', 'echr(', '%20echr', 'echr%20', 'echr=',
@@ -54,7 +54,7 @@ function initCrackerTrackerArrays () {
                'insert%20into', 'select%20', 'nigga(', '%20nigga', 'nigga%20', 'fopen', 'fwrite', '%20like', 'like%20',
                '$_request', '$_get', '$request', '$get', '.system', 'HTTP_PHP', '&aim', '%20getenv', 'getenv%20',
                'new_password', '&icq','/etc/passwd','/etc/shadow', '/etc/groups', '/etc/gshadow',
-               'HTTP_USER_AGENT', 'HTTP_HOST', 'wget%20', 'uname\x20-a', 'bin/id', '/bin/', '/chgrp',
+               'HTTP_USER_AGENT', 'HTTP_HOST', 'wget%20', 'uname\x20-', 'uname%20-', 'bin/id', '/bin/', '/chgrp',
                '/chown', '/usr/bin', 'g\+\+', 'bin/python', 'bin/tclsh', 'bin/nasm', 'perl%20', 'traceroute%20',
                'ping%20', '.pl', 'bin/xterm', 'lsof%20', '.conf', 'motd%20', 'HTTP/1.', '.inc.php', '.lib.php',
                'config.php', 'file\://', 'window.open', '<SCRIPT>', 'javascript\://', 'img src', 'img%20src', '.jsp',
@@ -66,60 +66,63 @@ function initCrackerTrackerArrays () {
                'select from', 'drop%20', '.system', 'getenv', 'http_', '_php', 'php_', 'phpinfo()', '\<?php', '?\>', 'sql=',
                'div style=', 'overflow: auto', 'height: 1px', 'cc%20', 'admin_action=', 'path=', 'action=http',
                'page=http', 'module=http', 'op=http', 'id=http', 'id%3Dhttp', 'action%3Dhttp', 'page%3Dhttp',
-               'module%3Dhttp', 'op%3Dhttp', 'starhack', '../../', 'directory=http', 'dir=http', 'busca', 'uol.com'
+               'module%3Dhttp', 'op%3Dhttp', 'starhack', '../../','..//', 'directory=http', 'dir=http', 'busca',
+               'uol.com', '=http://', '=https://','=ftp://','=file://','_SESSION','CFG_ROOT','/proc/',',0x5'
        );
 
        // Block these words found in POST requests
-       $GLOBALS['post_blacklist'] = array(
-               // These two lines are for detecting hidden link spam in wikis, forums, guestbooks, etc.
+       $GLOBALS['ctracker_post_blacklist'] = array(
+               // This line is for detecting hidden link spam in wikis, forums, guestbooks, etc.
                'div style=', 'overflow:auto', 'height:1px', 'width:1px', 'display:hidden',
-               'overflow: auto', 'height: 1px', 'display: hidden',
                // "Common" login name from VHCS exploiters ;-)
                'starhack', 'DeLiMehmet', 'hisset', 'Hisset', 'delimert', 'MecTruy',
                'busca'
        );
+
+       // Load email header
+       $GLOBALS['ctracker_header'] = crackerTrackerLoadEmailTemplate('header');
 }
 
 // Checks for worms
 function isCrackerTrackerWormDetected () {
        // Check against the whole list
-       $GLOBALS['checkworm'] = str_replace($GLOBALS['wormprotector'], '*', $_SERVER['QUERY_STRING']);
+       $GLOBALS['ctracker_checkworm'] = str_replace($GLOBALS['ctracker_get_blacklist'], '*', crackerTrackerQueryString());
 
        // If it differs to original and the *whole* request string is not in whitelist
        // then blog the attempt
-       return ($GLOBALS['checkworm'] != $_SERVER['QUERY_STRING'] && (!in_array($_SERVER['QUERY_STRING'], $GLOBALS['whitelist'])));
+       return ($GLOBALS['ctracker_checkworm'] != crackerTrackerQueryString() && (!in_array(crackerTrackerQueryString(), $GLOBALS['ctracker_whitelist'])));
 }
 
 // Checks POST data
 function isCrackerTrackerPostAttackDetected () {
        // Implode recursive the whole $_POST array
-       $GLOBALS['post_track'] = implode_r('', $_POST);
+       $GLOBALS['ctracker_post_track'] = implode_r('', $_POST);
 
        // Check for suspicious POST data
-       $GLOBALS['check_post'] = str_replace($GLOBALS['post_blacklist'], '*', $GLOBALS['post_track']);
+       $GLOBALS['ctracker_check_post'] = str_replace($GLOBALS['ctracker_post_blacklist'], '*', $GLOBALS['ctracker_post_track']);
 
        // Is it detected?
-       return ((isCrackerTrackerWormDetected()) || ($GLOBALS['check_post'] != $GLOBALS['post_track']));
+       return ((isCrackerTrackerWormDetected()) || ($GLOBALS['ctracker_check_post'] != $GLOBALS['ctracker_post_track']));
 }
 
 // Prepares a mail and send it out
 function sendCrackerTrackerMail () {
+       // Log the attack
+       crackerTrackerLogAttack();
+
        // Mail content
        $mail = "Attack detected:
 -----------------------------------------------------
-Remote-IP       : ".$_SERVER['REMOTE_ADDR']."
-User-Agent      : ".$_SERVER['HTTP_USER_AGENT']."
-Request-string  : ".$_SERVER['QUERY_STRING']."
-Filtered string : ".$GLOBALS['checkworm']."
-Server          : ".$_SERVER['SERVER_NAME']."
-Script          : ".$_SERVER['SCRIPT_NAME']."
-Referrer        : ".$_SERVER['HTTP_REFERRER']."
+Remote-IP       : ".determineCrackerTrackerRealRemoteAddress()."
+User-Agent      : ".crackerTrackerUserAgent()."
+Request-string  : ".crackerTrackerQueryString()."
+Filtered string : ".$GLOBALS['ctracker_checkworm']."
+Server          : ".crackerTrackerServerName()."
+Script          : ".crackerTrackerScriptName()."
+Referrer        : ".crackerTrackerReferer()."
 -----------------------------------------------------
 ";
 
-       // Log the attack
-       crackerTrackerLogAttack();
-
        // Send it out
        crackerTrackerSendMail($mail);
 
@@ -127,13 +130,28 @@ Referrer        : ".$_SERVER['HTTP_REFERRER']."
        crackerTrackerDie();
 }
 
+// Sends the ticket emails out
+function sendCrackerTrackerTicketMails () {
+       // Load user template
+       $mail = crackerTrackerLoadEmailTemplate('user_add_ticket', $GLOBALS['ctracker_last_ticket']);
+
+       // Send email to the user
+       crackerTrackerSendMail($mail, $GLOBALS['ctracker_last_ticket']['ctracker_ticket_email'], getCrackerTrackerLocalized('user_add_ticket_subject'));
+
+       // Load webmaster template
+       $mail = crackerTrackerLoadEmailTemplate('webmaster_add_ticket', $GLOBALS['ctracker_last_ticket'], getCrackerTrackerConfig('ctracker_language'));
+
+       // Send email to the user
+       crackerTrackerSendMail($mail, null, getCrackerTrackerLocalized('webmaster_add_ticket_subject'));
+}
+
 // Sends a mail out
-function crackerTrackerSendMail ($mail) {
+function crackerTrackerSendMail ($mail, $recipient = null, $subject = null) {
        // Construct dummy array
        $rowData = array(
-               'remote_addr' => $_SERVER['REMOTE_ADDR'],
-               'check_worm'  => $GLOBALS['checkworm'],
-               'server_name' => $_SERVER['SERVER_NAME']
+               'remote_addr' => determineCrackerTrackerRealRemoteAddress(),
+               'check_worm'  => $GLOBALS['ctracker_checkworm'],
+               'server_name' => crackerTrackerServerName()
        );
 
        // Only send email if not yet found
@@ -141,10 +159,13 @@ function crackerTrackerSendMail ($mail) {
                // Send the email out only in non-debug mode
                if (isCrackerTrackerDebug()) {
                        // Output message
-                       print '<pre>' . $mail . '</pre>';
+                       print 'Recipient=' . $recipient . '<br />Subject=' . $subject . '<br />Text=<pre>' . $mail . '</pre>';
 
                        // All fine
                        return true;
+               } elseif (!is_null($recipient)) {
+                       // Recipient specified
+                       return mail($recipient, $subject, $mail, $GLOBALS['ctracker_header']);
                } elseif (isset($GLOBALS['ctracker_email'])) {
                        // Send it
                        return mail($GLOBALS['ctracker_email'], 'CTracker: Attack detected!', $mail, $GLOBALS['ctracker_header']);
@@ -152,30 +173,36 @@ function crackerTrackerSendMail ($mail) {
                        // Send it the deprecated way with constant
                        return mail(constant('__CTRACKER_EMAIL'), 'CTracker: Attack detected!', $mail, $GLOBALS['ctracker_header']);
                }
-       } // END - if
+       } elseif (isCrackerTrackerDebug()) {
+               // Output message
+               print 'Recipient=' . $recipient . '<br />Subject=' . $subject . '<br />Text=<pre>' . $mail . '</pre>';
+
+               // All fine
+               return true;
+       }
 }
 
 // Sends a detected POST attack mail
 function sendCrackerTrackerPostMail () {
+       // Log the attack
+       crackerTrackerLogAttack();
+
        // Mail text
        $mail = "POST-Attack detected:
 -----------------------------------------------------
-Remote-IP            : ".$_SERVER['REMOTE_ADDR']."
-User-Agent           : ".$_SERVER['HTTP_USER_AGENT']."
-Request-string       : ".$_SERVER['QUERY_STRING']."
-Filtered string      : ".$GLOBALS['checkworm']."
-Server               : ".$_SERVER['SERVER_NAME']."
-Script               : ".$_SERVER['SCRIPT_NAME']."
-Referrer             : ".$_SERVER['HTTP_REFERRER']."
+Remote-IP            : ".determineCrackerTrackerRealRemoteAddress()."
+User-Agent           : ".crackerTrackerUserAgent()."
+Request-string       : ".crackerTrackerQueryString()."
+Filtered string      : ".$GLOBALS['ctracker_checkworm']."
+Server               : ".crackerTrackerServerName()."
+Script               : ".crackerTrackerScriptName()."
+Referrer             : ".crackerTrackerReferer()."
 -----------------------------------------------------
-POST string          : ".$GLOBALS['post_track']."
-Filtered POST string : ".$GLOBALS['check_post']."
+POST string          : ".$GLOBALS['ctracker_post_track']."
+Filtered POST string : ".$GLOBALS['ctracker_check_post']."
 -----------------------------------------------------
 ";
 
-       // Log the attack
-       crackerTrackerLogAttack();
-
        // Send it out
        crackerTrackerSendMail($mail);
 
@@ -188,11 +215,22 @@ function crackerTrackerDie () {
        // Close database link
        crackerTrackerCloseDatabaseLink();
 
-       // Sleep a little to waste the attacker's time
-       if (!isCrackerTrackerDebug()) sleep(mt_rand(10,30));
+       // Do only sleep if debug/developer mode is not enabled
+       if (!isCrackerTrackerDebug()) {
+               // Sleep a little to waste the attacker's time
+               sleep(mt_rand(10,30));
+       } // END - if
 
        // Bye, bye...
-       die();
+       if (isCrackerTrackerDebug()) {
+               // With debug backtrace in debug/developer mode
+               print '<pre>';
+               debug_print_backtrace();
+               die('</pre>');
+       } else {
+               // Simple die() call
+               die();
+       }
 }
 
 // Logs the attack attempt
@@ -200,22 +238,68 @@ function crackerTrackerLogAttack () {
        // Aquire database link
        aquireCrackerTrackerDatabaseLink();
 
+       // By default no proxy is used
+       $proxyUsed = 'N';
+
+       // Did the attacker use a proxy?
+       if (isCrackerTrackerProxyUsed()) {
+               // Set it
+               $proxyUsed = 'Y';
+       } // END - if
 
        // Prepare array for database insert
        $rowData = array(
-               'remote_addr' => $_SERVER['REMOTE_ADDR'],
-               'user_agent'  => $_SERVER['HTTP_USER_AGENT'],
-               'get_data'    => $_SERVER['QUERY_STRING'],
-               'post_data'   => $GLOBALS['post_track'],
-               'check_worm'  => $GLOBALS['checkworm'],
-               'check_post'  => $GLOBALS['check_post'],
-               'server_name' => $_SERVER['SERVER_NAME'],
-               'script_name' => $_SERVER['SCRIPT_NAME'],
-               'referer'     => $_SERVER['HTTP_REFERER']
+               'remote_addr'   => determineCrackerTrackerRealRemoteAddress(),
+               'user_agent'    => crackerTrackerUserAgent(),
+               'get_data'      => crackerTrackerQueryString(),
+               'post_data'     => $GLOBALS['ctracker_post_track'],
+               'check_worm'    => $GLOBALS['ctracker_checkworm'],
+               'check_post'    => $GLOBALS['ctracker_check_post'],
+               'server_name'   => crackerTrackerServerName(),
+               'script_name'   => crackerTrackerScriptName(),
+               'referer'       => crackerTrackerReferer(),
+               'proxy_used'    => $proxyUsed,
+               'first_attempt' => 'NOW()'
        );
 
        // Insert the array in database
-       crackerTrackerInsertArray($rowData);
+       crackerTrackerInsertArray('ctracker_data', $rowData);
+}
+
+// Alerts the current user about malicious/suspicious traffic
+function crackerTrackerAlertCurrentUser () {
+       // Is there some data?
+       if (isset($GLOBALS['ctracker_last_suspicious_entry'])) {
+               // Does the user have a ticket?
+               if (ifCrackerTrackerIpHasTicket()) {
+                       // Should we continue?
+                       if (isset($_POST['ctracker_continue'])) {
+                               // Set cookie
+                               sendCrackerTrackerCookie();
+
+                               // And redirect to same URL
+                               crackerTrackerRedirectSameUrl();
+                       } elseif (ifCrackerTrackerCookieIsSet()) {
+                               // Return here to normal program
+                               return;
+                       } else {
+                               // Load "Thank you" template
+                               crackerTrackerLoadTemplate('add_ticket_thanks');
+                       }
+               } elseif ((isset($_POST['ctracker_add_ticket'])) && (!empty($_POST['name'])) && (!empty($_POST['email']))) {
+                       // Add the ticket
+                       addCrackerTrackerTicket($_POST);
+
+                       // Send the email out
+                       sendCrackerTrackerTicketMails();
+               } else {
+                       // Display the form for new ticket
+                       crackerTrackerLoadTemplate('add_ticket');
+               }
+       } // END - if
+
+       // And stop here
+       die();
 }
 
 // [EOF]