]> git.mxchange.org Git - ctracker.git/commitdiff
Merge branch 'master' of mx:/var/cache/git/repos/ctracker
authorRoland Häder <roland@mxchange.org>
Tue, 28 Aug 2018 07:41:14 +0000 (09:41 +0200)
committerRoland Häder <roland@mxchange.org>
Tue, 28 Aug 2018 07:41:14 +0000 (09:41 +0200)
1  2 
libs/lib_connect.php
libs/lib_detector.php
libs/lib_general.php
libs/lib_updates.php

diff --combined libs/lib_connect.php
index 240f94af7f4a45f65eff911f0d597ed04ce185b3,e21af93b19c58c802414bb6e2bd2d12998ac0041..952445486d1b0429e97be130b96ddeb6c5e00daf
@@@ -4,7 -4,7 +4,7 @@@
   *
   * @author            Roland Haeder <webmaster@shipsimu.org>
   * @version           3.0.0
 - * @copyright Copyright (c) 2009 - 2011 Cracker Tracker Team
 + * @copyright Copyright (c) 2009 - 2017 Cracker Tracker Team
   * @license           GNU GPL 3.0 or any newer version
   * @link              http://www.shipsimu.org
   *
@@@ -46,9 -46,9 +46,9 @@@ function aquireCrackerTrackerDatabaseLi
  // Inits a fake configurtation
  function crackerTrackerInitFakeConfig () {
        // Set the array
-       $GLOBALS['ctracker_config'] = array(
+       $GLOBALS['ctracker_config'] = [
                'ctracker_alert_user' => 'Y',
-       );
+       ];
  }
  
  // Checks if the link is up
@@@ -367,14 -367,14 +367,14 @@@ function ifCrackerTrackerIpHasTicket (
  // Adds a ticket based on given (mostly $_POST) data
  function addCrackerTrackerTicket (array $data) {
        // Prepare the array
-       $GLOBALS['ctracker_last_ticket'] = array(
+       $GLOBALS['ctracker_last_ticket'] = [
                'ctracker_ticket_remote_addr' => determineCrackerTrackerRealRemoteAddress(),
                'ctracker_ticket_proxy_addr'  => getenv('REMOTE_ADDR'),
                'ctracker_ticket_user_agent'  => crackerTrackerUserAgent(),
                'ctracker_ticket_name'        => crackerTrackerSecureString($data['name']),
                'ctracker_ticket_email'       => crackerTrackerSecureString($data['email']),
                'ctracker_ticket_comment'     => crackerTrackerSecureString($data['comment'])
-       );
+       ];
  
        // Insert it
        crackerTrackerInsertArray('ctracker_ticket', $GLOBALS['ctracker_last_ticket']);
        // Is there an entry?
        if ((isset($GLOBALS['ctracker_last_insert_id'])) && ($GLOBALS['ctracker_last_insert_id'] > 0)) {
                // All fine, so prepare the link between ticket<->data
-               $data = array(
+               $data = [
                        'ctracker_ticket_id' => $GLOBALS['ctracker_last_insert_id'],
                        'ctracker_data_id'   => $GLOBALS['ctracker_last_suspicious_entry']['id']
-               );
+               ];
  
                // And insert it as well
                crackerTrackerInsertArray('ctracker_ticket_data', $data);
diff --combined libs/lib_detector.php
index a62ea4b20f48e04995e0cf169300cd795f3915ea,505df9ec7c2869412e54c258687e14c1f648f9b9..627e7b6371a66744f563df2340a1a2964885da7d
@@@ -4,7 -4,7 +4,7 @@@
   *
   * @author            Roland Haeder <webmaster@shipsimu.org>
   * @version           3.0.0
 - * @copyright Copyright (c) 2009 Cracker Tracker Team
 + * @copyright Copyright (c) 2009 - 2017 Cracker Tracker Team
   * @license           GNU GPL 3.0 or any newer version
   * @link              http://www.shipsimu.org
   *
@@@ -37,17 -37,17 +37,17 @@@ function initCrackerTrackerArrays () 
        $GLOBALS['ctracker_base_path'] = dirname(dirname(__FILE__));
  
        // Whitelist some absolute query strings (see below)
-       $GLOBALS['ctracker_whitelist'] = array(
+       $GLOBALS['ctracker_whitelist'] = [
                'cmd=new',    // LinPHA
                'cmd=edit',   // LinPHA
                'cmd=lostpw', // LinPHA
                '/css/status_config.php', // MantisBT
                '/css/common_config.php', // MantisBT
                '/javascript_config.php', // MantisBT
-       );
+       ];
  
        // Attacks we should detect and block
-       $GLOBALS['ctracker_get_blacklist'] = array(
+       $GLOBALS['ctracker_get_blacklist'] = [
                // SQL injections
                'union ', ' union', 'insert ',
                'select ', ' like', 'like ', 'drop ', 'update ',
@@@ -96,7 -96,7 +96,7 @@@
  
                // php.ini settings
                'allow_url_fopen', 'allow_url_include', 'auto_prepend_file', 'disable_functions', 'safe_mode',
-               'open_basedir',
+               'open_basedir', 'suhosin', 'cgi.force_redirect', 'cgi.redirect_status_env',
  
                // PHP commands/scripts
                'fopen', 'fwrite', 'phpinfo()', '\<?', '?\>', 'base64_decode', 'file_put_contents',
                'window.open', 'img src', 'img src', '.jsp', 'servlet', 'org.apache',
                'wwwacl', 'server-info', 'server-status', '/servlet/con', 'http_',
                'secure_site, ok', 'chunked', '<script', 'mod_gzip_status', '.system',
-               'uol.com', ',0x', '(0x',
-       );
+               'uol.com', ',0x', '(0x', 'INSERT_RANDOM_NUMBER_HERE',
+       ];
  
        // BLock these words found in User-Agent
-       $GLOBALS['ctracker_ua_blacklist'] = array(
+       $GLOBALS['ctracker_ua_blacklist'] = [
                // Compiler/interpreter
                'bin/g++ ', 'bin/c++ ', 'cc ', 'bin/python', 'bin/python', 'bin/tclsh',
                'bin/tclsh', 'bin/nasm', '/perl', 'cmd.exe',
  
                // /proc/ and other forbidden paths
                'proc/self/environ',
-       );
+       ];
  
        // Block these words found in POST requests
-       $GLOBALS['ctracker_post_blacklist'] = array(
+       $GLOBALS['ctracker_post_blacklist'] = [
                // This line is for detecting hidden link spam in wikis, forums, guestbooks, etc.
                ' style=', 'overflow:auto', 'height:1px', 'width:1px', 'display:hidden', 'style.display',
  
                // "Common" login names from VHCS exploiters ;-)
                'starhack', 'DeLiMehmet', 'hisset', 'Hisset', 'delimert', 'MecTruy'
-       );
+       ];
  
        // Also block these requests (mostly you don't want CONNECT to some SMTP sites)
-       $GLOBALS['ctracker_blocked_requests'] = array('CONNECT' => TRUE);
+       $GLOBALS['ctracker_blocked_methods'] = [
+               'CONNECT' => TRUE,
+       ];
  
        // Init more elements
        $GLOBALS['ctracker_post_track']   = '';
@@@ -220,7 -222,7 +222,7 @@@ function isCrackerTrackerWormDetected (
                ) || (
                        $GLOBALS['ctracker_checked_ua'] != crackerTrackerUserAgent(TRUE)
                ) || (
-                       isset($GLOBALS['ctracker_blocked_requests'][crackerTrackerRequestMethod()])
+                       isset($GLOBALS['ctracker_blocked_methods'][crackerTrackerRequestMethod()])
                )
        );
        //* DEBUG-DIE: */ die('isWorm='.intval($isWorm).PHP_EOL.'get='.PHP_EOL.'"'.$GLOBALS['ctracker_checked_get'].'"'.PHP_EOL.'"'.crackerTrackerQueryString().'"'.PHP_EOL.'ua='.PHP_EOL.'"'.$GLOBALS['ctracker_checked_ua'].'"'.PHP_EOL.'"'.crackerTrackerUserAgent().'"'.PHP_EOL);
@@@ -284,12 -286,12 +286,12 @@@ function sendCrackerTrackerTicketMails 
  // Sends a mail out
  function crackerTrackerSendMail ($mail, $recipient = NULL, $subject = NULL) {
        // Construct dummy array
-       $rowData = array(
+       $rowData = [
                'remote_addr' => determineCrackerTrackerRealRemoteAddress(),
                'proxy_addr'  => getenv('REMOTE_ADDR'),
                'check_get'   => $GLOBALS['ctracker_checked_get'],
                'server_name' => crackerTrackerServerName()
-       );
+       ];
  
        // Only send email if not yet found
        if (!isCrackerTrackerEntryFound($rowData)) {
@@@ -385,7 -387,7 +387,7 @@@ function crackerTrackerLogAttack () 
        } // END - if
  
        // Prepare array for database insert
-       $rowData = array(
+       $rowData = [
                'remote_addr'    => determineCrackerTrackerRealRemoteAddress(),
                'proxy_addr'     => getenv('REMOTE_ADDR'),
                'user_agent'     => crackerTrackerUserAgent(),
                'request_method' => crackerTrackerRequestMethod(),
                'proxy_used'     => $proxyUsed,
                'first_attempt'  => 'NOW()'
-       );
+       ];
  
        // Insert the array in database
        crackerTrackerInsertArray('ctracker_data', $rowData);
diff --combined libs/lib_general.php
index 9d518b4345d3e69d025a3f6d9743fd9c8d9308b0,515f0dc071591b1c375676f449e76dc68a452495..fa4643de30088e24b74c1d3721fe76b79a18265b
@@@ -4,7 -4,7 +4,7 @@@
   *
   * @author            Roland Haeder <webmaster@shipsimu.org>
   * @version           3.0.0
 - * @copyright Copyright (c) 2009 - 2011 Cracker Tracker Team
 + * @copyright Copyright (c) 2009 - 2017 Cracker Tracker Team
   * @license           GNU GPL 3.0 or any newer version
   * @link              http://www.shipsimu.org
   *
  if (!function_exists('implode_r')) {
        // Implode recursive a multi-dimension array, taken from www.php.net
        function implode_r ($glue, $array, $array_name = NULL) {
-               $return = array();
-               while(list($key,$value) = @each($array)) {
-                       if(is_array($value)) {
+               $return = [];
+               while (list($key,$value) = @each($array)) {
+                       if (is_array($value)) {
                                // Is an array again, so call recursive
                                $return[] = implode_r($glue, $value, (string) $key);
                        } else {
-                               if($array_name != NULL) {
+                               if ($array_name != NULL) {
                                        $return[] = $array_name . '[' . (string) $key . ']=' . $value . "\n";
                                } else {
                                        $return[] = $key . '=' . $value."\n";
                } // END - while
  
                // Return resulting array
-               return(implode($glue, $return));
+               return implode($glue, $return);
        } // END - function
  } // END - if
  
  if (!function_exists('implode_secure')) {
        // Implode a simple array with a 'call-back' to our escaper function
-       function implode_secure ($array) {
+       function implode_secure (array $array) {
                // Return string
                $return = '';
  
@@@ -85,7 -85,7 +85,7 @@@ function crackerTrackerLoadConfiguratio
        } // END - if
  
        // Load it
-       require($fqfn);
+       require $fqfn;
  
        // Load email header
        $GLOBALS['ctracker_header'] = crackerTrackerLoadEmailTemplate('header');
@@@ -383,7 -383,7 +383,7 @@@ function crackerTrackerLanguage () 
  }
  
  // Loads a given email template and passes through $content
- function crackerTrackerLoadEmailTemplate ($template, array $content = array(), $language = NULL) {
+ function crackerTrackerLoadEmailTemplate ($template, array $content = [], $language = NULL) {
        // Init language
        crackerTrackerLanguage();
  
@@@ -581,7 -581,7 +581,7 @@@ function unsetCtrackerData () 
                        'ctracker_language',
                        'ctracker_localized',
                        'ctracker_link',
-                       'ctracker_blocked_requests',
+                       'ctracker_blocked_methods',
                ) as $key) {
                        // Unset it
                        unset($GLOBALS[$key]);
diff --combined libs/lib_updates.php
index e09eae0306159e69fb672c930aa9e4900c0cda75,21ef93f731b709c0cd163dc4cc58bfdd7b7c835b..a454a86f409b241022973b7b0439c66cc715c3b2
@@@ -4,7 -4,7 +4,7 @@@
   *
   * @author            Roland Haeder <webmaster@shipsimu.org>
   * @version           3.0.0
 - * @copyright Copyright (c) 2009 - 2011 Cracker Tracker Team
 + * @copyright Copyright (c) 2009 - 2017 Cracker Tracker Team
   * @license           GNU GPL 3.0 or any newer version
   * @link              http://www.shipsimu.org
   *
@@@ -25,7 -25,7 +25,7 @@@
  // Init all updates
  function crackerTrackerInitUpdates () {
        // Add all
-       $GLOBALS['ctracker_updates'] = array(
+       $GLOBALS['ctracker_updates'] = [
                // Ticket system:
                0 => array(
                        'CREATE TABLE IF NOT EXISTS `ctracker_ticket` (
@@@ -98,7 -98,7 +98,7 @@@ FOREIGN KEY ( `ctracker_data_id` ) REFE
                        FROM `ctracker_data`
                        GROUP BY `request_method`'
                ),
-       );
+       ];
  }
  
  // Runs the given updates at number X