Florian Schaal
2016-01-09 db206906cba345df476686b1678fdda29632cdd1
use filter_var instead of regex for ip-addresses
1 files modified
74 ■■■■ changed files
interface/lib/classes/tform_base.inc.php 74 ●●●● patch | view | raw | blame | history
interface/lib/classes/tform_base.inc.php
@@ -975,16 +975,7 @@
                            $this->errorMessage .= $errmsg."<br />\r\n";
                        }
                    }
                } else {
                    if(!preg_match("/^\w+[\w\.\-\+]*\w{0,}@\w+[\w.-]*\w+\.[a-zA-Z0-9\-]{2,30}$/i", $field_value)) {
                        $errmsg = $validator['errmsg'];
                        if(isset($this->wordbook[$errmsg])) {
                            $this->errorMessage .= $this->wordbook[$errmsg]."<br />\r\n";
                        } else {
                            $this->errorMessage .= $errmsg."<br />\r\n";
                        }
                    }
                }
                } else $this->errorMessage .= "function filter_var missing <br />\r\n";
                break;
            case 'ISINT':
                if(function_exists('filter_var') && $field_value < 2147483647) {
@@ -996,20 +987,11 @@
                            $this->errorMessage .= $errmsg."<br />\r\n";
                        }
                    }
                } else {
                    $tmpval = $app->functions->intval($field_value);
                    if($tmpval === 0 and !empty($field_value)) {
                        $errmsg = $validator['errmsg'];
                        if(isset($this->wordbook[$errmsg])) {
                            $this->errorMessage .= $this->wordbook[$errmsg]."<br />\r\n";
                        } else {
                            $this->errorMessage .= $errmsg."<br />\r\n";
                        }
                    }
                }
                } else $this->errorMessage .= "function filter_var missing <br />\r\n";
                break;
            case 'ISPOSITIVE':
                if(!is_numeric($field_value) || $field_value <= 0){
                if(function_exists('filter_var')) {
                    if($field_value != '' && filter_var($field_value, FILTER_VALIDATE_INT, array("options" => array('min_range'=>1))) === false) {
                    $errmsg = $validator['errmsg'];
                    if(isset($this->wordbook[$errmsg])) {
                        $this->errorMessage .= $this->wordbook[$errmsg]."<br />\r\n";
@@ -1017,10 +999,10 @@
                        $this->errorMessage .= $errmsg."<br />\r\n";
                    }
                }
                } else $this->errorMessage .= "function filter_var missing <br />\r\n";
                break;
            case 'V6PREFIXEND':
                $explode_field_value = explode(':',$field_value);
//                if ($explode_field_value[count($explode_field_value)-1]=='' && $explode_field_value[count($explode_field_value)-2]=='' ){ }
                if (!$explode_field_value[count($explode_field_value)-1]=='' && $explode_field_value[count($explode_field_value)-2]!='' ) {
                    $errmsg = $validator['errmsg'];
                    if(isset($this->wordbook[$errmsg])) {
@@ -1065,16 +1047,8 @@
                break;
            case 'ISIPV4':
                $vip=1;
//                if(preg_match("/^[0-9]{1,3}(\.)[0-9]{1,3}(\.)[0-9]{1,3}(\.)[0-9]{1,3}$/", $field_value)){
                if(preg_match("/^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/", $field_value)){
                    $groups=explode(".", $field_value);
                    foreach($groups as $group){
                        if($group<0 or $group>255)
                            $vip=0;
                    }
                }else{$vip=0;}
                if($vip==0) {
                if(function_exists('filter_var')) {
                    if(!filter_var($field_value, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4)) {
                    $errmsg = $validator['errmsg'];
                    if(isset($this->wordbook[$errmsg])) {
                        $this->errorMessage .= $this->wordbook[$errmsg]."<br />\r\n";
@@ -1082,6 +1056,20 @@
                        $this->errorMessage .= $errmsg."<br />\r\n";
                    }
                }
                } else $this->errorMessage .= "function filter_var missing <br />\r\n";
                break;
            case 'ISIPV6':
                if(function_exists('filter_var')) {
                    if(!filter_var($field_value, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6)) {
                        $errmsg = $validator['errmsg'];
                        if(isset($this->wordbook[$errmsg])) {
                            $this->errorMessage .= $this->wordbook[$errmsg]."<br />\r\n";
                        } else {
                            $this->errorMessage .= $errmsg."<br />\r\n";
                        }
                    }
                } else $this->errorMessage .= "function filter_var missing <br />\r\n";
                break;
            case 'ISIP':
@@ -1107,25 +1095,7 @@
                                    $this->errorMessage .= $errmsg."<br />\r\n";
                                }
                            }
                        } else {
                            //* Check content with regex, if we use php < 5.2
                            $ip_ok = 0;
                            if(preg_match("/^(\:\:([a-f0-9]{1,4}\:){0,6}?[a-f0-9]{0,4}|[a-f0-9]{1,4}(\:[a-f0-9]{1,4}){0,6}?\:\:|[a-f0-9]{1,4}(\:[a-f0-9]{1,4}){1,6}?\:\:([a-f0-9]{1,4}\:){1,6}?[a-f0-9]{1,4})(\/\d{1,3})?$/i", $field_value)){
                                $ip_ok = 1;
                            }
//                            if(preg_match("/^[0-9]{1,3}(\.)[0-9]{1,3}(\.)[0-9]{1,3}(\.)[0-9]{1,3}$/", $field_value)){
                            if(preg_match("/^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/", $field_value)){
                                $ip_ok = 1;
                            }
                            if($ip_ok == 0) {
                                $errmsg = $validator['errmsg'];
                                if(isset($this->wordbook[$errmsg])) {
                                    $this->errorMessage .= $this->wordbook[$errmsg]."<br />\r\n";
                                } else {
                                    $this->errorMessage .= $errmsg."<br />\r\n";
                                }
                            }
                        }
                        } else $this->errorMessage .= "function filter_var missing <br />\r\n";
                    }
                }
                break;