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 libp2p-core

Dependencies

(29 total, 13 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 asn1_der^0.7.40.7.6up to date
 bs58^0.4.00.5.1out of date
 ed25519-dalek ⚠️^1.0.12.1.1out of date
 either^1.51.15.0up to date
 fnv^1.01.0.7up to date
 futures^0.3.10.3.31up to date
 futures-timer^33.0.3up to date
 instant^0.1.110.1.13up to date
 libsecp256k1^0.7.00.7.1up to date
 log^0.40.4.26up to date
 multiaddr^0.16.00.18.2out of date
 multihash^0.160.19.3out of date
 multistream-select^0.12.10.13.0out of date
 once_cell^1.16.01.21.1up to date
 p256^0.11.10.13.2out of date
 parking_lot^0.12.00.12.3up to date
 pin-project^1.0.01.1.10up to date
 prost^0.110.13.5out of date
 rand^0.80.9.0out of date
 ring ⚠️^0.16.90.17.14out of date
 rw-stream-sink^0.3.00.4.0out of date
 sec1^0.3.00.7.3out of date
 serde^11.0.219up to date
 sha2^0.10.00.10.8up to date
 smallvec^1.6.11.14.0up to date
 thiserror^1.02.0.12out of date
 unsigned-varint^0.70.8.0out of date
 void^11.0.2up to date
 zeroize^11.8.1up to date

Dev dependencies

(6 total, 3 outdated)

CrateRequiredLatestStatus
 async-std^1.6.21.13.0up to date
 base64^0.13.00.22.1out of date
 criterion^0.40.5.1out of date
 multihash^0.160.19.3out of date
 rmp-serde^1.01.3.0up to date
 serde_json^1.01.0.140up to date

Security Vulnerabilities

ed25519-dalek: Double Public Key Signing Function Oracle Attack on `ed25519-dalek`

RUSTSEC-2022-0093

Versions of ed25519-dalek prior to v2.0 model private and public keys as separate types which can be assembled into a Keypair, and also provide APIs for serializing and deserializing 64-byte private/public keypairs.

Such APIs and serializations are inherently unsafe as the public key is one of the inputs used in the deterministic computation of the S part of the signature, but not in the R value. An adversary could somehow use the signing function as an oracle that allows arbitrary public keys as input can obtain two signatures for the same message sharing the same R and only differ on the S part.

Unfortunately, when this happens, one can easily extract the private key.

Revised public APIs in v2.0 of ed25519-dalek do NOT allow a decoupled private/public keypair as signing input, except as part of specially labeled "hazmat" APIs which are clearly labeled as being dangerous if misused.

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.