v

Huginn Net: Multi-Protocol Passive Fingerprinting

A Rust library for passive analysis of TCP, HTTP, and TLS traffic

Huginn Net is a modular ecosystem of Rust libraries forpassive fingerprinting and analysis of multiple network protocols, includingTCP, HTTP, and TLS.
Inspired by p0f and JA4, Huginn Net extends passive OS fingerprinting and TLS fingerprinting to support modern detection standards and multi-protocol analysis.
The ecosystem consists of 5 specialized crates that can be used independently or together. It leveragespnet,pcap-file, andtls-parser to analyze raw packets.
This ecosystem is under active development. Feedback and contributions welcome.

Huginn Net

Version

Key Features

Huginn Net Ecosystem

CrateDescription
huginn-netComplete multi-protocol analysis suite for TCP, HTTP, and TLS fingerprinting
huginn-net-tcpTCP fingerprinting and OS detection when you only need TCP/OS analysis
huginn-net-httpHTTP analysis and browser detection when you only need HTTP analysis
huginn-net-tlsJA4 TLS client fingerprinting when you only need TLS/JA4 analysis
huginn-net-dbP0f database parser and matching engine for advanced custom signature parsing

Network Stack (OSI Model)

LayerNameProtocol / FeatureExample in Huginn Net
7Application LayerTLSJA4 (FoxIO-style)
7Application LayerHTTPHTTP/1.1 & HTTP/2, Headers, Cookies, Referer, User-Agent, Lang
4Transport LayerTCPOS Fingerprinting (p0f-style)

Getting Started

Choose your approach: Use the complete suite or individual protocol crates.

Multi-Protocol Analysis

For complete network analysis (TCP + HTTP + TLS):

[dependencies]
huginn-net = ""

Protocol-Specific Analysis

For targeted analysis with better performance:

[dependencies]
huginn-net-tcp = ""   # TCP/OS fingerprinting only
huginn-net-http = ""  # HTTP analysis only
huginn-net-tls = ""   # TLS/JA4 analysis only

For changes, refer to the release notes.