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 north

Dependencies

(6 total, 4 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 north-common^0.0.30.1.10out of date
 north-derives^0.1.20.1.2up to date
 hyper ⚠️^0.141.6.0out of date
 poem^1.3.573.1.11out of date
 poem-openapi^3.0.05.1.15out of date
 aragog^0.170.17.1up to date

Crate north-derives

Dependencies

(3 total, 2 outdated)

CrateRequiredLatestStatus
 syn^1.02.0.102out of date
 quote^1.0.81.0.40up to date
 north-common^0.0.30.1.10out of date

Crate north-service

Dependencies

(6 total, all up-to-date)

CrateRequiredLatestStatus
 async-trait^0.10.1.88up to date
 log^0.4.140.4.27up to date
 nanoid^0.40.4.0up to date
 north-common^0.1.90.1.10up to date
 async-zeroconf^0.20.2.2up to date
 north-consul^00.0.2up to date

Crate north-config

Dependencies

(9 total, 4 outdated)

CrateRequiredLatestStatus
 dotenvy^0.15.70.15.7up to date
 econf^0.2.10.3.0out of date
 notify^6.1.18.0.0out of date
 json_dotpath^1.11.1.0up to date
 convert_case^0.60.8.0out of date
 async-trait^0.1.770.1.88up to date
 async-std^1.121.13.1up to date
 ron^0.8.10.10.1out of date
 toml^0.8.80.8.23up to date

Dev dependencies

(2 total, all up-to-date)

CrateRequiredLatestStatus
 tokio-test^0.4.30.4.4up to date
 envmnt^0.10.40.10.4up to date

Crate north-consul

Dependencies

(3 total, 1 outdated)

CrateRequiredLatestStatus
 reqwest^0.110.12.20out of date
 error-chain^0.120.12.4up to date
 url^2.12.5.4up to date

Dev dependencies

(5 total, 3 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 base64^0.21.70.22.1out of date
 hostname^0.30.4.1out of date
 rand^0.8.30.9.1out of date
 tokio ⚠️^1.191.45.1maybe insecure
 tokio-test^0.40.4.4up to date

Crate north-common

No external dependencies! 🙌

Crate basic

Dependencies

(5 total, 2 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 tokio ⚠️^1.181.45.1maybe insecure
 poem-openapi^4.0.05.1.15out of date
 serde^1.0.1941.0.219up to date
 dotenv^0.15.00.15.0up to date
 serde-this-or-that^0.40.5.0out of date

Security Vulnerabilities

hyper: Lenient `hyper` header parsing of `Content-Length` could allow request smuggling

RUSTSEC-2021-0078

hyper's HTTP header parser accepted, according to RFC 7230, illegal contents inside Content-Length headers. Due to this, upstream HTTP proxies that ignore the header may still forward them along if it chooses to ignore the error.

To be vulnerable, hyper must be used as an HTTP/1 server and using an HTTP proxy upstream that ignores the header's contents but still forwards it. Due to all the factors that must line up, an attack exploiting this vulnerability is unlikely.

hyper: Integer overflow in `hyper`'s parsing of the `Transfer-Encoding` header leads to data loss

RUSTSEC-2021-0079

When decoding chunk sizes that are too large, hyper's code would encounter an integer overflow. Depending on the situation, this could lead to data loss from an incorrect total size, or in rarer cases, a request smuggling attack.

To be vulnerable, you must be using hyper for any HTTP/1 purpose, including as a client or server, and consumers must send requests or responses that specify a chunk size greater than 18 exabytes. For a possible request smuggling attack to be possible, any upstream proxies must accept a chunk size greater than 64 bits.

tokio: reject_remote_clients Configuration corruption

RUSTSEC-2023-0001

On Windows, configuring a named pipe server with pipe_mode will force ServerOptions::reject_remote_clients as false.

This drops any intended explicit configuration for the reject_remote_clients that may have been set as true previously.

The default setting of reject_remote_clients is normally true meaning the default is also overridden as false.

Workarounds

Ensure that pipe_mode is set first after initializing a ServerOptions. For example:

let mut opts = ServerOptions::new();
opts.pipe_mode(PipeMode::Message);
opts.reject_remote_clients(true);