]> git.mxchange.org Git - ctracker.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Mon, 1 Apr 2019 16:19:28 +0000 (18:19 +0200)
committerRoland Häder <roland@mxchange.org>
Mon, 1 Apr 2019 16:20:37 +0000 (18:20 +0200)
- moved Windows-related strings to own "category"
- added system.net.webclient and powershell, both not wanted in URLs
- ... and POST data as well

Signed-off-by: Roland Häder <roland@mxchange.org>
libs/lib_detector.php

index 49d171e7f2c204b6f1f87a7a795bcfd0f59d2cd6..265e241803f70cf34a4cf1c03f7a7a5a9cb9f906 100644 (file)
@@ -91,8 +91,10 @@ function initCrackerTrackerArrays () {
 
                // Compiler/interpreter
                'bin/g++ ', 'bin/c++ ', 'cc ', 'bin/python', 'bin/python', 'bin/tclsh',
-               'bin/tclsh', 'bin/nasm', '/perl', 'cmd.exe',
-               'nc.exe', 'ftp.exe',
+               'bin/tclsh', 'bin/nasm', '/perl',
+
+               // Windows-related
+               'cmd.exe', 'nc.exe', 'ftp.exe', 'powershell', 'system.net.webclient',
 
                // php.ini settings
                'allow_url_fopen', 'allow_url_include', 'auto_prepend_file', 'disable_functions', 'safe_mode',
@@ -162,8 +164,10 @@ function initCrackerTrackerArrays () {
        $GLOBALS['ctracker_ua_blacklist'] = [
                // Compiler/interpreter
                'bin/g++ ', 'bin/c++ ', 'cc ', 'bin/python', 'bin/python', 'bin/tclsh',
-               'bin/tclsh', 'bin/nasm', '/perl', 'cmd.exe',
-               'nc.exe', 'ftp.exe', 'wget ', 'system(', 'curl ',
+               'bin/tclsh', 'bin/nasm', '/perl', 'wget ', 'system(', 'curl ',
+
+               // Windows-related
+               'cmd.exe', 'nc.exe', 'ftp.exe', 'powershell', 'system.net.webclient',
 
                // php.ini settings
                'allow_url_fopen', 'allow_url_include', 'auto_prepend_file', 'disable_functions', 'safe_mode',