[package]
edition = "2021"
name = "waf-normalizer"
version = "0.4.0"
authors = ["0x00spor3"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Request normalization and canonicalization for Light WAF: double-encoding-aware percent-decode, NFKC, body/query/cookie parsing, defensive limits."
homepage = "https://github.com/0x00spor3/Light-WAF"
readme = "README.md"
keywords = [
"waf",
"security",
"normalization",
"http",
]
categories = [
"web-programming",
"parser-implementations",
]
license = "Apache-2.0"
repository = "https://github.com/0x00spor3/Light-WAF"
[lib]
name = "waf_normalizer"
path = "src/lib.rs"
[[test]]
name = "cookie_robustness"
path = "tests/cookie_robustness.rs"
[[test]]
name = "ctless_json"
path = "tests/ctless_json.rs"
[[test]]
name = "differential"
path = "tests/differential.rs"
[[test]]
name = "form_robustness"
path = "tests/form_robustness.rs"
[[test]]
name = "json_robustness"
path = "tests/json_robustness.rs"
[[test]]
name = "multipart_robustness"
path = "tests/multipart_robustness.rs"
[[test]]
name = "normalizer"
path = "tests/normalizer.rs"
[[test]]
name = "path_robustness"
path = "tests/path_robustness.rs"
[[test]]
name = "query_robustness"
path = "tests/query_robustness.rs"
[dependencies.serde_json]
version = "1"
[dependencies.tracing]
version = "0.1"
[dependencies.unicode-normalization]
version = "0.1"
[dependencies.waf-core]
version = "0.4.0"
[dev-dependencies.bytes]
version = "1"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.unicode-normalization]
version = "0.1"