use-owasp 0.0.1

OWASP category and application-security taxonomy primitives for RustUse
Documentation
  • Coverage
  • 31.11%
    14 out of 45 items documented1 out of 14 items with examples
  • Size
  • Source code size: 9.78 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 846.85 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 2s Average build duration of successful builds.
  • all releases: 2s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • Documentation
  • RustUse/use-security
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • CloudBranch

use-owasp

OWASP category and application-security taxonomy primitives for RustUse.

Experimental

use-owasp is experimental while the use-security workspace remains below 0.3.0. Expect small API adjustments during the first release wave.

Example

use use_owasp::{OwaspTop10Category, OwaspTop10Version};

let category: OwaspTop10Category = "broken-access-control".parse()?;

assert_eq!(category, OwaspTop10Category::BrokenAccessControl);
assert_eq!(OwaspTop10Version::Top10_2021.as_str(), "top-10-2021");
# Ok::<(), use_owasp::OwaspParseError>(())

Scope

  • Stable labels for OWASP Top 10 style categories.
  • Lightweight OWASP project, risk ID, and control-area metadata.
  • Display and parsing helpers for local categorization.

Non-goals

  • OWASP scraping.
  • Mirroring entire OWASP standards.
  • Scanner behavior or browser/runtime enforcement.

License

Licensed under either of the following, at your option:

  • Apache License, Version 2.0
  • MIT license