summaryrefslogtreecommitdiffstats
path: root/iptables-details-html.lsp
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2009-01-15 21:44:39 +0000
committerTed Trask <ttrask01@yahoo.com>2009-01-15 21:44:39 +0000
commita16908c61d018a5961751ec908f1b890b2217b54 (patch)
tree111abfc0c89d95c63acb6dfc7b76b67ee63fefa9 /iptables-details-html.lsp
parentdac8706eaa8243e8fb6bcfd00fbdbf779f9f0ebc (diff)
downloadacf-iptables-a16908c61d018a5961751ec908f1b890b2217b54.tar.bz2
acf-iptables-a16908c61d018a5961751ec908f1b890b2217b54.tar.xz
Modified html.lua and viewlibrary.lua and all html files to html_escape variables before displaying them.
git-svn-id: svn://svn.alpinelinux.org/acf/iptables/trunk@1678 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'iptables-details-html.lsp')
-rw-r--r--iptables-details-html.lsp8
1 files changed, 4 insertions, 4 deletions
diff --git a/iptables-details-html.lsp b/iptables-details-html.lsp
index 9edc25d..daf646a 100644
--- a/iptables-details-html.lsp
+++ b/iptables-details-html.lsp
@@ -9,13 +9,13 @@ io.write("</span>")
<% viewlibrary.dispatch_component("status") %>
-<H2><%= data.label %></H2>
+<H2><%= html.html_escape(data.label) %></H2>
<DL>
<% for i,tab in ipairs({"filter", "nat", "mangle"}) do %>
- <H3><%= tab %></H3>
+ <H3><%= html.html_escape(tab) %></H3>
<TABLE>
- <TR><TD><%= data.value[tab].chains %> Chains</TD></TR>
- <TR><TD><%= data.value[tab].rules %> Rules</TD></TR>
+ <TR><TD><%= html.html_escape(data.value[tab].chains) %> Chains</TD></TR>
+ <TR><TD><%= html.html_escape(data.value[tab].rules) %> Rules</TD></TR>
</TABLE>
<% end %>
</DL>