nDPI/example
Luca Deri 56bfb439f8 Improved DGA detection with trigrams. Disadvantage: slower startup time
Reworked Tor dissector embedded in TLS (fixes #1141)
Removed false positive on HTTP User-Agent
2021-03-03 00:41:07 +01:00
..
MacOS Fix the Xcode project 2019-05-15 09:56:10 +08:00
Win32 Update pcapExample.vcxproj.filters 2015-05-15 02:52:28 +02:00
categories.txt Add categories test PCAP 2019-09-27 10:15:20 +02:00
intrusion_detection.c (C) Update 2021-01-07 11:13:36 +01:00
intrusion_detection.h (C) Update 2021-01-07 11:13:36 +01:00
ja3_fingerprints.csv Added NDPI_MALICIOUS_JA3 flow risk 2021-02-22 23:19:23 +01:00
Makefile.dpdk.in QUIC: minor fixes 2020-08-24 13:53:36 +02:00
Makefile.in Fixed missing PCAP include directories in Makefiles. (#1034) 2020-10-19 11:25:22 +02:00
mining_hosts.txt Implemented custom category loading. 2018-04-26 21:10:59 +02:00
ndpi2timeline.py Implemented nDPI timeline visualizer 2019-12-15 23:35:43 +01:00
ndpiReader.c Improved DGA detection with trigrams. Disadvantage: slower startup time 2021-03-03 00:41:07 +01:00
ndpiSimpleIntegration.c Implemented TLS Certificate Sibject matching 2021-02-22 22:37:33 +01:00
protos.txt Added missing comma (#1116) 2021-01-21 08:58:42 +01:00
reader_util.c Fixed memory leaks caused by conditional free'ing for some TLS connec… (#1132) 2021-02-10 15:24:11 +01:00
reader_util.h Fixed CPHA missing protocol initialization 2021-02-10 15:22:20 +01:00
README.DPDK Added DPDK support to ndpiReader 2018-11-10 16:10:22 +01:00
risky_domains.txt Added risky domain flow-risk support 2021-02-21 21:45:46 +01:00
sha1_fingerprints.csv Added NDPI_MALICIOUS_SHA1 flow risk. (#1142) 2021-02-26 17:00:05 +01:00

Prerequisites
-------------

You need to install and compile DPDK in your HOME directory as explained in
See http://core.dpdk.org/doc/quick-start/ for DPDK installation and setup

Once DPDK is built make sure to create a symbolic link

$ cd
$ ln -s dpdk-18.08 DPDK

so the build process will use the DPDK directory letting you have multiple
DPDK versions available on your system


Build
-----
Everything will happen automagically but if you want to do it by hand
do: make -f Makefile.dpdk


Run Application
---------------
Supposing to capture packets from device eno1 you can start the
application as follows:

sudo ./build/ndpiReader -c 1 --vdev=net_pcap0,iface=eno1 -- -v 1

NOTE:
- ndpiReader without DPDK support sits in this directory
- ndpiReader with DPDK support can be found inside the ./build directory