erroracle 0.2.0

HTTP error classification and target modeling for scanner feedback loops.
Documentation
  • Coverage
  • 1.47%
    1 out of 68 items documented0 out of 0 items with examples
  • Size
  • Source code size: 55.86 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 5.36 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 36s Average build duration of successful builds.
  • all releases: 36s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • santhsecurity/erroracle
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • santhsecurity

erroracle

Classify HTTP error responses. Is it a WAF block? A real application error? A rate limit? A generic 404? Feed it responses, it builds a model of the target's error behavior, then classifies new responses against that model.

use erroracle::{HttpResponse, ResponseDisposition};

let resp = HttpResponse::new(403, "Access Denied by Firewall");
let classification = erroracle::classify(&resp);
// ResponseDisposition::WafBlock

Contributing

Pull requests are welcome. There is no such thing as a perfect crate. If you find a bug, a better API, or just a rough edge, open a PR. We review quickly.

License

MIT. Copyright 2026 CORUM COLLECTIVE LLC.