summaryrefslogtreecommitdiffstats
path: root/usr/local/www/services_dyndns_edit.php
diff options
context:
space:
mode:
authorErmal Luçi <eri@pfsense.org>2009-05-07 17:24:28 +0000
committerErmal Luçi <eri@pfsense.org>2009-05-07 17:24:28 +0000
commitee2db55f73eaa2639fa9aa35a469eebd52aa7e5a (patch)
tree60133f2270d5caef7a7fa59d22cfe5466a0c36aa /usr/local/www/services_dyndns_edit.php
parent21fcd99a621c1b761f04542b297ee77142d8a40e (diff)
downloadpfsense-ee2db55f73eaa2639fa9aa35a469eebd52aa7e5a.zip
pfsense-ee2db55f73eaa2639fa9aa35a469eebd52aa7e5a.tar.gz
Move validation of dyndns username to the only place it uses it, the GUI page. There it makes sense. While there add ':' character to allow NO-ip subaccounts.
Diffstat (limited to 'usr/local/www/services_dyndns_edit.php')
-rw-r--r--usr/local/www/services_dyndns_edit.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/usr/local/www/services_dyndns_edit.php b/usr/local/www/services_dyndns_edit.php
index 0cee2c0..8cfafc1 100644
--- a/usr/local/www/services_dyndns_edit.php
+++ b/usr/local/www/services_dyndns_edit.php
@@ -34,6 +34,17 @@
##|-PRIV
+/* returns true if $uname is a valid DynDNS username */
+function is_dyndns_username($uname) {
+ if (!is_string($uname))
+ return false;
+
+ if (preg_match("/[^a-z0-9\-.@_:]/i", $uname))
+ return false;
+ else
+ return true;
+}
+
require("guiconfig.inc");
if (!is_array($config['dyndnses']['dyndns'])) {
OpenPOWER on IntegriCloud