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 webauthn-rs

Dependencies

(14 total, 2 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 base64^0.130.22.0out of date
 js-sys^0.30.3.69up to date
 log^0.40.4.21up to date
 nom^47.1.3out of date
 openssl ⚠️^0.100.10.64maybe insecure
 rand^0.80.8.5up to date
 serde^1.01.0.198up to date
 serde_bytes^0.110.11.14up to date
 serde_cbor^0.110.11.2up to date
 serde_derive^1.01.0.198up to date
 serde_json^1.01.0.116up to date
 thiserror^1.01.0.59up to date
 wasm-bindgen^0.20.2.92up to date
 web-sys^0.30.3.69up to date

Dev dependencies

(11 total, 7 outdated, 3 possibly insecure)

CrateRequiredLatestStatus
 askama^0.100.12.1out of date
 askama_tide^0.130.15.0out of date
 async-std^1.61.12.0up to date
 env_logger^0.8.20.11.3out of date
 funty=1.1.02.0.0out of date
 lru ⚠️^0.60.12.3out of date
 openssl ⚠️^0.100.10.64maybe insecure
 rustls ⚠️^0.19.00.23.5out of date
 structopt^0.30.3.26up to date
 tide^0.160.16.0up to date
 tide-rustls^0.20.3.0out of date

Security Vulnerabilities

lru: Use after free in lru crate

RUSTSEC-2021-0130

Lru crate has use after free vulnerability.

Lru crate has two functions for getting an iterator. Both iterators give references to key and value. Calling specific functions, like pop(), will remove and free the value, and but it's still possible to access the reference of value which is already dropped causing use after free.

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.

rustls: `rustls::ConnectionCommon::complete_io` could fall into an infinite loop based on network input

RUSTSEC-2024-0336

If a close_notify alert is received during a handshake, complete_io does not terminate.

Callers which do not call complete_io are not affected.

rustls-tokio and rustls-ffi do not call complete_io and are not affected.

rustls::Stream and rustls::StreamOwned types use complete_io and are affected.