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 opcua

Dependencies

(28 total, 5 outdated, 3 possibly insecure)

CrateRequiredLatestStatus
 actix-files^0.60.6.5up to date
 actix-web^4.44.5.1up to date
 base64^0.210.22.1out of date
 bitflags^2.42.5.0up to date
 byteorder^1.41.5.0up to date
 bytes^1.31.6.0up to date
 chrono ⚠️^0.40.4.38maybe insecure
 derivative^2.22.2.0up to date
 env_logger^0.100.11.3out of date
 foreign-types^0.30.5.0out of date
 futures^0.30.3.30up to date
 gethostname^0.40.4.3up to date
 lazy_static^1.4.01.4.0up to date
 libc^0.20.2.154up to date
 log^0.40.4.21up to date
 openssl ⚠️^0.100.10.64maybe insecure
 openssl-sys^0.90.9.102up to date
 parking_lot^0.120.12.2up to date
 regex^1.71.10.4up to date
 rumqttc^0.230.24.0out of date
 serde^1.01.0.200up to date
 serde_derive^1.01.0.200up to date
 serde_json^1.01.0.116up to date
 serde_yaml^0.90.9.34+deprecatedup to date
 tokio ⚠️^11.37.0maybe insecure
 tokio-util^0.70.7.11up to date
 url^1.62.5.0out of date
 uuid^1.21.8.0up to date

Dev dependencies

(2 total, all up-to-date)

CrateRequiredLatestStatus
 serde_json^1.01.0.116up to date
 tempdir^0.30.3.7up to date

Security Vulnerabilities

chrono: Potential segfault in `localtime_r` invocations

RUSTSEC-2020-0159

Impact

Unix-like operating systems may segfault due to dereferencing a dangling pointer in specific circumstances. This requires an environment variable to be set in a different thread than the affected functions. This may occur without the user's knowledge, notably in a third-party library.

Workarounds

No workarounds are known.

References

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

openssl: `openssl` `X509VerifyParamRef::set_host` buffer over-read

RUSTSEC-2023-0044

When this function was passed an empty string, openssl would attempt to call strlen on it, reading arbitrary memory until it reached a NUL byte.