public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* validfqdn
@ 2018-12-12 22:48 Bob Brewer
  2018-12-13 16:36 ` validfqdn Michael Tremer
  0 siblings, 1 reply; 4+ messages in thread
From: Bob Brewer @ 2018-12-12 22:48 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1489 bytes --]

I am porting the old ipcop addon 'Banish' to IPFire and during testing have 
found a problem in general-functions.pl which causes validfqdn to return 1 
when testing valid and invalid ip addresses when it should return 0. 

As this is not a problem with IPCop 2 a comparison of the validfqdn section 
in IPFire's general-functions.pl shows a missing segment that checks the TLD 
can only be a-z or A-Z.

Applying the patch below to general-functions.pl corrects the problem with 
my Banish port and I haven't found any problems affecting IPFire's 
operation.

Regards

Rob

--- /tmp/general-functions.pl   2018-09-19 10:32:37.000000000 +0100
+++ /tmp/general-functions.pl.new       2018-12-12 22:13:37.394653609 +0000
@@ -666,9 +666,13 @@
 }
 
 sub validfqdn
+# modified to add addition test to confirm TL is only a-z or A-Z
+# as per ipcop rwb 12/12/18
+
 {
        my $part;
-
+        my $tld;
+     
        # Checks a fully qualified domain name against RFC1035
         my $fqdn = $_[0];
        my @parts = split (/\./, $fqdn);        # Split hostname at the '.'
@@ -689,7 +693,14 @@
                # Last character can only be a letter or a digit
                if (substr ($part, -1, 1) !~ /^[a-zA-Z0-9]*$/) {
                        return 0;}
-       }
+           # Store for additional check on TLD
+           $tld = $part;
+        } 
+
+        # TLD valid characters are a-z, A-Z
+        if ($tld !~ /^[a-zA-Z]*$/) {
+        return 0;
+        }
        return 1;
 }


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-12-14  8:25 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-12 22:48 validfqdn Bob Brewer
2018-12-13 16:36 ` validfqdn Michael Tremer
2018-12-13 21:06   ` validfqdn Bob Brewer
2018-12-14  8:25     ` validfqdn Tapani Tarvainen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox