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::WafBlockPull 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.
MIT. Copyright 2026 CORUM COLLECTIVE LLC.