summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-noddos/luasrc
diff options
context:
space:
mode:
Diffstat (limited to 'applications/luci-app-noddos/luasrc')
-rw-r--r--applications/luci-app-noddos/luasrc/model/cbi/noddos.lua46
-rw-r--r--applications/luci-app-noddos/luasrc/view/noddos/clients.htm111
2 files changed, 0 insertions, 157 deletions
diff --git a/applications/luci-app-noddos/luasrc/model/cbi/noddos.lua b/applications/luci-app-noddos/luasrc/model/cbi/noddos.lua
deleted file mode 100644
index 3abb73bc66..0000000000
--- a/applications/luci-app-noddos/luasrc/model/cbi/noddos.lua
+++ /dev/null
@@ -1,46 +0,0 @@
--- Copyright 2017 Steven Hessing (steven.hessing@gmail.com)
--- This is free software, licensed under the GNU General Public License v3.
--- /usr/lib/lua/luci/model/cbi/noddos.lua
-
-m = Map("noddos", translate("Client Firewall"),
- translate("Noddos controls traffic from the clients on your network to the Internet. " ..
- "This helps protect your network, the bandwidth on your Internet connection and " ..
- "the Internet"))
-
-s = m:section(TypedSection, "noddos", translate("Server Settings"))
-s.anonymous = true
-s.addremove = false
-
-s:option(Flag, "rfc1918",
- translate("Private networks"),
- translate("Report traffic to private networks (10/8, 172.16/12, 192.168/16, fd75:6b5d:352c:ed05::/64)")).default=false
-
-s:option(Flag, "upload",
- translate("Upload anonimized traffic stats"),
- translate("Uploading your statistics helps improving device recognition " ..
- "and discovering hacked devices & botnets"))
-
-o = s:option(DynamicList, "whitelistipv4",
- translate("Excluded IPv4 addresses"),
- translate("Don't monitor these IPv4 addresses"))
-o.optional = true
-o.placeholder = "127.0.0.1 192.168.1.1"
-o.delimiter = " "
-o.datatype="list(ip4addr)"
-
-o = s:option(DynamicList, "whitelistipv6",
- translate("Excluded IPv6 addresses"),
- translate("Don't monitor these IPv6 addresses"))
-o.optional = true
-o.delimiter = " "
-o.datatype="list(ip6addr)"
-
-o = s:option(DynamicList, "whitelistmac",
- translate("Excluded MAC addresses"),
- translate("Don't monitor these MAC addresses"))
-o.optional = true
-o.delimiter = " "
-o.datatype="list(macaddr)"
-
-return m
-
diff --git a/applications/luci-app-noddos/luasrc/view/noddos/clients.htm b/applications/luci-app-noddos/luasrc/view/noddos/clients.htm
deleted file mode 100644
index 171a5e9aab..0000000000
--- a/applications/luci-app-noddos/luasrc/view/noddos/clients.htm
+++ /dev/null
@@ -1,111 +0,0 @@
-<%#
- Copyright (C) 2017 Steven Hessing <steven.hessing@gmail.com>
- This is free software, licensed under the GNU General Public License v3.
- /usr/lib/lua/luci/view/clients.htm
--%>
-
-<%-
-
- require "nixio.fs"
- require "os"
-
- local last_modified = "<boottime>"
- local style = true
- local v
- local devdump
-
- if nixio.fs.access("/var/lib/noddos/DeviceDump.json") then
- last_modified = os.date("%c", nixio.fs.stat("/var/lib/noddos/DeviceDump.json")['mtime'])
- io.input("/var/lib/noddos/DeviceDump.json")
- t = io.read("*all")
- devdump = luci.jsonc.parse(t)
- io.input("/var/lib/noddos/DeviceProfiles.json")
- t = io.read("*all")
- temp = luci.jsonc.parse(t)
- devicevalues = {}
- for i, v in ipairs(temp) do
- devicevalues[v.DeviceProfileUuid] = v
- end
- end
--%>
-
-<%+header%>
-
-<div class="cbi-map" id="cbi-network">
- <h2 name="content"><%:Clients%></h2>
- <div class="cbi-map-descr"><%:The following clients have been discovered on the network. The last discovery was completed at %><%=last_modified%></div>
-
- <fieldset class="cbi-section">
- <legend><%:Recognized Clients%></legend>
- <div class="cbi-section-node">
- <div class="table cbi-section-table">
- <div class="tr cbi-section-table-titles">
- <div class="th cbi-section-table-cell"><%:Hostname%></div>
- <div class="th cbi-section-table-cell"><%:IPv4%></div>
- <div class="th cbi-section-table-cell"><%:MAC%></div>
- <div class="th cbi-section-table-cell"><%:Manufacturer%></div>
- <div class="th cbi-section-table-cell"><%:Model%></div>
- <div class="th cbi-section-table-cell"><%:Class%></div>
- </div>
-
- <%
- for i,v in ipairs(devdump) do
- if v.DeviceProfileUuid ~= "" then
- %>
- <div class="tr cbi-section-table-row cbi-rowstyle-<%=(style and 1 or 2)%>">
- <div class="td cbi-value-field"><%=v.Hostname%></div>
- <div class="td cbi-value-field"><%=v.Ipv4Address%></div>
- <div class="td cbi-value-field"><a href="/cgi-bin/clientdetails?mac=<%=v.MacAddress%>"><%=v.MacAddress%></a></div>
- <div class="td cbi-value-field"><%=devicevalues[v.DeviceProfileUuid].Manufacturer%></div>
- <div class="td cbi-value-field"><%=devicevalues[v.DeviceProfileUuid].Model%></div>
- <div class="td cbi-value-field"><%=devicevalues[v.DeviceProfileUuid].ThingClass%></div>
- </div>
- <%
- style=false
- end
- end
- %>
- </div>
- </div>
- </fieldset>
- <br />
- <fieldset class="cbi-section">
- <legend><%:Unrecognized Clients%></legend>
- <div class="cbi-section-node">
- <div class="table cbi-section-table">
- <div class="tr cbi-section-table-titles">
- <div class="th cbi-section-table-cell"><%:Hostname%></div>
- <div class="th cbi-section-table-cell"><%:IPv4%></div>
- <div class="th cbi-section-table-cell"><%:MAC%></div>
- <div class="th cbi-section-table-cell"><%:Manufacturer%></div>
- <div class="th cbi-section-table-cell"><%:Model%></div>
- <div class="th cbi-section-table-cell"><%:DHCP Vendor%></div>
- <div class="th cbi-section-table-cell"><%:DHCP Hostname%></div>
- </div>
-
- <%
- for i,v in ipairs(devdump) do
- if v.DeviceProfileUuid == "" then
- %>
- <div class="tr cbi-section-table-row cbi-rowstyle-<%=(style and 1 or 2)%>">
- <div class="td cbi-value-field"><%=v.Hostname%></div>
- <div class="td cbi-value-field"><%=v.Ipv4Address%></div>
- <div class="td cbi-value-field"><a href="/cgi-bin/clientdetails?mac=<%=v.MacAddress%>"><%=v.MacAddress%></a></div>
- <div class="td cbi-value-field"><%=v.SsdpManufacturer%></div>
- <div class="td cbi-value-field"><%=v.SsdpModelName%></div>
- <div class="td cbi-value-field"><%=v.DhcpVendor1%></div>
- <div class="td cbi-value-field"><%=v.DhcpHostname%></div>
- </div>
- <%
- style=false
- end
- end
- %>
- </div>
- </div>
- </fieldset>
-
-</div>
-
-<%+footer%>
-