lanscope 0.1.2

Passive eBPF-powered IoT device fingerprinting & anomaly detection for your LAN
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Device fingerprinting.
//!
//! M1 ships only OUI→vendor lookup (used by the registry). M3 adds the full
//! fingerprint engine that fuses OUI + DHCP + mDNS/SSDP + traffic profile into a
//! device-type/model guess behind a `Fingerprinter` trait.

pub mod engine;
pub mod oui;
pub mod rules;

pub use engine::{Category, Classification, Fingerprinter};
pub use rules::RuleFingerprinter;