leviathan-driver 0.1.0

Windows kernel-mode EDR/XDR driver framework in Rust - callbacks, filters, detection, forensics
1
2
3
4
5
6
7
8
9
10
//! Kernel Filter Modules
//!
//! This module provides Windows kernel filter implementations:
//! - Filesystem minifilter (file I/O interception)
//! - Network filter (WFP - Windows Filtering Platform)
//!
//! These filters allow deep inspection and control of system I/O.

pub mod minifilter;
pub mod network;