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-mdns

Dependencies

(13 total, 5 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 async-io^1.3.12.3.2out of date
 data-encoding^2.3.22.6.0up to date
 dns-parser^0.8.00.8.0up to date
 futures^0.3.130.3.30up to date
 if-watch^0.2.03.2.0out of date
 lazy_static^1.4.01.4.0up to date
 libp2p-core ⚠️^0.30.00.41.2out of date
 libp2p-swarm^0.32.00.44.2out of date
 log^0.4.140.4.21up to date
 rand^0.8.30.8.5up to date
 smallvec^1.6.11.13.2up to date
 socket2^0.4.00.5.7out of date
 void^1.0.21.0.2up to date

Dev dependencies

(2 total, 1 possibly insecure)

CrateRequiredLatestStatus
 async-std^1.9.01.12.0up to date
 tokio ⚠️^1.2.01.37.0maybe insecure

Security Vulnerabilities

libp2p-core: Failure to verify the public key of a `SignedEnvelope` against the `PeerId` in a `PeerRecord`

RUSTSEC-2022-0009

Affected versions of this crate did not check that the public key the signature was created with matches the peer ID of the peer record. Any combination was considered valid.

This allows an attacker to republish an existing PeerRecord with a different PeerId.

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);