[package]
edition = "2021"
name = "waf-detection"
version = "0.4.0"
authors = ["0x00spor3"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Detection modules (SQLi, XSS, RCE, traversal, SSRF, XXE, and more) and the scope-aware fast-path prefilter for Light WAF."
homepage = "https://github.com/0x00spor3/Light-WAF"
readme = "README.md"
keywords = [
"waf",
"security",
"owasp",
"detection",
]
categories = [
"web-programming",
"network-programming",
]
license = "Apache-2.0"
repository = "https://github.com/0x00spor3/Light-WAF"
[lib]
name = "waf_detection"
path = "src/lib.rs"
[[example]]
name = "crs_bench"
path = "examples/crs_bench.rs"
[[test]]
name = "crs"
path = "tests/crs.rs"
[[test]]
name = "graphql"
path = "tests/graphql.rs"
[[test]]
name = "grpc"
path = "tests/grpc.rs"
[[test]]
name = "header_injection"
path = "tests/header_injection.rs"
[[test]]
name = "lfi_rfi"
path = "tests/lfi_rfi.rs"
[[test]]
name = "path_traversal"
path = "tests/path_traversal.rs"
[[test]]
name = "rate_limit"
path = "tests/rate_limit.rs"
[[test]]
name = "rce"
path = "tests/rce.rs"
[[test]]
name = "request_smuggling"
path = "tests/request_smuggling.rs"
[[test]]
name = "sqli"
path = "tests/sqli.rs"
[[test]]
name = "ssrf"
path = "tests/ssrf.rs"
[[test]]
name = "xss"
path = "tests/xss.rs"
[dependencies.regex]
version = "1"
[dependencies.tracing]
version = "0.1"
[dependencies.waf-core]
version = "0.4.0"
[dependencies.waf-normalizer]
version = "0.4.0"
[dev-dependencies.bytes]
version = "1"
[dev-dependencies.waf-pipeline]
version = "0.4.0"