Find a file
2022-03-30 22:12:39 +02:00
.github Add HOWTO Python. 2022-03-22 14:56:44 +01:00
.lgtm/cpp-queries ql query to identify suspicious use of network sourced integers 2020-04-02 17:14:49 -04:00
doc Typo 2022-03-02 12:47:04 +01:00
example reader_util: add support for userAgent in SSDP (#1502) 2022-03-28 04:25:34 +02:00
fuzz fuzz: purge old sessions (#1451) 2022-02-21 20:32:50 +01:00
influxdb Added code for identifiying anomalies with metrics stored in InfluxDB 2022-03-30 22:12:39 +02:00
m4 build: respect environment options more (#1392) 2022-01-18 14:30:14 +01:00
packages Drop support for non-gcrypt builds. (#1469) 2022-03-02 19:48:46 +01:00
python Update Python bindings guide. 2022-03-22 15:01:55 +01:00
rrdtool Added code for identifiying anomalies with metrics stored in InfluxDB 2022-03-30 22:12:39 +02:00
src Add support for Pluralsight site (#1503) 2022-03-27 15:13:12 +02:00
tests reader_util: add support for userAgent in SSDP (#1502) 2022-03-28 04:25:34 +02:00
utils Improved ASN/IP update scripts and CI integration. (#1474) 2022-03-09 13:53:04 +01:00
windows Fixed Mingw64 build, SonerCloud-CI and more. (#1273) 2021-08-18 11:34:16 +02:00
wireshark Add a new flow risk NDPI_ANONYMOUS_SUBSCRIBER (#1462) 2022-02-28 15:25:58 +01:00
.gitattributes Extend protocols support (#1422) 2022-01-29 09:19:26 +01:00
.gitignore Complete rework of nDPI Python bindings (cffi API, automatic generation, packaging and CI integration) 2022-03-22 13:19:27 +01:00
autogen.sh Get rid of configure.seed as it comes with some disadvantages. (#1328) 2021-10-10 13:13:52 +02:00
CHANGELOG.md Update changelog 2022-01-31 18:38:02 +01:00
configure.ac Added code for identifiying anomalies with metrics stored in InfluxDB 2022-03-30 22:12:39 +02:00
CONTRIBUTING.md Create CONTRIBUTING.md 2019-07-23 10:47:25 +01:00
COPYING Initial import from SVN 2015-04-19 07:25:59 +02:00
INSTALL Initial import from SVN 2015-04-19 07:25:59 +02:00
lgtm.yml Fix configure script (after fb85dac9) (#1381) 2021-12-04 20:22:05 +01:00
libndpi.pc.in Fixed broken pkg-config file which did not care about gcrypt/pcre. 2020-08-24 18:12:49 +02:00
Makefile.am Complete rework of nDPI Python bindings (cffi API, automatic generation, packaging and CI integration) 2022-03-22 13:19:27 +01:00
README.fuzzer.md Readme for using fuzzer with nDPI 2022-01-11 15:12:45 +01:00
README.md Improve CI (#1303) 2021-09-22 12:10:52 +02:00
README.nDPI Added QUIC dependency 2020-08-22 17:02:11 +02:00
sonar-project.properties Changes for sonarcloud integration 2021-05-11 21:36:25 +02:00

ntop ntop

nDPI

Build Status Code Quality: Cpp Total Alerts Fuzzing Status

What is nDPI ?

nDPI® is an open source LGPLv3 library for deep-packet inspection. Based on OpenDPI it includes ntop extensions. We have tried to push them into the OpenDPI source tree but nobody answered emails so we have decided to create our own source tree

How To Compile nDPI

In order to compile this library do

  • ./autogen.sh
  • ./configure
  • make

To run tests do additionally:

  • cd tests; ./do.sh

Please note that the pre-requisites for compilation include:

  • GNU tools (autogen, automake, autoconf, libtool)
  • GNU C compiler (gcc)

On Debian/Ubuntu systems do:

  • sudo apt-get install build-essential git bison flex libpcap-dev libtool libtool-bin autoconf pkg-config automake autogen libjson-c-dev libnuma-dev libgcrypt20-dev libpcre2-dev

FreeBSD

  • sudo pkg install gcc git autoconf automake libtool devel/pkgconf json-c gmake

Remember to use gmake and not make on FreeBSD

How To Add A New Protocol Dissector

The entire procedure of adding new protocols in detail:

  1. Add new protocol together with its unique ID to: src/include/ndpi_protocol_ids.h
  2. Create a new protocol in: src/lib/protocols/
  3. Variables to be kept for the duration of the entire flow (as state variables) need to be placed in: src/include/ndpi_typedefs.h in ndpi_flow_tcp_struct (for TCP only), ndpi_flow_udp_struct (for UDP only), or ndpi_flow_struct (for both).
  4. Add a new entry for the search function for the new protocol in: src/include/ndpi_protocols.h
  5. Choose (do not change anything) a selection bitmask from: src/include/ndpi_define.h
  6. Add a new entry in ndpi_set_protocol_detection_bitmask2 in: src/lib/ndpi_main.c
  7. Set protocol default ports in ndpi_init_protocol_defaults in: src/lib/ndpi_main.c
  8. ./autogen.sh
  9. make
  10. make check

How to use nDPI to Block Selected Traffic

You can use nDPI to selectively block selected Internet traffic by embedding it onto an application (remember that nDPI is just a library). Both ntopng and nProbe cento can do this.

nDPI Paper Citation

DISCLAIMER

While we do our best to detect network protocols, we cannot guarantee that our software is error free and 100% accurate in protocol detection. Please make sure that you respect the privacy of users and you have proper authorization to listen, capture and inspect network traffic.

nDPI is a registered trademark in the US and EU.