Open Source Deep Packet Inspection Software Toolkit http://www.ntop.org
  • C 92.9%
  • Lua 2.3%
  • C++ 1.5%
  • Shell 1.1%
  • M4 0.8%
  • Other 1.4%
Find a file
Luca Deri 896ded6106 Fixed JA4 not matching QUIC flows
Minor TLS matching API change (simplified code)
2026-02-26 18:35:34 +01:00
.github configure: remove --enable-tls-sigs option (#3119) 2026-02-17 15:00:09 +01:00
dga Rename 2024-10-28 12:55:18 +01:00
doc GitHub: (sub-)classification improvement (#3108) 2026-02-08 21:08:02 +01:00
example Fixed JA4 not matching QUIC flows 2026-02-26 18:35:34 +01:00
fuzz Extended ja4 protocol rule with the ability to specify tls blocks (#3125) 2026-02-20 23:15:02 +01:00
influxdb (C) update 2026-01-01 10:31:40 +01:00
lists Update every lists (#3017) 2025-11-03 13:00:27 +01:00
m4 build: respect environment options more (#1392) 2022-01-18 14:30:14 +01:00
packages Build system: Standardize and improve clean/distclean targets (#3039) 2025-11-24 18:42:03 +01:00
python Provide an explicit state for the flow classification process (#2942) 2025-11-03 12:08:15 +01:00
rrdtool (C) update 2026-01-01 10:31:40 +01:00
src Fixed JA4 not matching QUIC flows 2026-02-26 18:35:34 +01:00
tests Extended ja4 protocol rule with the ability to specify tls blocks (#3125) 2026-02-20 23:15:02 +01:00
utils utils: follow redirect when using curl (#3117) 2026-02-17 09:59:35 +01:00
windows configure: remove --enable-tls-sigs option (#3119) 2026-02-17 15:00:09 +01:00
wireshark Implemented new Slow DoS risk 2026-01-17 11:06:23 +01:00
.ci-ignore Replaced gethostbyname2 with getaddrinfo (portable code) 2023-10-30 22:55:50 +01:00
.gitattributes Extend protocols support (#1422) 2022-01-29 09:19:26 +01:00
.gitignore Ignored macOS build directories 2026-01-17 18:11:39 +01:00
autogen.sh Build system improvements and fixes (#3026) 2025-11-18 10:32:04 +01:00
CHANGELOG.md Added reference to https://github.com/ntop/nDPI/pull/3022 2025-11-09 19:41:46 +01:00
configure.ac configure: remove --enable-tls-sigs option (#3119) 2026-02-17 15:00:09 +01:00
CONTRIBUTING.md Performed some grammar and typo fixes (#2511) 2024-07-19 11:22:35 +02: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
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 ndpiReader: add perf support for "runtime" code (#3124) 2026-02-20 12:27:49 +01:00
README.fuzzer.md Add support for out-of-tree builds (#2993) 2025-11-03 11:58:59 +01:00
README.md Add support for out-of-tree builds (#2993) 2025-11-03 11:58:59 +01:00
sonar-project.properties Changes for sonarcloud integration 2021-05-11 21:36:25 +02:00

nDPI

Build Status Fuzzing Status

What is nDPI ?

nDPI® is an open source LGPLv3 library for deep-packet inspection.

A generic FAQ about nDPI is available here

How To Compile nDPI

In order to compile this project do

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

If you get some errors while compiling croaring.c, try:

  • ./autogen.sh && ./configure --enable-old-croaring
  • make

To compile the library w/o any tools or tests:

  • ./autogen.sh && ./configure --with-only-libndpi
  • make

Out-of-tree builds are supported:

  • ./autogen.sh
  • mkdir build
  • cd build
  • ../configure && make

To run tests do additionally:

  • ./tests/do.sh # Generate and check for diff's in PCAP files
  • ./tests/do-unit.sh # Run unit tests
  • ./tests/do-dga.sh # Run DGA detection test

or run all with: make check

Please note that the (minimal) pre-requisites for compilation include:

  • GNU tools (autoconf automake libtool pkg-config gettext flex bison)
  • GNU C compiler (gcc) or Clang

On Debian/Ubuntu systems do:

  • sudo apt-get install build-essential git gettext flex bison libtool autoconf automake pkg-config libpcap-dev libjson-c-dev libnuma-dev libpcre2-dev libmaxminddb-dev librrd-dev

On Arch Linux:

  • sudo pacman -S gcc git gettext flex bison libtool autoconf automake pkg-config libpcap json-c numactl pcre2 libmaxminddb rrdtool

On FreeBSD:

  • sudo pkg install gcc git gettext flex bison libtool autoconf automake devel/pkgconf gmake libpcap json-c pcre2 libmaxminddb rrdtool

Remember to use gmake and not make on FreeBSD

On MacOS:

  • brew install coreutils gcc git gettext flex bison libtool autoconf automake pkg-config libpcap json-c pcre2 libmaxminddb rrdtool

On Windows:

There are three supported ways to build nDPI:

  1. MSYS2 (assuming MSYS2 already installed):
  • msys2 -c "pacman --noconfirm -S --needed --overwrite '*' git mingw-w64-x86_64-toolchain automake1.16 automake-wrapper autoconf libtool make mingw-w64-x86_64-json-c mingw-w64-x86_64-crt-git mingw-w64-x86_64-pcre2 mingw-w64-x86_64-libpcap"
  1. Mingw-w64

  2. Visual Studio (see windows/nDPI.sln)

Note: All Windows versions require npcap with WinPcap compatibility mode enabled.

How To Build The Documentation

  • pip install --upgrade pip
  • pip install -r doc/requirements.txt
  • make doc

Use the builtin python3 webserver to view documentation:

  • make doc-view

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_private.h
  5. Choose (do not change anything) a selection bitmask from: src/include/ndpi_define.h
  6. Set protocol default ports in ndpi_init_protocol_defaults in: src/lib/ndpi_main.c
  7. Be sure to have nBPF support, cloning PF_RING in the same directory where you cloned nDPI: git clone https://github.com/ntop/PF_RING/ && cd PF_RING/userland/nbpf && ./configure && make. You can ignore the /bin/sh: 1: ../lib/pfring_config: not found error
  8. From the nDPI root directory, ./autogen.sh && ./configure --with-pcre2 (nBPF and PCRE2 are usually optional, but they are needed to run/update all the unit tests)
  9. make
  10. make check
  11. Update the documentation, adding this new protocol to doc/protocols.rst
  12. Update the Windows Visual Studio configuration, adding the new c file in windows/nDPI.vcxproj

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

Videos and Presentations

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.