This project contains known security vulnerabilities. Find detailed information at the bottom.

Crate apple-codesign

Dependencies

(77 total, 8 outdated, 1 insecure, 1 possibly insecure)

CrateRequiredLatestStatus
 anyhow^1.0.931.0.98up to date
 app-store-connect^0.7.00.7.0up to date
 apple-bundles^0.21.00.21.0up to date
 apple-flat-package^0.20.00.20.0up to date
 apple-xar^0.20.00.20.0up to date
 aws-config^1.5.101.6.1up to date
 aws-sdk-s3^1.63.01.82.0up to date
 aws-smithy-http^0.60.110.62.0out of date
 aws-smithy-types^1.2.91.3.0up to date
 base64^0.22.10.22.1up to date
 bcder^0.7.40.7.5up to date
 bitflags^2.6.02.9.0up to date
 bytes^1.9.01.10.1up to date
 chrono^0.4.380.4.40up to date
 clap^4.5.214.5.36up to date
 cryptographic-message-syntax^0.27.00.27.0up to date
 der^0.7.90.7.9up to date
 dialoguer^0.11.00.11.0up to date
 difference^2.0.02.0.0up to date
 digest^0.10.70.10.7up to date
 dirs^5.0.16.0.0out of date
 elliptic-curve^0.13.80.13.8up to date
 env_logger^0.11.50.11.8up to date
 figment^0.10.190.10.19up to date
 filetime^0.2.250.2.25up to date
 glob^0.3.10.3.2up to date
 goblin^0.9.20.9.3up to date
 hex^0.4.30.4.3up to date
 log^0.4.220.4.27up to date
 md-5^0.10.60.10.6up to date
 minicbor^0.25.10.26.4out of date
 num-traits^0.2.190.2.19up to date
 object^0.36.50.36.7up to date
 oid-registry^0.7.10.8.1out of date
 once_cell^1.20.21.21.3up to date
 p12^0.6.30.6.3up to date
 p256^0.13.20.13.2up to date
 pem^3.0.43.0.5up to date
 pkcs1^0.7.50.7.5up to date
 pkcs8^0.10.20.10.2up to date
 plist^1.7.01.7.1up to date
 rand^0.8.50.9.0out of date
 rasn^0.20.20.26.1out of date
 rayon^1.10.01.10.0up to date
 regex^1.11.11.11.1up to date
 reqwest^0.12.90.12.15up to date
 ring ⚠️^0.17.80.17.14maybe insecure
 rsa ⚠️^0.9.70.9.8insecure
 scroll^0.12.00.12.0up to date
 security-framework^2.11.13.2.0out of date
 security-framework-sys^2.12.12.14.0up to date
 semver^1.0.231.0.26up to date
 serde^1.0.2151.0.219up to date
 serde_json^1.0.1331.0.140up to date
 serde_yaml^0.9.340.9.34+deprecatedup to date
 sha2^0.10.80.10.8up to date
 signature^2.2.02.2.0up to date
 simple-file-manifest^0.11.00.11.0up to date
 spake2^0.4.00.4.0up to date
 spki^0.7.30.7.3up to date
 subtle^2.6.12.6.1up to date
 tempfile^3.14.03.19.1up to date
 thiserror^2.0.32.0.12up to date
 tokio^1.41.11.44.2up to date
 tungstenite^0.24.00.26.2out of date
 uuid^1.11.01.16.0up to date
 walkdir^2.5.02.5.0up to date
 widestring^1.1.01.2.0up to date
 windows-sys^0.59.00.59.0up to date
 x509^0.2.00.2.0up to date
 x509-certificate^0.24.00.24.0up to date
 xml-rs^0.8.230.8.26up to date
 yasna^0.5.20.5.2up to date
 yubikey^0.8.00.8.0up to date
 zeroize^1.8.11.8.1up to date
 zip^2.2.12.6.1up to date
 zip_structs^0.2.10.2.1up to date

Dev dependencies

(6 total, all up-to-date)

CrateRequiredLatestStatus
 flate2^1.0.351.1.1up to date
 indoc^2.0.52.0.6up to date
 simple-file-manifest^0.11.00.11.0up to date
 tar^0.4.430.4.44up to date
 trycmd-indygreg-fork^0.14.200.14.20up to date
 zip^2.2.12.6.1up to date

Security Vulnerabilities

rsa: Marvin Attack: potential key recovery through timing sidechannels

RUSTSEC-2023-0071

Impact

Due to a non-constant-time implementation, information about the private key is leaked through timing information which is observable over the network. An attacker may be able to use that information to recover the key.

Patches

No patch is yet available, however work is underway to migrate to a fully constant-time implementation.

Workarounds

The only currently available workaround is to avoid using the rsa crate in settings where attackers are able to observe timing information, e.g. local use on a non-compromised computer is fine.

References

This vulnerability was discovered as part of the "Marvin Attack", which revealed several implementations of RSA including OpenSSL had not properly mitigated timing sidechannel attacks.

ring: Some AES functions may panic when overflow checking is enabled.

RUSTSEC-2025-0009

ring::aead::quic::HeaderProtectionKey::new_mask() may panic when overflow checking is enabled. In the QUIC protocol, an attacker can induce this panic by sending a specially-crafted packet. Even unintentionally it is likely to occur in 1 out of every 2**32 packets sent and/or received.

On 64-bit targets operations using ring::aead::{AES_128_GCM, AES_256_GCM} may panic when overflow checking is enabled, when encrypting/decrypting approximately 68,719,476,700 bytes (about 64 gigabytes) of data in a single chunk. Protocols like TLS and SSH are not affected by this because those protocols break large amounts of data into small chunks. Similarly, most applications will not attempt to encrypt/decrypt 64GB of data in one chunk.

Overflow checking is not enabled in release mode by default, but RUSTFLAGS="-C overflow-checks" or overflow-checks = true in the Cargo.toml profile can override this. Overflow checking is usually enabled by default in debug mode.