Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated git submodules #27

Merged
merged 1 commit into from
Aug 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion detectors
Submodule detectors updated 39 files
+41 −0 .github/workflows/c-cpp.yml
+53 −0 .github/workflows/codeql-analysis.yml
+53 −0 .github/workflows/coverity.yml
+0 −61 .travis.yml
+1 −0 Makefile.am
+2 −1 amplification_detection/amplification_detection.cpp
+24 −0 backscatter_classifier/BackscatterDDoSModel.py
+24 −0 backscatter_classifier/Makefile.am
+48 −0 backscatter_classifier/README.md
+472 −0 backscatter_classifier/backscatter_classifier.py
+12 −0 backscatter_classifier/backscatter_classifier.sup
+69 −0 backscatter_classifier/c3isp_upload.py
+1 −0 backscatter_classifier/data/GeoLite2-ASN_20210330/COPYRIGHT.txt
+ backscatter_classifier/data/GeoLite2-ASN_20210330/GeoLite2-ASN.mmdb
+3 −0 backscatter_classifier/data/GeoLite2-ASN_20210330/LICENSE.txt
+1 −0 backscatter_classifier/data/GeoLite2-City_20210330/COPYRIGHT.txt
+ backscatter_classifier/data/GeoLite2-City_20210330/GeoLite2-City.mmdb
+3 −0 backscatter_classifier/data/GeoLite2-City_20210330/LICENSE.txt
+1 −0 backscatter_classifier/data/GeoLite2-City_20210330/README.txt
+ backscatter_classifier/data/backscatter_ddos_model.pickle
+168 −0 backscatter_classifier/objects/ddos/definition.json
+92 −0 backscatter_classifier/objects/organization/definition.json
+5 −0 backscatter_classifier/requirements.txt
+28 −0 backscatter_classifier/run_backscatter_classifier.sh
+6 −0 backscatter_classifier/servers.ini
+25 −5 blacklistfilter/blacklist_downloader/README.md
+78 −41 blacklistfilter/blacklist_downloader/bl_downloader.py.in
+94 −89 blacklistfilter/blacklist_downloader/bl_downloader_config.xml
+6 −1 blacklistfilter/ipblacklistfilter.cpp
+2 −1 configure.ac
+2 −1 hoststatsnemea/src/detectionrules.cpp
+2 −1 hoststatsnemea/src/eventhandler.cpp
+10 −2 hoststatsnemea/src/subprofiles.cpp
+1 −1 hoststatsnemea/src/subprofiles.h
+4 −4 miner_detector/miner_detector.cpp
+9 −2 nemea-detectors.spec.in
+2 −1 sip_bf_detector/sip_bf_detector.cpp
+9 −7 tunnel_detection/tunnel_detection_dns.c
+2 −1 voip_fraud_detection/output.c
2 changes: 1 addition & 1 deletion modules
Submodule modules updated 82 files
+42 −0 .github/workflows/c-cpp.yml
+54 −0 .github/workflows/codeql-analysis.yml
+54 −0 .github/workflows/coverity.yml
+0 −73 .travis.yml
+34 −0 ChangeLog
+2 −0 Makefile.am
+68 −0 NEWS
+0 −1 aggregator/Makefile.am
+147 −0 backscatter/EventTracker.cpp
+177 −0 backscatter/EventTracker.h
+299 −0 backscatter/FeatureVector.cpp
+195 −0 backscatter/FeatureVector.h
+9 −0 backscatter/Makefile.am
+45 −0 backscatter/README.md
+565 −0 backscatter/backscatter.cpp
+184 −0 backscatter/backscatter.h
+17 −0 backscatter/backscatter.sup
+99 −0 backscatter/backscatter_common.cpp
+180 −0 backscatter/backscatter_common.h
+0 −1 biflow_aggregator/Makefile.am
+56 −8 biflow_aggregator/aggregator.cpp
+15 −4 biflow_aggregator/aggregator.h
+75 −0 biflow_aggregator/aggregator_functions.h
+4 −3 biflow_aggregator/configuration.cpp
+42 −17 biflow_aggregator/main.cpp
+19 −6 bloom_history/bloom_history_functions.c
+8 −5 configure.ac
+0 −2 device_classifier/Makefile.am
+6 −4 device_classifier/device_classifier.c
+9 −9 device_classifier/libsvm/tools/binary.py.in
+0 −1 endiverter/Makefile.am
+1 −1 ipv6stats/Makefile.am
+6 −6 ipv6stats/ipv6stats.cpp
+149 −74 json_dump/json_dump.py
+7 −5 json_replay/README.md
+39 −33 json_replay/json_replay.py
+52 −9 link_traffic/link_traffic.c
+0 −1 logger/Makefile.am
+3 −6 logger/logger.c
+1 −1 logreplay/Makefile.am
+3 −0 logreplay/logreplay.cpp
+13 −2 luamodule/README.md
+13 −3 luamodule/luafuncs.c
+23 −0 luamodule/luahelper.c
+13 −5 luamodule/tests/lua/ip.lua
+0 −1 natpair/Makefile.am
+7 −6 natpair/natpair.cpp
+11 −2 nemea-modules.spec.in
+0 −1 nfwriter/Makefile.am
+1 −6 prefix_tags/prefix_tags_functions.c
+4 −1 report2idea/blacklist/blacklist2idea.py
+17 −4 scalar-aggregator/aggregator.c
+15 −0 scalar-aggregator/timedb.c
+7 −0 sni_dataset_saver/Makefile.am
+16 −0 sni_dataset_saver/README.md
+296 −0 sni_dataset_saver/array-hash/array_growth_policy.h
+1,807 −0 sni_dataset_saver/array-hash/array_hash.h
+929 −0 sni_dataset_saver/array-hash/array_map.h
+716 −0 sni_dataset_saver/array-hash/array_set.h
+2,076 −0 sni_dataset_saver/htrie_hash.h
+668 −0 sni_dataset_saver/htrie_map.h
+26,647 −0 sni_dataset_saver/json.hpp
+497 −0 sni_dataset_saver/main.cpp
+1,720 −0 sni_dataset_saver/rapidcsv.h
+125 −0 sni_dataset_saver/sampler.cpp
+82 −0 sni_dataset_saver/sampler.h
+104 −0 sni_dataset_saver/sni.cpp
+80 −0 sni_dataset_saver/sni.h
+0 −1 topn/Makefile.am
+6 −4 topn/topn.c
+66 −0 unirec2json/README.md
+29 −1 unirec2json/unirec2json.py
+1 −1 unirecfilter/Makefile.am
+25 −4 unirecfilter/README.md
+6 −0 unirecfilter/lib/Makefile.am
+373 −85 unirecfilter/lib/functions.c
+25 −2 unirecfilter/lib/functions.h
+15 −0 unirecfilter/lib/parser.y
+14 −7 unirecfilter/lib/scanner.l
+3 −0 unirecfilter/test/Makefile.am
+553 −0 unirecfilter/test/integration-test.py
+11 −1 unirecfilter/unirecfilter.c
2 changes: 1 addition & 1 deletion nemea-framework
Submodule nemea-framework updated 90 files
+6 −2 .github/workflows/c-cpp.yml
+52 −0 .github/workflows/codeql-analysis.yml
+52 −0 .github/workflows/coverity.yml
+5 −0 common/ChangeLog
+9 −0 common/Makefile.am
+6 −0 common/NEWS
+2 −2 common/configurator/configurator.cpp
+5 −5 common/configure.ac
+4 −4 common/fast_hash_table/fast_hash_table.c
+0 −1 common/nemea-common.spec.in
+4 −0 libtrap/ChangeLog
+1 −0 libtrap/Makefile.am
+16 −0 libtrap/NEWS
+3 −3 libtrap/configure.ac
+3 −2 libtrap/include/libtrap/trap.h
+0 −1 libtrap/libtrap.spec.in
+7 −0 libtrap/src/Makefile.am
+3 −6 libtrap/src/ifc_file.c
+267 −0 libtrap/src/ifc_service.c
+51 −0 libtrap/src/ifc_service.h
+64 −0 libtrap/src/ifc_service_internal.h
+11 −75 libtrap/src/ifc_socket_common.h
+535 −523 libtrap/src/ifc_tcpip.c
+4 −3 libtrap/src/ifc_tcpip.h
+70 −49 libtrap/src/ifc_tcpip_internal.h
+441 −463 libtrap/src/ifc_tls.c
+33 −16 libtrap/src/ifc_tls_internal.h
+40 −15 libtrap/src/trap.c
+222 −0 libtrap/src/trap_container.h
+2 −0 libtrap/src/trap_internal.h
+136 −0 libtrap/src/trap_mbuf.c
+96 −0 libtrap/src/trap_mbuf.h
+158 −0 libtrap/src/trap_ring_buffer.h
+126 −0 libtrap/src/trap_stack.h
+11 −12 libtrap/tests/test_echo.c
+0 −1 libtrap/tests/test_rxtx.c
+62 −14 libtrap/tools/trap_stats.c
+1 −1 nemea-framework.spec.in
+2 −8 pycommon/nemea-pycommon.spec
+4 −0 pycommon/reporter_config/Config.py
+64 −0 pycommon/reporter_config/actions/Syslog.py
+56 −0 pycommon/test/rc_17_syslog.py
+15 −0 pycommon/test/rc_config/syslog-malformed-facility.yaml
+16 −0 pycommon/test/rc_config/syslog-malformed-logoption.yaml
+15 −0 pycommon/test/rc_config/syslog-malformed-priority.yaml
+16 −0 pycommon/test/rc_config/syslog.yaml
+2 −1 pytrap/MANIFEST.in
+1 −2 pytrap/Makefile.am
+5 −0 pytrap/README
+20 −0 pytrap/docs/Makefile
+87 −0 pytrap/docs/conf.py
+8 −0 pytrap/docs/helpers.rst
+23 −0 pytrap/docs/index.rst
+35 −0 pytrap/docs/make.bat
+13 −0 pytrap/docs/pytrap.rst
+77 −0 pytrap/docs/recvbulk.rst
+3 −3 pytrap/nemea-pytrap.spec
+0 −44 pytrap/pytrap-data-access.py
+0 −9 pytrap/pytrap-date.py
+0 −31 pytrap/pytrap-example-nowait.py
+0 −26 pytrap/pytrap-example-send.py
+0 −34 pytrap/pytrap-example-ssh-count.py
+0 −36 pytrap/pytrap-example.py
+0 −16 pytrap/pytrap-send-json.py
+0 −109 pytrap/pytrap-ur.py
+0 −35 pytrap/pytrap-without-wrapper.py
+40 −11 pytrap/setup.py
+9 −0 pytrap/src/pytrap/__init__.py
+190 −0 pytrap/src/pytrap/helpers.py
+262 −40 pytrap/src/pytrapmodule.c
+0 −2 pytrap/src/unirecmacaddr.c
+239 −54 pytrap/src/unirecmodule.c
+26 −0 pytrap/src/unirectemplate.h
+155 −0 pytrap/test/pytrapmodule_unittest.py
+26 −0 pytrap/test/unirectemplate_unittest.py
+0 −30 pytrap/trap+unirec.py
+0 −12 pytrap/ur-iterate.py
+13 −0 unirec/ChangeLog
+8 −2 unirec/Makefile.am
+14 −0 unirec/NEWS
+5 −5 unirec/configure.ac
+3 −0 unirec/ip_prefix_search.c
+5 −5 unirec/ipaddr.h
+1 −1 unirec/macaddr.h
+5 −4 unirec/tests/Makefile.am
+127 −0 unirec/tests/test_resize.c
+16 −10 unirec/unirec.c
+0 −1 unirec/unirec.spec.in
+19 −19 unirec/unirec2csv.c
+1 −1 unirec/ur_processor.sh
Loading