From 408a58f6f6b0d419bc6b81eb93f32c701e19118a Mon Sep 17 00:00:00 2001 From: Manuel Munz Date: Sat, 12 Feb 2011 11:09:13 +0000 Subject: web: Improve hostname validation --- libs/web/htdocs/luci-static/resources/cbi.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libs/web/htdocs/luci-static/resources/cbi.js') diff --git a/libs/web/htdocs/luci-static/resources/cbi.js b/libs/web/htdocs/luci-static/resources/cbi.js index 44a5b2aec7..d12d050a8a 100644 --- a/libs/web/htdocs/luci-static/resources/cbi.js +++ b/libs/web/htdocs/luci-static/resources/cbi.js @@ -141,8 +141,8 @@ var cbi_validators = { }, 'hostname': function(v) - { - return (v.match(/^[a-zA-Z_][a-zA-Z0-9_\-.]*$/) != null); + { if ( v.length <= 24 ) + return (v.match(/^[a-zA-Z0-9][a-zA-Z0-9\-.]*[a-zA-Z0-9]$/) != null); }, 'wpakey': function(v) -- cgit v1.2.3