attackstr 0.2.3

Grammar-based security payload generation - TOML-driven, composable, encoding-aware
Documentation
[package]
exclude = ["target/"]
name = "attackstr"
version = "0.2.3"
edition = "2021"
rust-version = "1.85"
license = "MIT OR Apache-2.0"
authors = ["Santh <64453045+santhreal@users.noreply.github.com>"]
repository = "https://github.com/santhreal/attackstr"
homepage = "https://santh.dev"
description = "Grammar-based security payload generation  -  TOML-driven, composable, encoding-aware"
readme = "README.md"
keywords = ["security", "payloads", "payload-generation", "fuzzing", "pentest"]
categories = ["development-tools::testing"]
[package.metadata.santh]
status = "beta"

[features]
default = []
# Gates real exploit proof-of-concept strings in ports/ and examples.
# Enabling this feature ships working attack payloads.
exploits = []

[dependencies]
serde = { version = "=1.0.228", features = ["derive"] }
toml = "=0.8.23"
urlencoding = "=2.1.3"
thiserror = "=2.0.18"
tracing = "=0.1.44"
encodex = { package = "santh-encodex", version = "0.1.13", path = "../../performance/compression/encodex" }

[dev-dependencies]
proptest = "=1.9.0"
tempfile = "=3.27.0"
tracing-subscriber = { version = "=0.3.23", features = ["fmt"] }

[[test]]
name = "unit_tests"
path = "tests/unit/mod.rs"

[[test]]
name = "adversarial_tests"
path = "tests/adversarial/mod.rs"

[[test]]
name = "concurrent_tests"
path = "tests/concurrent/mod.rs"

[[test]]
name = "property_tests"
path = "tests/property/mod.rs"

[[test]]
name = "integration_tests"
path = "tests/integration/mod.rs"

[[test]]
name = "regression_tests"
path = "tests/regression/mod.rs"

[[example]]
name = "basic"
required-features = ["exploits"]

[[example]]
name = "custom_encoding"

[[example]]
name = "mutations"

[[example]]
name = "toml_config"
required-features = ["exploits"]

[[test]]
name = "break_it"
path = "tests/break_it.rs"