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 finchers

Dependencies

(18 total, 9 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 bitflags^1.0.42.5.0out of date
 bytes^0.4.91.6.0out of date
 cookie^0.11.00.18.1out of date
 either^1.5.01.12.0up to date
 failure^0.1.20.1.8up to date
 futures^0.1.230.3.30out of date
 http ⚠️^0.1.101.1.0out of date
 izanami-service^0.1.0-preview.1N/Aup to date
 izanami-util^0.1.0-preview.1N/Aup to date
 log^0.4.30.4.21up to date
 mime^0.3.80.3.17up to date
 mime_guess^2.0.0-alpha.62.0.4up to date
 percent-encoding^1.0.12.3.1out of date
 serde^1.0.711.0.202up to date
 serde_json^1.0.241.0.117up to date
 serde_qs^0.4.10.13.0out of date
 tokio ⚠️^0.1.81.37.0out of date
 url^1.7.12.5.0out of date

Dev dependencies

(4 total, 1 outdated)

CrateRequiredLatestStatus
 matches^0.1.80.1.10up to date
 izanami^0.1.0-preview.1N/Aup to date
 version-sync^0.70.9.5out of date
 cargo-husky^11.5.0up to date

Crate finchers-macros

Dependencies

(3 total, 3 outdated)

CrateRequiredLatestStatus
 proc-macro2^0.41.0.82out of date
 syn^0.152.0.64out of date
 quote^0.61.0.36out of date

Crate finchers-tungstenite

Dependencies

(9 total, 6 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 base64^0.100.22.1out of date
 failure^0.1.30.1.8up to date
 futures^0.1.240.3.30out of date
 http ⚠️^0.1.131.1.0out of date
 izanami-util^0.1.0-preview.1N/Aup to date
 log^0.40.4.21up to date
 sha1^0.6.00.10.6out of date
 tokio-tungstenite^0.6.00.21.0out of date
 tungstenite ⚠️^0.6.00.21.0out of date

Dev dependencies

(5 total, 2 outdated)

CrateRequiredLatestStatus
 izanami^0.1.0-preview.1N/Aup to date
 log^0.4.50.4.21up to date
 matches^0.1.80.1.10up to date
 pretty_env_logger^0.3.00.5.0out of date
 version-sync^0.80.9.5out of date

Crate doctest

Dependencies

(1 total, all up-to-date)

CrateRequiredLatestStatus
 doubter^0.10.1.0up to date

Dev dependencies

(1 total, all up-to-date)

CrateRequiredLatestStatus
 izanami^0.1.0-preview.1N/Aup to date

Security Vulnerabilities

http: Integer Overflow in HeaderMap::reserve() can cause Denial of Service

RUSTSEC-2019-0033

HeaderMap::reserve() used usize::next_power_of_two() to calculate the increased capacity. However, next_power_of_two() silently overflows to 0 if given a sufficiently large number in release mode.

If the map was not empty when the overflow happens, the library will invoke self.grow(0) and start infinite probing. This allows an attacker who controls the argument to reserve() to cause a potential denial of service (DoS).

The flaw was corrected in 0.1.20 release of http crate.

http: HeaderMap::Drain API is unsound

RUSTSEC-2019-0034

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.

tungstenite: Tungstenite allows remote attackers to cause a denial of service

RUSTSEC-2023-0065

The Tungstenite crate through 0.20.0 for Rust allows remote attackers to cause a denial of service (minutes of CPU consumption) via an excessive length of an HTTP header in a client handshake. The length affects both how many times a parse is attempted (e.g., thousands of times) and the average amount of data for each parse attempt (e.g., millions of bytes).