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 jsonrpsee-http-client

Dependencies

(17 total, 5 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 async-trait^0.10.1.89up to date
 base64^0.220.22.1up to date
 http-body^11.0.1up to date
 hyper^1.31.8.1up to date
 hyper-rustls^0.27.10.27.7up to date
 hyper-util^0.1.10.1.19up to date
 jsonrpsee-core^0.24.70.26.0out of date
 jsonrpsee-types^0.24.70.26.0out of date
 rustls ⚠️^0.23.70.23.35maybe insecure
 rustls-platform-verifier^0.30.6.2out of date
 serde^1.01.0.228up to date
 serde_json^11.0.145up to date
 thiserror^12.0.17out of date
 tokio^1.23.11.48.0up to date
 tower^0.40.5.2out of date
 tracing^0.1.340.1.44up to date
 url^2.4.02.5.7up to date

Dev dependencies

(2 total, 1 possibly insecure)

CrateRequiredLatestStatus
 tokio^1.23.11.48.0up to date
 tracing-subscriber ⚠️^0.3.30.3.22maybe insecure

Security Vulnerabilities

rustls: rustls network-reachable panic in `Acceptor::accept`

RUSTSEC-2024-0399

A bug introduced in rustls 0.23.13 leads to a panic if the received TLS ClientHello is fragmented. Only servers that use rustls::server::Acceptor::accept() are affected.

Servers that use tokio-rustls's LazyConfigAcceptor API are affected.

Servers that use tokio-rustls's TlsAcceptor API are not affected.

Servers that use rustls-ffi's rustls_acceptor_accept API are affected.

tracing-subscriber: Logging user input may result in poisoning logs with ANSI escape sequences

RUSTSEC-2025-0055

Previous versions of tracing-subscriber were vulnerable to ANSI escape sequence injection attacks. Untrusted user input containing ANSI escape sequences could be injected into terminal output when logged, potentially allowing attackers to:

  • Manipulate terminal title bars
  • Clear screens or modify terminal display
  • Potentially mislead users through terminal manipulation

In isolation, impact is minimal, however security issues have been found in terminal emulators that enabled an attacker to use ANSI escape sequences via logs to exploit vulnerabilities in the terminal emulator.

This was patched in PR #3368 to escape ANSI control characters from user input.