diff options
author | Ted Trask <ttrask01@yahoo.com> | 2016-08-10 16:19:00 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2016-08-10 16:19:00 +0000 |
commit | 0b49411ce957b38fc2f286e09a5b904aadc62229 (patch) | |
tree | 1e8d9d6bff5807c0ff49afff028d9d97e9c2aba8 | |
parent | 0b9af4253aa97e97a3546c89647adc22c64d0292 (diff) | |
download | acf-snort-master.tar.bz2 acf-snort-master.tar.xz |
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | snort-details-html.lsp | 2 | ||||
-rw-r--r-- | snort-model.lua | 7 |
3 files changed, 5 insertions, 6 deletions
@@ -7,7 +7,7 @@ APP_DIST=\ EXTRA_DIST=README Makefile config.mk -DISTFILES=$(APP_DIST) $(EXTRA_DIST) +DISTFILES=$(APP_DIST) $(EXTRA_DIST) TAR=tar diff --git a/snort-details-html.lsp b/snort-details-html.lsp index 35eebbe..2ed5770 100644 --- a/snort-details-html.lsp +++ b/snort-details-html.lsp @@ -8,7 +8,7 @@ html = require("acf.html") <% local header_level = htmlviewfunctions.displaysectionstart(data, page_info) %> <% local header_level2 = htmlviewfunctions.incrementheader(header_level) %> <% local header_level3 = htmlviewfunctions.incrementheader(header_level2) %> -<% +<% if #data.value == 0 then io.write("<p>No alerts found</p>") else diff --git a/snort-model.lua b/snort-model.lua index 6c633a3..7892ad3 100644 --- a/snort-model.lua +++ b/snort-model.lua @@ -1,4 +1,3 @@ --- acf model for displaying logfiles recusivly local mymodule = {} -- Load libraries @@ -21,11 +20,11 @@ function mymodule.getstatus() return modelfunctions.getstatus(processname, packagename, "Snort Status") end -function mymodule.get_startstop(self, clientdata) +function mymodule.get_startstop(self, clientdata) return modelfunctions.get_startstop(processname) end -function mymodule.startstop_service(self, startstop, action) +function mymodule.startstop_service(self, startstop, action) return modelfunctions.startstop_service(startstop, action) end @@ -69,7 +68,7 @@ function mymodule.read_alert() end --Start sorting priority-table local sorted_table = {} - for name,value in pairs(alertpriority) do + for name,value in pairs(alertpriority) do table.insert(sorted_table, {name=name, value=value}) end table.sort(sorted_table, function(a,b) return (a.name < b.name) end) |