Skip to main content

security_rust/protocol/
mod.rs

1// Copyright (c) 2026 erik <erik@erik.xyz> — https://erik.xyz
2
3pub mod cors;
4pub mod dns_rebinding;
5pub mod header_injection;
6pub mod host_header;
7pub mod open_redirect;
8pub mod request_smuggling;
9pub mod ssrf;
10pub mod websocket;
11pub mod xxe;
12
13pub use cors::CorsDetector;
14pub use dns_rebinding::DnsRebindingDetector;
15pub use header_injection::HeaderInjectionDetector;
16pub use host_header::HostHeaderDetector;
17pub use open_redirect::OpenRedirectDetector;
18pub use request_smuggling::RequestSmugglingDetector;
19pub use ssrf::SsrfDetector;
20pub use websocket::WebSocketDetector;
21pub use xxe::XxeDetector;