This project contains known security vulnerabilities. Find detailed information at the bottom.

Crate deno_node

Dependencies

(84 total, 13 outdated, 1 insecure)

CrateRequiredLatestStatus
 aead-gcm-stream^0.30.3.0up to date
 aes=0.8.30.8.4out of date
 async-trait^0.1.730.1.83up to date
 base64^0.21.70.22.1out of date
 blake2^0.10.60.10.6up to date
 brotli^6.0.07.0.0out of date
 bytes^1.4.01.8.0up to date
 cbc=0.1.20.1.2up to date
 const-oid^0.9.50.9.6up to date
 data-encoding^2.3.32.6.0up to date
 deno_core^0.318.00.319.0out of date
 deno_fetch^0.201.00.201.0up to date
 deno_fs^0.87.00.87.0up to date
 deno_io^0.87.00.87.0up to date
 deno_media_type^0.2.00.2.1up to date
 deno_net^0.169.00.169.0up to date
 deno_package_json^0.1.20.1.2up to date
 deno_path_util=0.2.10.2.1up to date
 deno_permissions^0.37.00.37.0up to date
 deno_whoami^0.1.00.1.0up to date
 der^0.7.90.7.9up to date
 digest^0.10.50.10.7up to date
 dsa^0.6.30.6.3up to date
 ecb=0.1.20.1.2up to date
 ecdsa^0.16.90.16.9up to date
 ed25519-dalek^2.1.12.1.1up to date
 elliptic-curve^0.13.40.13.8up to date
 errno^0.2.80.3.9out of date
 faster-hex^0.90.10.0out of date
 h2^0.4.40.4.6up to date
 hkdf^0.12.30.12.4up to date
 home^0.5.90.5.9up to date
 http^1.01.1.0up to date
 http-body-util^0.1.20.1.2up to date
 hyper^1.4.11.5.0up to date
 hyper-util=0.1.70.1.10out of date
 idna^0.3.01.0.3out of date
 indexmap^22.6.0up to date
 ipnetwork^0.20.00.20.0up to date
 k256^0.13.10.13.4up to date
 lazy-regex^33.3.0up to date
 libc^0.2.1260.2.164up to date
 libz-sys^1.1.201.1.20up to date
 md-5^0.10.50.10.6up to date
 md4^0.10.20.10.2up to date
 memchr^2.7.42.7.4up to date
 node_resolver^0.16.00.16.0up to date
 num-bigint^0.40.4.6up to date
 num-bigint-dig^0.8.20.8.4up to date
 num-integer^0.1.450.1.46up to date
 num-traits^0.2.140.2.19up to date
 once_cell^1.17.11.20.2up to date
 p224^0.13.00.13.2up to date
 p256^0.13.20.13.2up to date
 p384^0.13.00.13.0up to date
 path-clean=0.1.01.0.1out of date
 pbkdf2^0.12.10.12.2up to date
 pin-project-lite^0.2.130.2.15up to date
 pkcs8^0.10.20.10.2up to date
 rand=0.8.50.8.5up to date
 regex^1.7.01.11.1up to date
 ring^0.17.00.17.8up to date
 ripemd^0.1.30.1.3up to date
 rsa ⚠️^0.9.30.9.6insecure
 scrypt^0.11.00.11.0up to date
 sec1^0.70.7.3up to date
 serde^1.0.1491.0.215up to date
 sha1^0.10.60.10.6up to date
 sha2^0.10.80.10.8up to date
 sha3^0.10.80.10.8up to date
 signature^2.12.2.0up to date
 simd-json^0.14.00.14.2up to date
 sm3^0.4.20.4.2up to date
 spki^0.7.20.7.3up to date
 stable_deref_trait^1.2.01.2.0up to date
 thiserror^1.0.612.0.3out of date
 tokio^1.36.01.41.1up to date
 url<2.5.02.5.3out of date
 webpki-root-certs^0.26.50.26.6up to date
 winapi=0.3.90.3.9up to date
 windows-sys^0.52.00.59.0out of date
 x25519-dalek^2.0.02.0.1up to date
 x509-parser^0.15.00.16.0out of date
 yoke^0.7.40.7.4up to date

Security Vulnerabilities

rsa: Marvin Attack: potential key recovery through timing sidechannels

RUSTSEC-2023-0071

Impact

Due to a non-constant-time implementation, information about the private key is leaked through timing information which is observable over the network. An attacker may be able to use that information to recover the key.

Patches

No patch is yet available, however work is underway to migrate to a fully constant-time implementation.

Workarounds

The only currently available workaround is to avoid using the rsa crate in settings where attackers are able to observe timing information, e.g. local use on a non-compromised computer is fine.

References

This vulnerability was discovered as part of the "Marvin Attack", which revealed several implementations of RSA including OpenSSL had not properly mitigated timing sidechannel attacks.