mirror of https://github.com/aredn/aredn.git
Prevent < and > being used in service names (#437)
This commit is contained in:
parent
ba55aed754
commit
675beca8f8
|
@ -88,7 +88,7 @@ function navbar()
|
||||||
end
|
end
|
||||||
|
|
||||||
function validate_service_name(name)
|
function validate_service_name(name)
|
||||||
if not name or name == "" or name:match("[:-\"|]") then
|
if not name or name == "" or name:match("[:-\"|<>]") then
|
||||||
return false
|
return false
|
||||||
else
|
else
|
||||||
return true
|
return true
|
||||||
|
@ -96,7 +96,7 @@ function validate_service_name(name)
|
||||||
end
|
end
|
||||||
|
|
||||||
function validate_service_protocol(proto)
|
function validate_service_protocol(proto)
|
||||||
if not proto or proto == "" or proto:match("[:-\"|]") or not proto:match("^%w+") then
|
if not proto or proto == "" or proto:match("[:-\"|<>]") or not proto:match("^%w+") then
|
||||||
return false
|
return false
|
||||||
else
|
else
|
||||||
return true
|
return true
|
||||||
|
@ -104,7 +104,7 @@ function validate_service_protocol(proto)
|
||||||
end
|
end
|
||||||
|
|
||||||
function validate_service_suffix(suffix)
|
function validate_service_suffix(suffix)
|
||||||
if not suffix or suffix:match("[:-\"|]") or not suffix:match("^[%w/?._=#-]*$") then
|
if not suffix or suffix:match("[:-\"|<>]") or not suffix:match("^[%w/?._=#-]*$") then
|
||||||
return false
|
return false
|
||||||
else
|
else
|
||||||
return true
|
return true
|
||||||
|
@ -113,7 +113,7 @@ end
|
||||||
|
|
||||||
local serv_err = {}
|
local serv_err = {}
|
||||||
function serverr(msg)
|
function serverr(msg)
|
||||||
serv_err[#serv_err + 1] = msg
|
serv_err[#serv_err + 1] = msg:gsub(">", ">"):gsub("<", "<")
|
||||||
end
|
end
|
||||||
local port_err = {}
|
local port_err = {}
|
||||||
function porterr(msg)
|
function porterr(msg)
|
||||||
|
|
Loading…
Reference in New Issue