luci-mod-admin-full: fix possible shell injection in bandwith status
authorJo-Philipp Wich <jo@mein.io>
Wed, 4 Apr 2018 22:33:09 +0000 (00:33 +0200)
committerJo-Philipp Wich <jo@mein.io>
Wed, 4 Apr 2018 22:33:09 +0000 (00:33 +0200)
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
modules/luci-mod-admin-full/luasrc/controller/admin/status.lua

index 22e1b7e..4b03a18 100644 (file)
@@ -62,7 +62,7 @@ end
 function action_bandwidth(iface)
        luci.http.prepare_content("application/json")
 
-       local bwc = io.popen("luci-bwc -i %q 2>/dev/null" % iface)
+       local bwc = io.popen("luci-bwc -i '%s' 2>/dev/null" % iface:gsub("'", ""))
        if bwc then
                luci.http.write("[")
 
@@ -80,7 +80,7 @@ end
 function action_wireless(iface)
        luci.http.prepare_content("application/json")
 
-       local bwc = io.popen("luci-bwc -r %q 2>/dev/null" % iface)
+       local bwc = io.popen("luci-bwc -r '%s' 2>/dev/null" % iface:gsub("'", ""))
        if bwc then
                luci.http.write("[")