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 zorbs

Dependencies

(28 total, 3 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 axum^0.8.80.8.8up to date
 tokio^1.49.01.50.0up to date
 tower-http^0.6.80.6.8up to date
 tracing^0.1.440.1.44up to date
 tracing-subscriber^0.3.220.3.23up to date
 serde^1.0.2281.0.228up to date
 serde_json^1.0.1491.0.149up to date
 dotenvy^0.15.70.15.7up to date
 sqlx^0.8.60.8.6up to date
 chrono^0.4.430.4.44up to date
 uuid^1.21.01.22.0up to date
 maud^0.27.00.27.0up to date
 toml^1.0.31.1.0+spec-1.1.0up to date
 tar ⚠️^0.4.440.4.45maybe insecure
 flate2^1.1.91.1.9up to date
 semver^1.0.271.0.27up to date
 clap^4.5.594.6.0up to date
 reqwest^0.120.13.2out of date
 oauth2^5.0.05.0.0up to date
 axum-login^0.180.18.0up to date
 tower-sessions^0.140.15.0out of date
 tower-sessions-sqlx-store^0.140.15.0out of date
 time ⚠️^0.30.3.47maybe insecure
 webauthn-rs^0.5.40.5.4up to date
 url^2.52.5.8up to date
 base64^0.220.22.1up to date
 serde_cbor_2^0.130.13.0up to date
 openssl-sys^0.90.9.112up to 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.

tar: `unpack_in` can chmod arbitrary directories by following symlinks

RUSTSEC-2026-0067

In versions 0.4.44 and below of tar-rs, when unpacking a tar archive, the tar crate's unpack_dir function uses fs::metadata() to check whether a path that already exists is a directory. Because fs::metadata() follows symbolic links, a crafted tarball containing a symlink entry followed by a directory entry with the same name causes the crate to treat the symlink target as a valid existing directory — and subsequently apply chmod to it. This allows an attacker to modify the permissions of arbitrary directories outside the extraction root.

This issue has been fixed in version 0.4.45.

tar: tar-rs incorrectly ignores PAX size headers if header size is nonzero

RUSTSEC-2026-0068

Versions 0.4.44 and below of tar-rs have conditional logic that skips the PAX size header in cases where the base header size is nonzero.

As part of CVE-2025-62518, the astral-tokio-tar project was changed to correctly honor PAX size headers in the case where it was different from the base header. This is almost the inverse of the astral-tokio-tar issue.

Any discrepancy in how tar parsers honor file size can be used to create archives that appear differently when unpacked by different archivers. In this case, the tar-rs (Rust tar) crate is an outlier in checking for the header size — other tar parsers (including e.g. Go archive/tar) unconditionally use the PAX size override. This can affect anything that uses the tar crate to parse archives and expects to have a consistent view with other parsers.

This issue has been fixed in version 0.4.45.