git: 84c9db61e287 - main - net/ntopng: Update to 5.0

Guido Falsi madpilot at FreeBSD.org
Sun Aug 22 17:25:33 UTC 2021


The branch main has been updated by madpilot:

URL: https://cgit.FreeBSD.org/ports/commit/?id=84c9db61e287493d33f24c5cb108908f56a801ca

commit 84c9db61e287493d33f24c5cb108908f56a801ca
Author:     Guido Falsi <madpilot at FreeBSD.org>
AuthorDate: 2021-08-22 17:24:19 +0000
Commit:     Guido Falsi <madpilot at FreeBSD.org>
CommitDate: 2021-08-22 17:25:27 +0000

    net/ntopng: Update to 5.0
    
    - Use ports provided lua library
---
 net/ntopng/Makefile                            |    8 +-
 net/ntopng/distinfo                            |    6 +-
 net/ntopng/files/patch-Makefile.in             |   25 +-
 net/ntopng/files/patch-configure.seed          |   23 +-
 net/ntopng/files/patch-include_ntop__defines.h |   16 +-
 net/ntopng/pkg-plist                           | 1011 +++++++++++++++---------
 6 files changed, 699 insertions(+), 390 deletions(-)

diff --git a/net/ntopng/Makefile b/net/ntopng/Makefile
index 9c269fe858e9..812f1d09b6b9 100644
--- a/net/ntopng/Makefile
+++ b/net/ntopng/Makefile
@@ -1,7 +1,7 @@
 # Created by: Muhammad Moinur Rahman <5u623l20 at gmail.com>
 
 PORTNAME=	ntopng
-PORTVERSION=	4.2.d20210726
+PORTVERSION=	5.0.d20210820
 PORTEPOCH=	1
 CATEGORIES=	net
 
@@ -25,7 +25,7 @@ LIB_DEPENDS=	librrd.so:databases/rrdtool \
 BUILD_DEPENDS=	bash:shells/bash
 
 USES=		autoreconf compiler:c++11-lang cpe gmake libtool localbase \
-		mysql pathfix pkgconfig shebangfix sqlite ssl
+		lua:53 mysql pathfix pkgconfig shebangfix sqlite ssl
 USE_OPENLDAP=	yes
 
 SUB_FILES=	ntopng-geoip2update.sh pkg-deinstall
@@ -40,7 +40,7 @@ PLIST_SUB=	NTOPNGUSER="${USERS}" NTOPNGROUP="${GROUPS}"
 
 USE_GITHUB=	yes
 GH_ACCOUNT=	ntop
-GH_TAGNAME=	025e96e
+GH_TAGNAME=	8586709
 
 CPE_VENDOR=	ntop
 
@@ -53,6 +53,8 @@ NLS_USES=	gettext
 USE_RC_SUBR=	ntopng
 
 post-patch:
+	@${REINPLACE_CMD} 's|%%LOCALBASE%%|${LOCALBASE}|g' \
+		${WRKSRC}/Makefile.in
 	cd ${WRKSRC} && ${SH} autogen.sh
 
 post-install:
diff --git a/net/ntopng/distinfo b/net/ntopng/distinfo
index 8ab7b4174202..04e47f4f65ed 100644
--- a/net/ntopng/distinfo
+++ b/net/ntopng/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1628332234
-SHA256 (ntop-ntopng-4.2.d20210726-025e96e_GH0.tar.gz) = fbec1aa13766816e0b1dfcee0a62661d14fb90812c54a0c5c14193e64481fa2d
-SIZE (ntop-ntopng-4.2.d20210726-025e96e_GH0.tar.gz) = 57567349
+TIMESTAMP = 1629629127
+SHA256 (ntop-ntopng-5.0.d20210820-8586709_GH0.tar.gz) = 998255556f7e50d107d0a782bf1a5ee02009a22dd0ddc7bc5a32c6e0d6f0af7a
+SIZE (ntop-ntopng-5.0.d20210820-8586709_GH0.tar.gz) = 57937186
diff --git a/net/ntopng/files/patch-Makefile.in b/net/ntopng/files/patch-Makefile.in
index 7ad567d86d87..f8bf8fec1eda 100644
--- a/net/ntopng/files/patch-Makefile.in
+++ b/net/ntopng/files/patch-Makefile.in
@@ -1,7 +1,17 @@
---- Makefile.in.orig	2018-12-21 18:58:17 UTC
+--- Makefile.in.orig	2021-08-20 09:38:15 UTC
 +++ Makefile.in
-@@ -95,7 +95,7 @@ ifeq (@NEDGE@, 0)
-  HAS_ZEROMQ=$(shell pkg-config --exists libzmq; echo $$?)
+@@ -39,7 +39,8 @@ else ifeq ($(OS),Darwin)
+ 	LUA_PLATFORM=macosx
+ else ifeq ($(OS), $(filter $(OS), FreeBSD))
+ 	LUA_PLATFORM=freebsd
+-	LUA_LIB=/usr/local/lib/liblua-5.3.a
++        LUA_INC=-I%%LOCALBASE%%/include/lua53
++	LUA_LIB=-llua-5.3
+ endif
+ 
+ 
+@@ -87,7 +88,7 @@ ifeq (@NEDGE@, 0)
+  HAS_ZEROMQ=$(shell pkg-config --exists libzmq && echo 0)
   ifeq ($(HAS_ZEROMQ), 0)
  	ZEROMQ_INC = $(shell pkg-config --cflags libzmq)
 -	ZMQ_STATIC=/usr/local/lib/libzmq.a
@@ -9,3 +19,12 @@
  	ifeq ($(wildcard $(ZMQ_STATIC)),)
  		ZEROMQ_LIB = $(shell pkg-config --libs libzmq)
  	else
+@@ -123,7 +124,7 @@ RPM_PKG = $(TARGET)-$(NTOPNG_VERSION)- at REVISION@.$(PLA
+ RPM_DATA_PKG = $(TARGET)-data-$(NTOPNG_VERSION)- at REVISION@.noarch.rpm
+ ######
+ 
+-LIB_TARGETS = $(LUA_LIB)
++# LIB_TARGETS = $(LUA_LIB)
+ 
+ ifneq ($(HAS_ZEROMQ), 0)
+ LIB_TARGETS += $(ZEROMQ_LIB)
diff --git a/net/ntopng/files/patch-configure.seed b/net/ntopng/files/patch-configure.seed
index a67900b894cd..b9958d2766f8 100644
--- a/net/ntopng/files/patch-configure.seed
+++ b/net/ntopng/files/patch-configure.seed
@@ -1,15 +1,15 @@
---- configure.seed.orig	2021-03-10 17:29:02 UTC
+--- configure.seed.orig	2021-08-20 09:38:15 UTC
 +++ configure.seed
-@@ -4,7 +4,7 @@ dnl> Do not add anything above
- 
- AC_ARG_WITH(sanitizer,     [  --with-sanitizer   Build with support for the LLVM address sanitizer])
+@@ -5,7 +5,7 @@ dnl> Do not add anything above
+ HERE=`pwd`
+ SYSTEM=`uname -s`
  
 -CPPFLAGS="${CPPFLAGS} -Wno-address-of-packed-member -Wno-unused-function"
 +CPPFLAGS="${CPPFLAGS} -Wno-unused-function"
  AC_PROG_CPP
  AC_PROG_CXX
  
-@@ -128,33 +128,8 @@ fi
+@@ -142,33 +142,8 @@ fi
  # On CentOS 6 `git rev-list HEAD --count` does not work
  #
  #
@@ -44,7 +44,7 @@
  SHORT_MACHINE=`uname -m | cut -b1-3`
  
  GIT_RELEASE="@GIT_RELEASE@"
-@@ -298,7 +273,7 @@ else
+@@ -312,7 +287,7 @@ else
    fi
  fi
  
@@ -53,7 +53,16 @@
  
  AC_MSG_CHECKING(for ntopng professional edition)
  
-@@ -716,11 +691,6 @@ AC_DEFINE_UNQUOTED(_CRT_SECURE_NO_WARNINGS, 1, [Disabl
+@@ -454,7 +429,7 @@ if test "${with_nedge+set}" != set; then
+  PF_RING_HOME=${HOME}/PF_RING
+ 
+   if test $SYSTEM = "FreeBSD"; then
+-     LIBPCAP="${PF_RING_HOME}/userland/libpcap/libpcap.a"
++     # Use pcap from base
+   else
+     if test -d ${PF_RING_HOME}; then
+       AC_MSG_CHECKING(for PF_RING source installed in $PF_RING_HOME)
+@@ -730,11 +705,6 @@ AC_DEFINE_UNQUOTED(_CRT_SECURE_NO_WARNINGS, 1, [Disabl
  GMAKE=`which gmake`
  if test x$GMAKE = x; then
    GMAKE="make"
diff --git a/net/ntopng/files/patch-include_ntop__defines.h b/net/ntopng/files/patch-include_ntop__defines.h
index e055b1f0c060..9080ef13c76b 100644
--- a/net/ntopng/files/patch-include_ntop__defines.h
+++ b/net/ntopng/files/patch-include_ntop__defines.h
@@ -1,11 +1,11 @@
---- include/ntop_defines.h.orig	2018-12-21 18:58:17 UTC
+--- include/ntop_defines.h.orig	2021-08-20 09:38:15 UTC
 +++ include/ntop_defines.h
-@@ -416,7 +416,7 @@
- #define NTOPNG_NDPI_OS_PROTO_ID      (NDPI_LAST_IMPLEMENTED_PROTOCOL+NDPI_MAX_NUM_CUSTOM_PROTOCOLS-2)
- #define CONST_DEFAULT_HOME_NET       "192.168.1.0/24"
- #define CONST_OLD_DEFAULT_DATA_DIR   "/var/tmp/ntopng"
+@@ -523,7 +523,7 @@
+ #define CONST_SHARE_DIR              "/usr/share"
+ #define CONST_SHARE_DIR_2            "/usr/local/share"
+ #define CONST_ETC_DIR                "/etc"
 -#define CONST_DEFAULT_DATA_DIR       "/var/lib/ntopng"
 +#define CONST_DEFAULT_DATA_DIR       "/var/db/ntopng"
- #define CONST_DEFAULT_MAX_UI_STRLEN  24
- #define CONST_DEFAULT_IS_AUTOLOGOUT_ENABLED               1
- #define CONST_DEFAULT_IS_IDLE_LOCAL_HOSTS_CACHE_ENABLED   1
+ #endif
+ #define CONST_ALT_INSTALL_DIR        CONST_SHARE_DIR   "/ntopng"
+ #define CONST_ALT2_INSTALL_DIR       CONST_SHARE_DIR_2 "/usr/share/ntopng"
diff --git a/net/ntopng/pkg-plist b/net/ntopng/pkg-plist
index e5dd9c90866f..01afd2e2df49 100644
--- a/net/ntopng/pkg-plist
+++ b/net/ntopng/pkg-plist
@@ -1,32 +1,56 @@
 bin/ntopng
 bin/ntopng-geoip2update.sh
 man/man8/ntopng.8.gz
-%%DATADIR%%/httpdocs/bootstrap-4.4.0-dist/css/bootstrap-grid.css
-%%DATADIR%%/httpdocs/bootstrap-4.4.0-dist/css/bootstrap-grid.css.map
-%%DATADIR%%/httpdocs/bootstrap-4.4.0-dist/css/bootstrap-grid.min.css
-%%DATADIR%%/httpdocs/bootstrap-4.4.0-dist/css/bootstrap-grid.min.css.map
-%%DATADIR%%/httpdocs/bootstrap-4.4.0-dist/css/bootstrap-reboot.css
-%%DATADIR%%/httpdocs/bootstrap-4.4.0-dist/css/bootstrap-reboot.css.map
-%%DATADIR%%/httpdocs/bootstrap-4.4.0-dist/css/bootstrap-reboot.min.css
-%%DATADIR%%/httpdocs/bootstrap-4.4.0-dist/css/bootstrap-reboot.min.css.map
-%%DATADIR%%/httpdocs/bootstrap-4.4.0-dist/css/bootstrap.css
-%%DATADIR%%/httpdocs/bootstrap-4.4.0-dist/css/bootstrap.css.map
-%%DATADIR%%/httpdocs/bootstrap-4.4.0-dist/css/bootstrap.min.css
-%%DATADIR%%/httpdocs/bootstrap-4.4.0-dist/css/bootstrap.min.css.map
-%%DATADIR%%/httpdocs/bootstrap-4.4.0-dist/js/bootstrap.bundle.js
-%%DATADIR%%/httpdocs/bootstrap-4.4.0-dist/js/bootstrap.bundle.js.map
-%%DATADIR%%/httpdocs/bootstrap-4.4.0-dist/js/bootstrap.bundle.min.js
-%%DATADIR%%/httpdocs/bootstrap-4.4.0-dist/js/bootstrap.bundle.min.js.map
-%%DATADIR%%/httpdocs/bootstrap-4.4.0-dist/js/bootstrap.js
-%%DATADIR%%/httpdocs/bootstrap-4.4.0-dist/js/bootstrap.js.map
-%%DATADIR%%/httpdocs/bootstrap-4.4.0-dist/js/bootstrap.min.js
-%%DATADIR%%/httpdocs/bootstrap-4.4.0-dist/js/bootstrap.min.js.map
-%%DATADIR%%/httpdocs/bootstrap-custom/%%NTOPNGUSER%%-theme.css
+%%DATADIR%%/httpdocs/bootstrap/css/bootstrap-grid.css
+%%DATADIR%%/httpdocs/bootstrap/css/bootstrap-grid.css.map
+%%DATADIR%%/httpdocs/bootstrap/css/bootstrap-grid.min.css
+%%DATADIR%%/httpdocs/bootstrap/css/bootstrap-grid.min.css.map
+%%DATADIR%%/httpdocs/bootstrap/css/bootstrap-grid.rtl.css
+%%DATADIR%%/httpdocs/bootstrap/css/bootstrap-grid.rtl.css.map
+%%DATADIR%%/httpdocs/bootstrap/css/bootstrap-grid.rtl.min.css
+%%DATADIR%%/httpdocs/bootstrap/css/bootstrap-grid.rtl.min.css.map
+%%DATADIR%%/httpdocs/bootstrap/css/bootstrap-reboot.css
+%%DATADIR%%/httpdocs/bootstrap/css/bootstrap-reboot.css.map
+%%DATADIR%%/httpdocs/bootstrap/css/bootstrap-reboot.min.css
+%%DATADIR%%/httpdocs/bootstrap/css/bootstrap-reboot.min.css.map
+%%DATADIR%%/httpdocs/bootstrap/css/bootstrap-reboot.rtl.css
+%%DATADIR%%/httpdocs/bootstrap/css/bootstrap-reboot.rtl.css.map
+%%DATADIR%%/httpdocs/bootstrap/css/bootstrap-reboot.rtl.min.css
+%%DATADIR%%/httpdocs/bootstrap/css/bootstrap-reboot.rtl.min.css.map
+%%DATADIR%%/httpdocs/bootstrap/css/bootstrap-utilities.css
+%%DATADIR%%/httpdocs/bootstrap/css/bootstrap-utilities.css.map
+%%DATADIR%%/httpdocs/bootstrap/css/bootstrap-utilities.min.css
+%%DATADIR%%/httpdocs/bootstrap/css/bootstrap-utilities.min.css.map
+%%DATADIR%%/httpdocs/bootstrap/css/bootstrap-utilities.rtl.css
+%%DATADIR%%/httpdocs/bootstrap/css/bootstrap-utilities.rtl.css.map
+%%DATADIR%%/httpdocs/bootstrap/css/bootstrap-utilities.rtl.min.css
+%%DATADIR%%/httpdocs/bootstrap/css/bootstrap-utilities.rtl.min.css.map
+%%DATADIR%%/httpdocs/bootstrap/css/bootstrap.css
+%%DATADIR%%/httpdocs/bootstrap/css/bootstrap.css.map
+%%DATADIR%%/httpdocs/bootstrap/css/bootstrap.min.css
+%%DATADIR%%/httpdocs/bootstrap/css/bootstrap.min.css.map
+%%DATADIR%%/httpdocs/bootstrap/css/bootstrap.rtl.css
+%%DATADIR%%/httpdocs/bootstrap/css/bootstrap.rtl.css.map
+%%DATADIR%%/httpdocs/bootstrap/css/bootstrap.rtl.min.css
+%%DATADIR%%/httpdocs/bootstrap/css/bootstrap.rtl.min.css.map
+%%DATADIR%%/httpdocs/bootstrap/js/bootstrap.bundle.js
+%%DATADIR%%/httpdocs/bootstrap/js/bootstrap.bundle.js.map
+%%DATADIR%%/httpdocs/bootstrap/js/bootstrap.bundle.min.js
+%%DATADIR%%/httpdocs/bootstrap/js/bootstrap.bundle.min.js.map
+%%DATADIR%%/httpdocs/bootstrap/js/bootstrap.esm.js
+%%DATADIR%%/httpdocs/bootstrap/js/bootstrap.esm.js.map
+%%DATADIR%%/httpdocs/bootstrap/js/bootstrap.esm.min.js
+%%DATADIR%%/httpdocs/bootstrap/js/bootstrap.esm.min.js.map
+%%DATADIR%%/httpdocs/bootstrap/js/bootstrap.js
+%%DATADIR%%/httpdocs/bootstrap/js/bootstrap.js.map
+%%DATADIR%%/httpdocs/bootstrap/js/bootstrap.min.js
+%%DATADIR%%/httpdocs/bootstrap/js/bootstrap.min.js.map
 %%DATADIR%%/httpdocs/css/Makefile
 %%DATADIR%%/httpdocs/css/README.md
 %%DATADIR%%/httpdocs/css/Rickshaw/detail.css
 %%DATADIR%%/httpdocs/css/Rickshaw/graph.css
 %%DATADIR%%/httpdocs/css/Rickshaw/legend.css
+%%DATADIR%%/httpdocs/css/apexcharts.css
 %%DATADIR%%/httpdocs/css/bootstrap-nav-wizard.css
 %%DATADIR%%/httpdocs/css/bootstrap-slider.css
 %%DATADIR%%/httpdocs/css/bootstrap3-datetimepicker.css
@@ -35,6 +59,7 @@ man/man8/ntopng.8.gz
 %%DATADIR%%/httpdocs/css/cubism.css
 %%DATADIR%%/httpdocs/css/custom_theme.css
 %%DATADIR%%/httpdocs/css/dark-mode.css
+%%DATADIR%%/httpdocs/css/dataTables.bootstrap5.min.css
 %%DATADIR%%/httpdocs/css/datepicker.css
 %%DATADIR%%/httpdocs/css/dc.css
 %%DATADIR%%/httpdocs/css/flags.css
@@ -54,24 +79,21 @@ man/man8/ntopng.8.gz
 %%DATADIR%%/httpdocs/css/images/ui-icons_ffd27a_256x240.png
 %%DATADIR%%/httpdocs/css/images/ui-icons_ffffff_256x240.png
 %%DATADIR%%/httpdocs/css/jquery-ui.css
-%%DATADIR%%/httpdocs/css/minified/bootstrap-orange.min.css
 %%DATADIR%%/httpdocs/css/minified/dark-mode.min.css
-%%DATADIR%%/httpdocs/css/minified/fontawesome-custom.min.css
 %%DATADIR%%/httpdocs/css/minified/heatmap.min.css
 %%DATADIR%%/httpdocs/css/minified/ntopng.min.css
 %%DATADIR%%/httpdocs/css/minified/rickshaw.min.css
 %%DATADIR%%/httpdocs/css/minified/tempusdominus.min.css
 %%DATADIR%%/httpdocs/css/ntopng.css
-%%DATADIR%%/httpdocs/css/ntopng.min.css
 %%DATADIR%%/httpdocs/css/nv.d3.css
 %%DATADIR%%/httpdocs/css/pie-chart.css
 %%DATADIR%%/httpdocs/css/rickshaw.css
 %%DATADIR%%/httpdocs/css/sequence_sunburst.css
 %%DATADIR%%/httpdocs/css/sidebar.css
 %%DATADIR%%/httpdocs/css/tablesorted.css
+%%DATADIR%%/httpdocs/css/tagify.css
 %%DATADIR%%/httpdocs/css/timeline.css
 %%DATADIR%%/httpdocs/css/timepicker.css
-%%DATADIR%%/httpdocs/datatables/datatables.min.css
 %%DATADIR%%/httpdocs/favicon.ico
 %%DATADIR%%/httpdocs/fontawesome-free-5.11.2-web/LICENSE.txt
 %%DATADIR%%/httpdocs/fontawesome-free-5.11.2-web/css/all.css
@@ -1762,7 +1784,6 @@ man/man8/ntopng.8.gz
 %%DATADIR%%/httpdocs/img/os_icon.png
 %%DATADIR%%/httpdocs/img/throbber.gif
 %%DATADIR%%/httpdocs/img/virustotal.svg
-%%DATADIR%%/httpdocs/img/warning.png
 %%DATADIR%%/httpdocs/inc/as_stats_id.inc
 %%DATADIR%%/httpdocs/inc/country_stats_id.inc
 %%DATADIR%%/httpdocs/inc/geolocation_disclaimer.inc
@@ -1784,12 +1805,9 @@ man/man8/ntopng.8.gz
 %%DATADIR%%/httpdocs/inc/sprobe_process_header.inc
 %%DATADIR%%/httpdocs/inc/vlan_stats_id.inc
 %%DATADIR%%/httpdocs/js/ASAP.js
-%%DATADIR%%/httpdocs/js/Chart.bundle.js
-%%DATADIR%%/httpdocs/js/Chart.bundle.min.js
 %%DATADIR%%/httpdocs/js/Makefile
 %%DATADIR%%/httpdocs/js/README.gauge
-%%DATADIR%%/httpdocs/js/address-chips.js
-%%DATADIR%%/httpdocs/js/ays_utils.js
+%%DATADIR%%/httpdocs/js/apexchart/apexcharts.min.js
 %%DATADIR%%/httpdocs/js/binary-indicators.js
 %%DATADIR%%/httpdocs/js/bootstrap-datatable.js
 %%DATADIR%%/httpdocs/js/bootstrap-slider.js
@@ -1803,41 +1821,39 @@ man/man8/ntopng.8.gz
 %%DATADIR%%/httpdocs/js/cubism_ntop.v1.js
 %%DATADIR%%/httpdocs/js/d3.v3.js
 %%DATADIR%%/httpdocs/js/d3.v4.min.js
-%%DATADIR%%/httpdocs/js/datatable_utils.js
-%%DATADIR%%/httpdocs/js/datatables_sprymedia.min.js
 %%DATADIR%%/httpdocs/js/dc.js
 %%DATADIR%%/httpdocs/js/deps.min.js
 %%DATADIR%%/httpdocs/js/deps.min.js.map
-%%DATADIR%%/httpdocs/js/ebpf_utils.js
 %%DATADIR%%/httpdocs/js/gauge.js
 %%DATADIR%%/httpdocs/js/googleMapJson.js
-%%DATADIR%%/httpdocs/js/graph_utils.js
 %%DATADIR%%/httpdocs/js/heatmap.js
 %%DATADIR%%/httpdocs/js/html5shiv.js
 %%DATADIR%%/httpdocs/js/ie_fix.js
 %%DATADIR%%/httpdocs/js/jquery-ui.js
 %%DATADIR%%/httpdocs/js/jquery.are-you-sure.js
+%%DATADIR%%/httpdocs/js/jquery.dataTables.min.js
 %%DATADIR%%/httpdocs/js/jquery.js
 %%DATADIR%%/httpdocs/js/jquery.peity.js
 %%DATADIR%%/httpdocs/js/jquery.tablesorter.js
 %%DATADIR%%/httpdocs/js/jquery_bootstrap.min.js
 %%DATADIR%%/httpdocs/js/jquery_bootstrap.min.js.map
-%%DATADIR%%/httpdocs/js/main.js
 %%DATADIR%%/httpdocs/js/markerclusterer.js
 %%DATADIR%%/httpdocs/js/moment.js
-%%DATADIR%%/httpdocs/js/notification-daemon.js
 %%DATADIR%%/httpdocs/js/ntop.min.js
 %%DATADIR%%/httpdocs/js/ntop.min.js.map
-%%DATADIR%%/httpdocs/js/ntop_utils.js
-%%DATADIR%%/httpdocs/js/ntopng_validators.js
 %%DATADIR%%/httpdocs/js/nv.d3.js
 %%DATADIR%%/httpdocs/js/osm-maps.js
-%%DATADIR%%/httpdocs/js/pages/datasource_list.js
+%%DATADIR%%/httpdocs/js/pages/components/ifaces-dropdown.js
+%%DATADIR%%/httpdocs/js/pages/edit_alert_exclusions.js
 %%DATADIR%%/httpdocs/js/pages/endpoint-notifications-list.js
 %%DATADIR%%/httpdocs/js/pages/flowdevice_details.js
 %%DATADIR%%/httpdocs/js/pages/flowdevices_page.js
+%%DATADIR%%/httpdocs/js/pages/graph-map.js
 %%DATADIR%%/httpdocs/js/pages/import-export-config.js
+%%DATADIR%%/httpdocs/js/pages/infrastructure-dashboard.js
+%%DATADIR%%/httpdocs/js/pages/interface_nprobes.js
 %%DATADIR%%/httpdocs/js/pages/manage-configurations.js
+%%DATADIR%%/httpdocs/js/pages/observation_points_page.js
 %%DATADIR%%/httpdocs/js/pages/pools/host-members.js
 %%DATADIR%%/httpdocs/js/pages/pools/pools.js
 %%DATADIR%%/httpdocs/js/pages/recipients-endpoints.js
@@ -1845,38 +1861,40 @@ man/man8/ntopng.8.gz
 %%DATADIR%%/httpdocs/js/pages/sflowdevices_stats.js
 %%DATADIR%%/httpdocs/js/pages/snmpdevices_stats/overview.js
 %%DATADIR%%/httpdocs/js/pages/system_alerts_stats.js
-%%DATADIR%%/httpdocs/js/pages/widget_list.js
+%%DATADIR%%/httpdocs/js/pages/toast-config-change-flows.js
+%%DATADIR%%/httpdocs/js/pages/toast-config-change-hosts.js
+%%DATADIR%%/httpdocs/js/particle/particle.min.js
 %%DATADIR%%/httpdocs/js/pie-chart.js
+%%DATADIR%%/httpdocs/js/popper/popper.min.js
 %%DATADIR%%/httpdocs/js/push.min.js
 %%DATADIR%%/httpdocs/js/push.min.js.map
-%%DATADIR%%/httpdocs/js/quotas_utils.js
 %%DATADIR%%/httpdocs/js/rickshaw.js
 %%DATADIR%%/httpdocs/js/ripe_widget_api.js
 %%DATADIR%%/httpdocs/js/sankey.js
 %%DATADIR%%/httpdocs/js/sequence_sunburst.js
 %%DATADIR%%/httpdocs/js/sidebar.js
-%%DATADIR%%/httpdocs/js/string_utils.js
 %%DATADIR%%/httpdocs/js/syslog/syslog-producers-utils.js
+%%DATADIR%%/httpdocs/js/tagify.min.js
 %%DATADIR%%/httpdocs/js/tempusdominus.min.js
 %%DATADIR%%/httpdocs/js/timeline.js
-%%DATADIR%%/httpdocs/js/utils/alert-notifications-utils.js
+%%DATADIR%%/httpdocs/js/utils/are-you-sure-utils.js
 %%DATADIR%%/httpdocs/js/utils/blog-notification-utils.js
+%%DATADIR%%/httpdocs/js/utils/bootstrap-datatable-utils.js
 %%DATADIR%%/httpdocs/js/utils/datatable-ipsorting.js
 %%DATADIR%%/httpdocs/js/utils/datatable-macsorting.js
-%%DATADIR%%/httpdocs/js/utils/datatable-utils.js
+%%DATADIR%%/httpdocs/js/utils/ebpf-utils.js
+%%DATADIR%%/httpdocs/js/utils/graph-utils.js
 %%DATADIR%%/httpdocs/js/utils/modal-utils.js
+%%DATADIR%%/httpdocs/js/utils/ntop-utils.js
+%%DATADIR%%/httpdocs/js/utils/ntopng-validators-utils.js
+%%DATADIR%%/httpdocs/js/utils/quotas-utils.js
+%%DATADIR%%/httpdocs/js/utils/sprymedia-datatable-utils.js
+%%DATADIR%%/httpdocs/js/utils/string-utils.js
+%%DATADIR%%/httpdocs/js/utils/toast-utils.js
 %%DATADIR%%/httpdocs/js/validator.js
 %%DATADIR%%/httpdocs/js/vis-network.js
 %%DATADIR%%/httpdocs/js/vis-network.min.js
-%%DATADIR%%/httpdocs/js/widgets/ntop-widget-utils.js
-%%DATADIR%%/httpdocs/js/widgets/ntop-widgets.js
-%%DATADIR%%/httpdocs/js/widgets/templates/default-template.js
-%%DATADIR%%/httpdocs/js/widgets/templates/donut-chart-template.js
-%%DATADIR%%/httpdocs/js/widgets/templates/multibar-chart-template.js
-%%DATADIR%%/httpdocs/js/widgets/templates/percent-top-template.js
-%%DATADIR%%/httpdocs/js/widgets/templates/pie-chart-template.js
-%%DATADIR%%/httpdocs/js/widgets/templates/stacked-chart-template.js
-%%DATADIR%%/httpdocs/js/widgets/templates/table-template.js
+%%DATADIR%%/httpdocs/js/widgets/widgets.js
 %%DATADIR%%/httpdocs/leaflet/MarkerCluster.Default.css
 %%DATADIR%%/httpdocs/leaflet/MarkerCluster.css
 %%DATADIR%%/httpdocs/leaflet/images/layers-2x.png
@@ -1892,6 +1910,7 @@ man/man8/ntopng.8.gz
 %%DATADIR%%/httpdocs/leaflet/leaflet.js.map
 %%DATADIR%%/httpdocs/leaflet/leaflet.markercluster.js
 %%DATADIR%%/httpdocs/leaflet/leaflet.markercluster.js.map
+%%DATADIR%%/httpdocs/misc/alert_store_schema.sql
 %%DATADIR%%/httpdocs/misc/ntopng-add-user.sh
 %%DATADIR%%/httpdocs/misc/ntopng-utils-manage-config
 %%DATADIR%%/httpdocs/misc/ntopng-utils-manage-config.in
@@ -1905,48 +1924,82 @@ man/man8/ntopng.8.gz
 %%DATADIR%%/httpdocs/monaco-editor/min/vs/editor/editor.main.js
 %%DATADIR%%/httpdocs/monaco-editor/min/vs/editor/editor.main.nls.js
 %%DATADIR%%/httpdocs/monaco-editor/min/vs/loader.js
-%%DATADIR%%/httpdocs/offline/index.html
 %%DATADIR%%/httpdocs/other/EtherOUI.txt
 %%DATADIR%%/httpdocs/other/TimeZones.txt
 %%DATADIR%%/httpdocs/other/radcli_dictionary.txt
 %%DATADIR%%/httpdocs/other/trackers.txt
-%%DATADIR%%/httpdocs/popper-1.12.9/js/popper.js
-%%DATADIR%%/httpdocs/popper-1.12.9/js/popper.min.js
 %%DATADIR%%/httpdocs/selectpicker/css/bootstrap-select.css.map
 %%DATADIR%%/httpdocs/selectpicker/css/bootstrap-select.min.css
-%%DATADIR%%/httpdocs/selectpicker/js/bootstrap-select.min.js
-%%DATADIR%%/httpdocs/selectpicker/js/bootstrap-select.min.js.map
+%%DATADIR%%/httpdocs/selectpicker/js/bootstrap-select.js
 %%DATADIR%%/httpdocs/ssl/README
 %%DATADIR%%/httpdocs/ssl/ntopng-cert.pem.dummy
-%%DATADIR%%/httpdocs/sw.js
-%%DATADIR%%/httpdocs/templates/defs_list.html
 %%DATADIR%%/httpdocs/templates/import_modal.html
 %%DATADIR%%/httpdocs/templates/modal_confirm_dialog.html
+%%DATADIR%%/httpdocs/templates/modal_confirm_dialog_form.template
 %%DATADIR%%/httpdocs/templates/on_off_switch.html
+%%DATADIR%%/httpdocs/templates/pages/alerts/alert-stats.template
+%%DATADIR%%/httpdocs/templates/pages/alerts/defs_overview.template
+%%DATADIR%%/httpdocs/templates/pages/alerts/families/all/table.js.template
+%%DATADIR%%/httpdocs/templates/pages/alerts/families/all/table.template
+%%DATADIR%%/httpdocs/templates/pages/alerts/families/am_host/table.js.template
+%%DATADIR%%/httpdocs/templates/pages/alerts/families/am_host/table.template
+%%DATADIR%%/httpdocs/templates/pages/alerts/families/flow/table.js.template
+%%DATADIR%%/httpdocs/templates/pages/alerts/families/flow/table.template
+%%DATADIR%%/httpdocs/templates/pages/alerts/families/host/table.js.template
+%%DATADIR%%/httpdocs/templates/pages/alerts/families/host/table.template
+%%DATADIR%%/httpdocs/templates/pages/alerts/families/interface/table.js.template
+%%DATADIR%%/httpdocs/templates/pages/alerts/families/interface/table.template
+%%DATADIR%%/httpdocs/templates/pages/alerts/families/mac/table.js.template
+%%DATADIR%%/httpdocs/templates/pages/alerts/families/mac/table.template
+%%DATADIR%%/httpdocs/templates/pages/alerts/families/network/table.js.template
+%%DATADIR%%/httpdocs/templates/pages/alerts/families/network/table.template
+%%DATADIR%%/httpdocs/templates/pages/alerts/families/snmp_device/table.js.template
+%%DATADIR%%/httpdocs/templates/pages/alerts/families/snmp_device/table.template
+%%DATADIR%%/httpdocs/templates/pages/alerts/families/system/table.js.template
+%%DATADIR%%/httpdocs/templates/pages/alerts/families/system/table.template
+%%DATADIR%%/httpdocs/templates/pages/alerts/families/user/table.js.template
+%%DATADIR%%/httpdocs/templates/pages/alerts/families/user/table.template
+%%DATADIR%%/httpdocs/templates/pages/arp.template
+%%DATADIR%%/httpdocs/templates/pages/components/blog-dropdown.template
+%%DATADIR%%/httpdocs/templates/pages/components/breadcrumb.template
+%%DATADIR%%/httpdocs/templates/pages/components/export-policy-configuration-link.template
+%%DATADIR%%/httpdocs/templates/pages/components/ifaces-dropdown.template
 %%DATADIR%%/httpdocs/templates/pages/components/ifaces-select.template
 %%DATADIR%%/httpdocs/templates/pages/components/manage-configuration-link.template
 %%DATADIR%%/httpdocs/templates/pages/components/monaco-editor.template
 %%DATADIR%%/httpdocs/templates/pages/components/nav_tabs.template
 %%DATADIR%%/httpdocs/templates/pages/components/notes.template
-%%DATADIR%%/httpdocs/templates/pages/components/notification.template
-%%DATADIR%%/httpdocs/templates/pages/components/notification_container.template
+%%DATADIR%%/httpdocs/templates/pages/components/page-navbar.template
 %%DATADIR%%/httpdocs/templates/pages/components/pool-select.template
+%%DATADIR%%/httpdocs/templates/pages/components/range-picker.template
 %%DATADIR%%/httpdocs/templates/pages/components/reset-config-link.template
-%%DATADIR%%/httpdocs/templates/pages/datasource_list.template
-%%DATADIR%%/httpdocs/templates/pages/edit_configset.html
+%%DATADIR%%/httpdocs/templates/pages/components/tag-input.template
+%%DATADIR%%/httpdocs/templates/pages/components/toast.template
+%%DATADIR%%/httpdocs/templates/pages/components/toasts-container.template
+%%DATADIR%%/httpdocs/templates/pages/edit_check.template
+%%DATADIR%%/httpdocs/templates/pages/edit_configset.template
 %%DATADIR%%/httpdocs/templates/pages/endpoint_notifications_list.template
+%%DATADIR%%/httpdocs/templates/pages/hassh_fingerprint.template
+%%DATADIR%%/httpdocs/templates/pages/hosts_map.template
+%%DATADIR%%/httpdocs/templates/pages/interface_nprobes.template
+%%DATADIR%%/httpdocs/templates/pages/ja3_fingerprint.template
+%%DATADIR%%/httpdocs/templates/pages/license.template
 %%DATADIR%%/httpdocs/templates/pages/manage_configurations.template
 %%DATADIR%%/httpdocs/templates/pages/manage_data.template
 %%DATADIR%%/httpdocs/templates/pages/manage_host_members.template
-%%DATADIR%%/httpdocs/templates/pages/modals/datasources/add.template
-%%DATADIR%%/httpdocs/templates/pages/modals/datasources/edit.template
-%%DATADIR%%/httpdocs/templates/pages/modals/datasources/remove.template
+%%DATADIR%%/httpdocs/templates/pages/modals/alerts/acknowledge_alert.template
+%%DATADIR%%/httpdocs/templates/pages/modals/alerts/acknowledge_alerts.template
+%%DATADIR%%/httpdocs/templates/pages/modals/alerts/delete_alert_exclusion_modal.template
+%%DATADIR%%/httpdocs/templates/pages/modals/alerts/delete_alerts.template
+%%DATADIR%%/httpdocs/templates/pages/modals/alerts/filters/add.template
+%%DATADIR%%/httpdocs/templates/pages/modals/alerts/redirect_modal.template
 %%DATADIR%%/httpdocs/templates/pages/modals/edit_configset/edit_config_modal.html
 %%DATADIR%%/httpdocs/templates/pages/modals/endpoint_notifications/add.template
 %%DATADIR%%/httpdocs/templates/pages/modals/endpoint_notifications/edit.template
 %%DATADIR%%/httpdocs/templates/pages/modals/endpoint_notifications/remove.template
 %%DATADIR%%/httpdocs/templates/pages/modals/factory-reset.template
 %%DATADIR%%/httpdocs/templates/pages/modals/import_export_config/import.template
+%%DATADIR%%/httpdocs/templates/pages/modals/modal_alerts_filter_dialog.html
 %%DATADIR%%/httpdocs/templates/pages/modals/pools/host_pool_member.template
 %%DATADIR%%/httpdocs/templates/pages/modals/pools/pool_modal.template
 %%DATADIR%%/httpdocs/templates/pages/modals/pools/remove_host_pool_member.template
@@ -1959,12 +2012,8 @@ man/man8/ntopng.8.gz
 %%DATADIR%%/httpdocs/templates/pages/modals/scripts_config/delete_modal.html
 %%DATADIR%%/httpdocs/templates/pages/modals/scripts_config/import_modal.html
 %%DATADIR%%/httpdocs/templates/pages/modals/scripts_config/rename_modal.html
-%%DATADIR%%/httpdocs/templates/pages/modals/widgets/add.template
-%%DATADIR%%/httpdocs/templates/pages/modals/widgets/edit.template
-%%DATADIR%%/httpdocs/templates/pages/modals/widgets/embed.template
-%%DATADIR%%/httpdocs/templates/pages/modals/widgets/remove.template
+%%DATADIR%%/httpdocs/templates/pages/observation_points_config.template
 %%DATADIR%%/httpdocs/templates/pages/recipients_list.template
-%%DATADIR%%/httpdocs/templates/pages/scripts_config.template
 %%DATADIR%%/httpdocs/templates/pages/simple_widgets_list.template
 %%DATADIR%%/httpdocs/templates/pages/system_alerts_stats.template
 %%DATADIR%%/httpdocs/templates/pages/table_pools.template
@@ -1972,22 +2021,22 @@ man/man8/ntopng.8.gz
 %%DATADIR%%/httpdocs/templates/pages/tabs/manage_data/export.template
 %%DATADIR%%/httpdocs/templates/pages/tabs/manage_data/inactive_interfaces_data.template
 %%DATADIR%%/httpdocs/templates/pages/tabs/manage_data/system_interface_data.template
-%%DATADIR%%/httpdocs/templates/pages/widgets_list.template
+%%DATADIR%%/httpdocs/templates/pages/test_gui_widgets.template
+%%DATADIR%%/httpdocs/templates/pages/top_sites.template
 %%DATADIR%%/httpdocs/templates/traffic_extraction_dialog.html
 %%DATADIR%%/httpdocs/templates/traffic_report.html
 %%DATADIR%%/httpdocs/templates/typeahead_input.html
+%%DATADIR%%/httpdocs/templates/widgets/chart-widget.template
 %%DATADIR%%/httpdocs/templates/wizard_dialog.html
 %%DATADIR%%/httpdocs/tempusdominus/css/tempusdominus-bootstrap-4.css
 %%DATADIR%%/httpdocs/tempusdominus/js/tempusdominus-bootstrap-4.js
 %%DATADIR%%/scripts/callbacks/interface/5min.lua
 %%DATADIR%%/scripts/callbacks/interface/daily.lua
-%%DATADIR%%/scripts/callbacks/interface/flow.lua
-%%DATADIR%%/scripts/callbacks/interface/host.lua
 %%DATADIR%%/scripts/callbacks/interface/hourly.lua
 %%DATADIR%%/scripts/callbacks/interface/interface.lua
 %%DATADIR%%/scripts/callbacks/interface/minute.lua
 %%DATADIR%%/scripts/callbacks/interface/network.lua
-%%DATADIR%%/scripts/callbacks/interface/periodic_user_scripts.lua
+%%DATADIR%%/scripts/callbacks/interface/periodic_checks.lua
 %%DATADIR%%/scripts/callbacks/system/5min.lua
 %%DATADIR%%/scripts/callbacks/system/boot.lua
 %%DATADIR%%/scripts/callbacks/system/daily.lua
@@ -2006,6 +2055,7 @@ man/man8/ntopng.8.gz
 %%DATADIR%%/scripts/callbacks/system/syslog.lua
 %%DATADIR%%/scripts/callbacks/system/system.lua
 %%DATADIR%%/scripts/callbacks/system/timeseries.lua
+%%DATADIR%%/scripts/locales/cn.lua
 %%DATADIR%%/scripts/locales/cz.lua
 %%DATADIR%%/scripts/locales/de.lua
 %%DATADIR%%/scripts/locales/en.lua
@@ -2013,12 +2063,15 @@ man/man8/ntopng.8.gz
 %%DATADIR%%/scripts/locales/it.lua
 %%DATADIR%%/scripts/locales/jp.lua
 %%DATADIR%%/scripts/locales/pt.lua
+%%DATADIR%%/scripts/lua/10mb.lua
+%%DATADIR%%/scripts/lua/1mb.lua
 %%DATADIR%%/scripts/lua/API.lua
 %%DATADIR%%/scripts/lua/about.lua
 %%DATADIR%%/scripts/lua/admin/change_user_prefs.lua
 %%DATADIR%%/scripts/lua/admin/dhcp.lua
 %%DATADIR%%/scripts/lua/admin/edit_categories.lua
 %%DATADIR%%/scripts/lua/admin/edit_category_lists.lua
+%%DATADIR%%/scripts/lua/admin/edit_check.lua
 %%DATADIR%%/scripts/lua/admin/edit_configset.lua
 %%DATADIR%%/scripts/lua/admin/edit_device_protocols.lua
 %%DATADIR%%/scripts/lua/admin/endpoint_notifications_list.lua
@@ -2036,46 +2089,35 @@ man/man8/ntopng.8.gz
 %%DATADIR%%/scripts/lua/admin/password_reset.lua
 %%DATADIR%%/scripts/lua/admin/prefs.lua
 %%DATADIR%%/scripts/lua/admin/recipients_list.lua
-%%DATADIR%%/scripts/lua/admin/remote_assistance.lua
-%%DATADIR%%/scripts/lua/admin/scripts_config.lua
 %%DATADIR%%/scripts/lua/admin/service_restart.lua
 %%DATADIR%%/scripts/lua/admin/users.lua
 %%DATADIR%%/scripts/lua/admin/validate_new_user.lua
+%%DATADIR%%/scripts/lua/alert_stats.lua
 %%DATADIR%%/scripts/lua/as_details.lua
 %%DATADIR%%/scripts/lua/as_stats.lua
-%%DATADIR%%/scripts/lua/assistant_test.lua
 %%DATADIR%%/scripts/lua/authorize_captive.lua
-%%DATADIR%%/scripts/lua/bubble.lua
 %%DATADIR%%/scripts/lua/captive_portal.lua
 %%DATADIR%%/scripts/lua/change_password.lua
-%%DATADIR%%/scripts/lua/check_major_release.lua
+%%DATADIR%%/scripts/lua/check_details.lua
 %%DATADIR%%/scripts/lua/check_recording_data.lua
 %%DATADIR%%/scripts/lua/check_update.lua
+%%DATADIR%%/scripts/lua/checks_overview.lua
 %%DATADIR%%/scripts/lua/code_viewer.lua
 %%DATADIR%%/scripts/lua/container_details.lua
 %%DATADIR%%/scripts/lua/containers_stats.lua
 %%DATADIR%%/scripts/lua/country_details.lua
 %%DATADIR%%/scripts/lua/country_stats.lua
-%%DATADIR%%/scripts/lua/datasources/iface_local_stats.lua
-%%DATADIR%%/scripts/lua/datasources/iface_pkt_distro.lua
-%%DATADIR%%/scripts/lua/datasources/iface_pkt_version.lua
-%%DATADIR%%/scripts/lua/datasources/iface_tcpflags_pkt_distro.lua
-%%DATADIR%%/scripts/lua/datasources/interface.lua
-%%DATADIR%%/scripts/lua/datasources/sample_table.lua
-%%DATADIR%%/scripts/lua/datasources/timeseries.lua
-%%DATADIR%%/scripts/lua/datasources_list.lua
+%%DATADIR%%/scripts/lua/datatable_columns.lua
 %%DATADIR%%/scripts/lua/defs_overview.lua
 %%DATADIR%%/scripts/lua/directories.lua
 %%DATADIR%%/scripts/lua/discover.lua
-%%DATADIR%%/scripts/lua/dismiss_notification.lua
+%%DATADIR%%/scripts/lua/dismiss_toast.lua
 %%DATADIR%%/scripts/lua/do_export_data.lua
+%%DATADIR%%/scripts/lua/edit_check_config.lua
 %%DATADIR%%/scripts/lua/edit_datasources.lua
 %%DATADIR%%/scripts/lua/edit_endpoint.lua
 %%DATADIR%%/scripts/lua/edit_notification_recipient.lua
-%%DATADIR%%/scripts/lua/edit_scripts_configsets.lua
 %%DATADIR%%/scripts/lua/edit_syslog_producer.lua
-%%DATADIR%%/scripts/lua/edit_user_script_config.lua
-%%DATADIR%%/scripts/lua/edit_widgets.lua
 %%DATADIR%%/scripts/lua/examples/debug.lua
 %%DATADIR%%/scripts/lua/examples/hello_world.lua
 %%DATADIR%%/scripts/lua/examples/interface.lua
@@ -2090,27 +2132,26 @@ man/man8/ntopng.8.gz
 %%DATADIR%%/scripts/lua/flow_stats.lua
 %%DATADIR%%/scripts/lua/flows_stats.lua
 %%DATADIR%%/scripts/lua/geoip_config.lua
-%%DATADIR%%/scripts/lua/get_alerts_table_data.lua
-%%DATADIR%%/scripts/lua/get_arp_data.lua
 %%DATADIR%%/scripts/lua/get_as_data.lua
 %%DATADIR%%/scripts/lua/get_ases_data.lua
+%%DATADIR%%/scripts/lua/get_check_config.lua
+%%DATADIR%%/scripts/lua/get_checks.lua
+%%DATADIR%%/scripts/lua/get_checks_configsets.lua
 %%DATADIR%%/scripts/lua/get_config.lua
 %%DATADIR%%/scripts/lua/get_containers_data.lua
 %%DATADIR%%/scripts/lua/get_countries_data.lua
 %%DATADIR%%/scripts/lua/get_country_data.lua
-%%DATADIR%%/scripts/lua/get_datasources.lua
 %%DATADIR%%/scripts/lua/get_db_data.lua
 %%DATADIR%%/scripts/lua/get_db_flows.lua
 %%DATADIR%%/scripts/lua/get_dhcp_config.lua
 %%DATADIR%%/scripts/lua/get_discover_data.lua
 %%DATADIR%%/scripts/lua/get_discover_progress.lua
+%%DATADIR%%/scripts/lua/get_endpoint_configs.lua
 %%DATADIR%%/scripts/lua/get_extracted_traffic.lua
-%%DATADIR%%/scripts/lua/get_fingerprint_data.lua
 %%DATADIR%%/scripts/lua/get_flow_db_data.lua
 %%DATADIR%%/scripts/lua/get_flow_process_tree.lua
 %%DATADIR%%/scripts/lua/get_flows_data.lua
 %%DATADIR%%/scripts/lua/get_geo_hosts.lua
-%%DATADIR%%/scripts/lua/get_grouped_hosts_data.lua
 %%DATADIR%%/scripts/lua/get_historical_data.lua
 %%DATADIR%%/scripts/lua/get_historical_favourites.lua
 %%DATADIR%%/scripts/lua/get_host_data.lua
@@ -2121,37 +2162,31 @@ man/man8/ntopng.8.gz
 %%DATADIR%%/scripts/lua/get_http_hosts_data.lua
 %%DATADIR%%/scripts/lua/get_icmp_data.lua
 %%DATADIR%%/scripts/lua/get_influxdb_info.lua
+%%DATADIR%%/scripts/lua/get_internals_checks_stats.lua
 %%DATADIR%%/scripts/lua/get_internals_hash_tables_stats.lua
 %%DATADIR%%/scripts/lua/get_internals_periodic_activities_stats.lua
 %%DATADIR%%/scripts/lua/get_internals_queues_stats.lua
-%%DATADIR%%/scripts/lua/get_internals_user_scripts_stats.lua
 %%DATADIR%%/scripts/lua/get_mac_data.lua
 %%DATADIR%%/scripts/lua/get_macs_data.lua
 %%DATADIR%%/scripts/lua/get_network_data.lua
 %%DATADIR%%/scripts/lua/get_networks_data.lua
-%%DATADIR%%/scripts/lua/get_notification_configs.lua
-%%DATADIR%%/scripts/lua/get_num_alerts.lua
-%%DATADIR%%/scripts/lua/get_periodicity_map.lua
+%%DATADIR%%/scripts/lua/get_os_data.lua
+%%DATADIR%%/scripts/lua/get_oses_data.lua
 %%DATADIR%%/scripts/lua/get_pods_data.lua
 %%DATADIR%%/scripts/lua/get_pool_data.lua
 %%DATADIR%%/scripts/lua/get_pools_data.lua
 %%DATADIR%%/scripts/lua/get_process_data.lua
 %%DATADIR%%/scripts/lua/get_processes_graph_data.lua
 %%DATADIR%%/scripts/lua/get_recipients_endpoint.lua
-%%DATADIR%%/scripts/lua/get_scripts_configsets.lua
-%%DATADIR%%/scripts/lua/get_service_map.lua
 %%DATADIR%%/scripts/lua/get_syslog_producers.lua
 %%DATADIR%%/scripts/lua/get_system_interfaces_stats.lua
 %%DATADIR%%/scripts/lua/get_timeseries_list.lua
 %%DATADIR%%/scripts/lua/get_top_talkers.lua
 %%DATADIR%%/scripts/lua/get_treemap.lua
 %%DATADIR%%/scripts/lua/get_unknown_devices_data.lua
-%%DATADIR%%/scripts/lua/get_user_script_config.lua
-%%DATADIR%%/scripts/lua/get_user_scripts.lua
 %%DATADIR%%/scripts/lua/get_username_data.lua
 %%DATADIR%%/scripts/lua/get_vlan_data.lua
 %%DATADIR%%/scripts/lua/get_vlans_data.lua
-%%DATADIR%%/scripts/lua/get_widgets.lua
 %%DATADIR%%/scripts/lua/hash_table_details.lua
 %%DATADIR%%/scripts/lua/host_details.lua
 %%DATADIR%%/scripts/lua/host_details_ndpi.lua
@@ -2164,6 +2199,7 @@ man/man8/ntopng.8.gz
 %%DATADIR%%/scripts/lua/host_top_peers_protocols.lua
 %%DATADIR%%/scripts/lua/hosts_comparison_sankey.lua
 %%DATADIR%%/scripts/lua/hosts_geomap.lua
+%%DATADIR%%/scripts/lua/hosts_map.lua
 %%DATADIR%%/scripts/lua/hosts_stats.lua
 %%DATADIR%%/scripts/lua/hotspot-detect.lua
 %%DATADIR%%/scripts/lua/http_servers_stats.lua
@@ -2189,9 +2225,7 @@ man/man8/ntopng.8.gz
 %%DATADIR%%/scripts/lua/inc/manage_data.lua
 %%DATADIR%%/scripts/lua/inc/menu.lua
 %%DATADIR%%/scripts/lua/inc/password_dialog.lua
-%%DATADIR%%/scripts/lua/inc/periodicity_map.lua
 %%DATADIR%%/scripts/lua/inc/sankey.lua
-%%DATADIR%%/scripts/lua/inc/service_map.lua
 %%DATADIR%%/scripts/lua/inc/traffic_recording_config.lua
 %%DATADIR%%/scripts/lua/inc/traffic_recording_jobs.lua
 %%DATADIR%%/scripts/lua/inc/traffic_recording_status.lua
@@ -2200,6 +2234,7 @@ man/man8/ntopng.8.gz
 %%DATADIR%%/scripts/lua/info_portal.lua
 %%DATADIR%%/scripts/lua/install_update.lua
 %%DATADIR%%/scripts/lua/jsontest.lua
+%%DATADIR%%/scripts/lua/license.lua
 %%DATADIR%%/scripts/lua/live_capture_data.lua
 %%DATADIR%%/scripts/lua/live_capture_stats.lua
 %%DATADIR%%/scripts/lua/live_traffic.lua
@@ -2210,88 +2245,230 @@ man/man8/ntopng.8.gz
 %%DATADIR%%/scripts/lua/mac_stats.lua
 %%DATADIR%%/scripts/lua/macs_stats.lua
 %%DATADIR%%/scripts/lua/manage_data.lua
+%%DATADIR%%/scripts/lua/modules/alert.lua
 %%DATADIR%%/scripts/lua/modules/alert_consts.lua
 %%DATADIR%%/scripts/lua/modules/alert_creators.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_am_threshold_cross.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_attack_mitigation_via_snmp.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_blacklisted_country.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_broadcast_domain_too_large.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_connection_issues.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_device_connection.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_device_disconnection.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_device_protocol_not_allowed.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_dropped_alerts.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_flow_blacklisted.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_flow_blocked.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_flow_misbehaviour.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_flow_risk.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_flows_flood.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_ghost_network.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_host_log.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_host_pool_connection.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_host_pool_disconnection.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_iec104_error.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_influxdb_error.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_influxdb_export_failure.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_internals.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_ip_outsite_dhcp_range.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_known_proto_on_non_std_port.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_lateral_movement.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_list_download_failed.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_list_download_succeeded.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_login_failed.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_mac_ip_association_change.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_malicious_signature.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_misconfigured_app.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_new_device.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_nfq_flushed.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_none.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_periodic_activity_not_executed.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_port_duplexstatus_change.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_port_errors.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_port_load_threshold_exceeded.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_port_mac_changed.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_port_status_change.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_potentially_dangerous_protocol.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_process_notification.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_quota_exceeded.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_remote_to_remote.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_request_reply_ratio.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_slow_periodic_activity.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_slow_purge.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_snmp_device_reset.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_snmp_topology_changed.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_suspicious_activity.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_suspicious_file_transfer.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_tcp_syn_flood.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_tcp_syn_scan.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_threshold_cross.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_too_many_drops.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_udp_unidirectional.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_unexpected_dhcp.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_unexpected_dns.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_unexpected_ntp.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_unexpected_smtp.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_user_activity.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_user_script_calls_drops.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/alert_web_mining.lua
-%%DATADIR%%/scripts/lua/modules/alert_definitions/external_alert.lua
-%%DATADIR%%/scripts/lua/modules/alert_keys.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_blacklisted_country.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_connection_issues.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_data_exfiltration.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_device_protocol_not_allowed.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_dns_data_exfiltration.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_dns_invalid_query.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_elephant_flow.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_external.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_flow_blacklisted.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_flow_blocked.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_flow_low_goodput.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_flow_risk.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_flow_tcp_no_data_exchanged.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_iec_invalid_transition.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_iec_unexpected_type_id.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_internals.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_known_proto_on_non_std_port.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_lateral_movement.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_longlived.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_malicious_signature.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_ndpi_dns_suspicious_traffic.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_ndpi_http_numeric_ip_host.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_ndpi_http_suspicious_header.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_ndpi_http_suspicious_url.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_ndpi_http_suspicious_user_agent.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_ndpi_malformed_packet.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_ndpi_smb_insecure_version.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_ndpi_ssh_obsolete.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_ndpi_suspicious_dga_domain.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_ndpi_tls_cert_validity_too_long.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_ndpi_tls_missing_sni.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_ndpi_tls_not_carrying_https.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_ndpi_tls_suspicious_esni_usage.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_ndpi_unsafe_protocol.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_ndpi_url_possible_rce_injection.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_ndpi_url_possible_sql_injection.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_ndpi_url_possible_xss.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_periodicity_changed.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_potentially_dangerous_protocol.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_remote_access.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_remote_to_local_insecure_proto.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_remote_to_remote.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_suspicious_file_transfer.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_tcp_connection_refused.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_tls_certificate_expired.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_tls_certificate_mismatch.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_tls_certificate_selfsigned.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_tls_old_protocol_version.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_tls_unsafe_ciphers.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_udp_unidirectional.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_unexpected_dhcp_server.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_unexpected_dns_server.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_unexpected_ntp_server.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_unexpected_smtp_server.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_web_mining.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/flow/alert_zero_tcp_window.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/host/host_alert_dangerous_host.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/host/host_alert_dns_server_contacts.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/host/host_alert_dns_traffic.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/host/host_alert_flow_anomaly.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/host/host_alert_flow_flood.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/host/host_alert_host_log.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/host/host_alert_ntp_server_contacts.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/host/host_alert_ntp_traffic.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/host/host_alert_p2p_traffic.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/host/host_alert_remote_connection.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/host/host_alert_score_anomaly.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/host/host_alert_smtp_server_contacts.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/host/host_alert_tcp_syn_flood.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/host/host_alert_tcp_syn_scan.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_am_threshold_cross.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_attack_mitigation_via_snmp.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_behavior_anomaly.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_broadcast_domain_too_large.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_contacts_anomaly.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_device_connection.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_device_disconnection.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_dropped_alerts.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_fail2ban_executed.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_flow_flood_victim.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_ghost_network.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_host_pool_connection.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_host_pool_disconnection.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_influxdb_error.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_influxdb_export_failure.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_ip_outsite_dhcp_range.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_list_download_failed.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_list_download_succeeded.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_login_failed.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_mac_ip_association_change.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_misconfigured_app.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_nfq_flushed.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_ngi_trust_event.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_no_if_activity.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_periodic_activity_not_executed.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_port_duplexstatus_change.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_port_errors.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_port_load_threshold_exceeded.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_port_mac_changed.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_port_status_change.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_process_notification.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_quota_exceeded.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_shell_script_executed.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_slow_periodic_activity.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_slow_purge.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_snmp_device_reset.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_snmp_topology_changed.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_tcp_syn_flood_victim.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_tcp_syn_scan_victim.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_threshold_cross.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_too_many_drops.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_unexpected_new_device.lua
+%%DATADIR%%/scripts/lua/modules/alert_definitions/other/alert_user_activity.lua
+%%DATADIR%%/scripts/lua/modules/alert_entities.lua
+%%DATADIR%%/scripts/lua/modules/alert_exclusions.lua
+%%DATADIR%%/scripts/lua/modules/alert_keys/flow_alert_keys.lua
+%%DATADIR%%/scripts/lua/modules/alert_keys/host_alert_keys.lua
+%%DATADIR%%/scripts/lua/modules/alert_keys/other_alert_keys.lua
+%%DATADIR%%/scripts/lua/modules/alert_roles.lua
+%%DATADIR%%/scripts/lua/modules/alert_severities.lua
+%%DATADIR%%/scripts/lua/modules/alert_store/alert_store.lua
+%%DATADIR%%/scripts/lua/modules/alert_store/alert_store_utils.lua
+%%DATADIR%%/scripts/lua/modules/alert_store/all_alert_store.lua
+%%DATADIR%%/scripts/lua/modules/alert_store/am_alert_store.lua
+%%DATADIR%%/scripts/lua/modules/alert_store/flow_alert_store.lua
+%%DATADIR%%/scripts/lua/modules/alert_store/host_alert_store.lua
+%%DATADIR%%/scripts/lua/modules/alert_store/interface_alert_store.lua
+%%DATADIR%%/scripts/lua/modules/alert_store/mac_alert_store.lua
+%%DATADIR%%/scripts/lua/modules/alert_store/network_alert_store.lua
+%%DATADIR%%/scripts/lua/modules/alert_store/snmp_device_alert_store.lua
+%%DATADIR%%/scripts/lua/modules/alert_store/system_alert_store.lua
+%%DATADIR%%/scripts/lua/modules/alert_store/user_alert_store.lua
 %%DATADIR%%/scripts/lua/modules/alert_utils.lua
 %%DATADIR%%/scripts/lua/modules/alerts_api.lua
 %%DATADIR%%/scripts/lua/modules/as_utils.lua
 %%DATADIR%%/scripts/lua/modules/auth.lua
 %%DATADIR%%/scripts/lua/modules/auth_sessions_utils.lua
 %%DATADIR%%/scripts/lua/modules/base64.lua
+%%DATADIR%%/scripts/lua/modules/behavior_utils.lua
 %%DATADIR%%/scripts/lua/modules/blog_utils.lua
 %%DATADIR%%/scripts/lua/modules/callback_utils.lua
 %%DATADIR%%/scripts/lua/modules/categories_utils.lua
+%%DATADIR%%/scripts/lua/modules/check_definitions/flow/blacklisted.lua
+%%DATADIR%%/scripts/lua/modules/check_definitions/flow/country_check.lua
+%%DATADIR%%/scripts/lua/modules/check_definitions/flow/device_protocol_not_allowed.lua
+%%DATADIR%%/scripts/lua/modules/check_definitions/flow/external_alert_check.lua
+%%DATADIR%%/scripts/lua/modules/check_definitions/flow/iec_invalid_transition.lua
+%%DATADIR%%/scripts/lua/modules/check_definitions/flow/iec_unexpected_type_id.lua
+%%DATADIR%%/scripts/lua/modules/check_definitions/flow/known_proto_on_non_std_port.lua
+%%DATADIR%%/scripts/lua/modules/check_definitions/flow/low_goodput.lua
+%%DATADIR%%/scripts/lua/modules/check_definitions/flow/ndpi_dns_suspicious_traffic.lua
+%%DATADIR%%/scripts/lua/modules/check_definitions/flow/ndpi_http_numeric_ip_host.lua
+%%DATADIR%%/scripts/lua/modules/check_definitions/flow/ndpi_http_suspicious_header.lua
+%%DATADIR%%/scripts/lua/modules/check_definitions/flow/ndpi_http_suspicious_url.lua
+%%DATADIR%%/scripts/lua/modules/check_definitions/flow/ndpi_http_suspicious_user_agent.lua
+%%DATADIR%%/scripts/lua/modules/check_definitions/flow/ndpi_malformed_packet.lua
+%%DATADIR%%/scripts/lua/modules/check_definitions/flow/ndpi_smb_insecure_version.lua
+%%DATADIR%%/scripts/lua/modules/check_definitions/flow/ndpi_ssh_obsolete.lua
+%%DATADIR%%/scripts/lua/modules/check_definitions/flow/ndpi_suspicious_dga_domain.lua
+%%DATADIR%%/scripts/lua/modules/check_definitions/flow/ndpi_tls_missing_sni.lua
+%%DATADIR%%/scripts/lua/modules/check_definitions/flow/ndpi_tls_not_carrying_https.lua
+%%DATADIR%%/scripts/lua/modules/check_definitions/flow/ndpi_tls_suspicious_esni_usage.lua
+%%DATADIR%%/scripts/lua/modules/check_definitions/flow/ndpi_unsafe_protocol.lua
+%%DATADIR%%/scripts/lua/modules/check_definitions/flow/ndpi_url_possible_rce_injection.lua
*** 822 LINES SKIPPED ***


More information about the dev-commits-ports-main mailing list