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

Crate exonum

Dependencies

(41 total, 24 outdated, 4 insecure)

CrateRequiredLatestStatus
 actix^0.7.90.13.5out of date
 actix-net^0.2.60.2.6up to date
 actix-web ⚠️^0.7.184.15.0insecure
 atty^0.2.110.2.14up to date
 bit-vec^0.5.00.10.1out of date
 byteorder^1.2.71.5.0up to date
 bytes^0.4.111.12.1out of date
 chrono^0.4.60.4.45up to date
 clap^2.31.24.6.7out of date
 ctrlc^3.1.13.5.2up to date
 env_logger^0.6.00.11.11out of date
 erased-serde^0.30.4.10out of date
 exonum-crypto^0.11.01.0.0out of date
 exonum-derive^0.11.01.0.0out of date
 exonum_rocksdb^0.7.40.7.6up to date
 exonum_sodiumoxide^0.0.210.0.24out of date
 failure^0.1.50.1.8up to date
 futures^0.1.250.3.34out of date
 hex^0.3.20.4.3out of date
 log^0.4.60.4.34up to date
 os_info^1.0.13.15.0out of date
 protobuf ⚠️^2.4.03.7.2insecure
 rand^0.6.40.10.3out of date
 rand_xorshift^0.1.10.5.0out of date
 rpassword^2.1.07.5.4out of date
 rust_decimal^0.11.21.43.0out of date
 serde^1.0.101.0.229up to date
 serde_derive^1.0.641.0.229up to date
 serde_json^1.0.191.0.151up to date
 snow ⚠️^0.5.20.10.0insecure
 tokio ⚠️^0.1.141.53.1insecure
 tokio-codec^0.1.10.1.2up to date
 tokio-core^0.1.170.1.18up to date
 tokio-current-thread^0.1.40.1.7up to date
 tokio-dns-unofficial^0.4.00.4.0up to date
 tokio-io^0.1.110.1.13up to date
 tokio-retry^0.2.00.3.2out of date
 tokio-threadpool^0.1.100.1.18up to date
 toml^0.4.101.1.6+spec-1.1.0out of date
 uuid^0.7.11.26.1out of date
 zeroize^0.5.21.9.0out of date

Dev dependencies

(7 total, 4 outdated)

CrateRequiredLatestStatus
 criterion^0.2.80.8.2out of date
 lazy_static^1.0.11.5.0up to date
 modifier^0.1.00.1.0up to date
 num^0.2.00.4.3out of date
 pretty_assertions^0.6.11.4.1out of date
 proptest^0.9.11.11.0out of date
 tempdir^0.3.70.3.7up to date

Security Vulnerabilities

actix-web: Multiple memory safety issues

RUSTSEC-2018-0019

Affected versions contain multiple memory safety issues, such as:

  • Unsoundly coercing immutable references to mutable references
  • Unsoundly extending lifetimes of strings
  • Adding the Send marker trait to objects that cannot be safely sent between threads

This may result in a variety of memory corruption scenarios, most likely use-after-free.

A significant refactoring effort has been conducted to resolve these issues.

tokio: Data race when sending and receiving after closing a `oneshot` channel

RUSTSEC-2021-0124

If a tokio::sync::oneshot channel is closed (via the oneshot::Receiver::close method), a data race may occur if the oneshot::Sender::send method is called while the corresponding oneshot::Receiver is awaited or calling try_recv.

When these methods are called concurrently on a closed channel, the two halves of the channel can concurrently access a shared memory location, resulting in a data race. This has been observed to cause memory corruption.

Note that the race only occurs when both halves of the channel are used after the Receiver half has called close. Code where close is not used, or where the Receiver is not awaited and try_recv is not called after calling close, is not affected.

See tokio#4225 for more details.

snow: Unauthenticated Nonce Increment in snow

RUSTSEC-2024-0011

There was a logic bug where unauthenticated payloads could still cause a nonce increment in snow's internal state. For an attacker with privileges to inject packets into the channel over which the Noise session operates, this could allow a denial-of-service attack which could prevent message delivery by sending garbage data.

Note that this only affects those who are using the stateful TransportState, not those using StatelessTransportState.

This has been patched in version 0.9.5, and all users are recommended to update.

protobuf: Crash due to uncontrolled recursion in protobuf crate

RUSTSEC-2024-0437

Affected version of this crate did not properly parse unknown fields when parsing a user-supplied input.

This allows an attacker to cause a stack overflow when parsing the mssage on untrusted data.