Till Brehm
2014-10-27 0e34bade9cc2fa831f9c8a344b2ebfdf4047848c
Fixed: FS#3718 - SQL injection checker false positive alert in APS installer
1 files modified
5 ■■■■■ changed files
interface/lib/classes/db_mysql.inc.php 5 ●●●●● patch | view | raw | blame | history
interface/lib/classes/db_mysql.inc.php
@@ -132,6 +132,11 @@
            
            if($ids_config['sql_scan_enabled'] == 'yes') {
                
                // Remove whitespace
                $string = trim($string);
                if(substr($string,-1) == ';') $string = substr($string,0,-1);
                // Save original string
                $string_orig = $string;
                
                //echo $string;