This project might be open to known security vulnerabilities, which can be prevented by tightening the version range of affected dependencies. Find detailed information at the bottom.

Crate jsonschema

Dependencies

(22 total, 5 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 ahash^0.80.8.12up to date
 anyhow^1.01.0.102up to date
 base64^0.210.22.1out of date
 bytecount^0.60.6.9up to date
 clap^4.04.6.0up to date
 fancy-regex^0.110.17.0out of date
 fraction^0.130.15.3out of date
 getrandom^0.20.4.2out of date
 iso8601^0.60.6.3up to date
 itoa^11.0.18up to date
 memchr^2.52.8.0up to date
 num-cmp^0.10.1.0up to date
 once_cell^1.171.21.4up to date
 parking_lot^0.120.12.5up to date
 percent-encoding^2.12.3.2up to date
 regex^1.61.12.3up to date
 reqwest^0.110.13.2out of date
 serde^1.01.0.228up to date
 serde_json^1.01.0.149up to date
 time ⚠️^0.30.3.47maybe insecure
 url^2.22.5.8up to date
 uuid^11.22.0up to date

Dev dependencies

(8 total, 3 outdated)

CrateRequiredLatestStatus
 criterion^0.4.00.8.2out of date
 json_schema_test_suite^0.3.00.3.0up to date
 jsonschema-valid^0.50.5.2up to date
 lazy_static^1.41.5.0up to date
 mockito^0.311.7.2out of date
 paste^1.01.0.15up to date
 test-case^33.3.1up to date
 valico^3.64.0.0out of date

Security Vulnerabilities

time: Denial of Service via Stack Exhaustion

RUSTSEC-2026-0009

Impact

When user-provided input is provided to any type that parses with the RFC 2822 format, a denial of service attack via stack exhaustion is possible. The attack relies on formally deprecated and rarely-used features that are part of the RFC 2822 format used in a malicious manner. Ordinary, non-malicious input will never encounter this scenario.

Patches

A limit to the depth of recursion was added in v0.3.47. From this version, an error will be returned rather than exhausting the stack.

Workarounds

Limiting the length of user input is the simplest way to avoid stack exhaustion, as the amount of the stack consumed would be at most a factor of the length of the input.