applications/luci-wol: fix XSS
This commit is contained in:
parent
168f025719
commit
305b25486a
1 changed files with 2 additions and 3 deletions
|
@ -48,7 +48,7 @@ if has_ewk then
|
||||||
end
|
end
|
||||||
|
|
||||||
iface:value("", translate("Broadcast on all interfaces"))
|
iface:value("", translate("Broadcast on all interfaces"))
|
||||||
|
|
||||||
for _, e in ipairs(sys.net.devices()) do
|
for _, e in ipairs(sys.net.devices()) do
|
||||||
if e ~= "lo" then iface:value(e) end
|
if e ~= "lo" then iface:value(e) end
|
||||||
end
|
end
|
||||||
|
@ -86,7 +86,7 @@ end
|
||||||
|
|
||||||
function host.write(self, s, val)
|
function host.write(self, s, val)
|
||||||
local host = luci.http.formvalue("cbid.wol.1.mac")
|
local host = luci.http.formvalue("cbid.wol.1.mac")
|
||||||
if host and #host > 0 then
|
if host and #host > 0 and host:match("^[a-fA-F0-9:]+$") then
|
||||||
local cmd
|
local cmd
|
||||||
local util = luci.http.formvalue("cbid.wol.1.binary") or (
|
local util = luci.http.formvalue("cbid.wol.1.binary") or (
|
||||||
has_ewk and "/usr/bin/etherwake" or "/usr/bin/wol"
|
has_ewk and "/usr/bin/etherwake" or "/usr/bin/wol"
|
||||||
|
@ -127,4 +127,3 @@ end
|
||||||
|
|
||||||
|
|
||||||
return m
|
return m
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue