zentinel-modsec 0.1.2

Pure Rust ModSecurity implementation with full OWASP CRS compatibility
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Variable system for ModSecurity.
//!
//! This module handles variable resolution and collection management.

mod collection;
mod request;
mod response;
mod tx;
mod resolver;

pub use collection::{Collection, MutableCollection, HashMapCollection};
pub use request::RequestData;
pub use response::ResponseData;
pub use tx::TxCollection;
pub use resolver::VariableResolver;