1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
//! Simple WAF Scanner - A tool for detecting and testing web application firewalls
//!
//! This library provides functionality for:
//! - Detecting WAF presence through fingerprinting
//! - Testing WAF bypass techniques with various evasion methods
//! - Scanning endpoints with structured payload sets
//!
//! # Warning
//!
//! This tool is intended for **authorized security testing only**.
//! Unauthorized access to computer systems is illegal.
// Re-export main types
pub use Config;
pub use ;
pub use Scanner;
pub use ;
/// Perform a WAF scan with the given configuration
///
/// # Example
///
/// ```no_run
/// use simple_waf_scanner::{Config, scan};
///
/// #[tokio::main]
/// async fn main() -> Result<(), Box<dyn std::error::Error>> {
/// let config = Config::new("https://example.com".to_string());
/// let results = scan(config).await?;
/// println!("Found {} findings", results.findings.len());
/// Ok(())
/// }
/// ```
pub async