Do not disable Axum default body limits for untrusted uploads
Axum apps should keep a finite `DefaultBodyLimit` (or equivalent) so request bodies cannot exhaust memory.
#Metadata
#Why it matters
`DefaultBodyLimit::disable()` removes the framework guardrail against huge bodies and is unsafe on routes that accept untrusted input.
#Remediation
Set an explicit max body size with `DefaultBodyLimit::max`, add `tower_http::limit::RequestBodyLimitLayer`, or enforce limits at your edge proxy before accepting large uploads.
#Repository path
The generated metadata points to critiq-rules/libs/rules/catalog/rules/rust/rust.security.axum-body-limit-disabled.rule.yaml.