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 identity

Dependencies

(39 total, 28 outdated, 4 possibly insecure)

CrateRequiredLatestStatus
 actix^0.100.13.5out of date
 actix-web^34.15.0out of date
 actix-rt^12.12.0out of date
 actix-files^0.40.7.0out of date
 actix-http ⚠️^23.13.3out of date
 actix-identity^0.30.9.0out of date
 actix-session^0.40.11.0out of date
 actix-service^1.0.62.0.3out of date
 oxide-auth^0.5.00.6.1out of date
 oxide-auth-actix^0.1.00.3.0out of date
 pretty_env_logger^0.4.00.5.0out of date
 log^0.4.110.4.34up to date
 rand^0.7.30.10.2out of date
 rust-argon2^0.8.23.0.0out of date
 serde^1.0.1141.0.229up to date
 serde_derive^1.0.1141.0.229up to date
 serde_json^11.0.151up to date
 thiserror^1.02.0.20out of date
 uuid^0.81.25.0out of date
 config^0.100.15.25out of date
 lazy_static^1.4.01.5.0up to date
 num_cpus^1.13.01.17.0up to date
 unicode-normalization^0.1.130.1.25up to date
 regex ⚠️^1.3.91.13.1maybe insecure
 pow_sha256^0.2.10.2.1up to date
 futures^0.30.3.34up to date
 validator^0.120.21.0out of date
 validator_derive^0.120.20.1out of date
 ammonia ⚠️^34.1.4out of date
 url^22.5.8up to date
 derive_more^0.992.1.1out of date
 tokio-pg-mapper^0.1.80.2.0out of date
 tokio-pg-mapper-derive^0.1.50.2.0out of date
 tokio-postgres ⚠️^0.50.7.18out of date
 deadpool-postgres^0.50.14.1out of date
 deadpool^0.50.13.0out of date
 actix-redis^0.90.13.1+deprecatedout of date
 redis-async^0.60.18.0out of date
 clap^2.334.6.6out of date

Crate pow

Dependencies

(7 total, all up-to-date)

CrateRequiredLatestStatus
 wasm-bindgen^0.2.630.2.127up to date
 console_error_panic_hook^0.1.60.1.7up to date
 wee_alloc^0.4.50.4.5up to date
 serde^1.0.1141.0.229up to date
 serde_derive^1.0.1141.0.229up to date
 serde_json^11.0.151up to date
 pow_sha256^0.2.10.2.1up to date

Dev dependencies

(1 total, all up-to-date)

CrateRequiredLatestStatus
 wasm-bindgen-test^0.3.130.3.77up to date

Security Vulnerabilities

actix-http: Potential request smuggling capabilities due to lack of input validation

RUSTSEC-2021-0081

Affected versions of this crate did not properly detect invalid requests that could allow HTTP/1 request smuggling (HRS) attacks when running alongside a vulnerable front-end proxy server. This can result in leaked internal and/or user data, including credentials, when the front-end proxy is also vulnerable.

Popular front-end proxies and load balancers already mitigate HRS attacks so it is recommended that they are also kept up to date; check your specific set up. You should upgrade even if the front-end proxy receives exclusively HTTP/2 traffic and connects to the back-end using HTTP/1; several downgrade attacks are known that can also expose HRS vulnerabilities.

regex: Regexes with large repetitions on empty sub-expressions take a very long time to parse

RUSTSEC-2022-0013

The Rust Security Response WG was notified that the regex crate did not properly limit the complexity of the regular expressions (regex) it parses. An attacker could use this security issue to perform a denial of service, by sending a specially crafted regex to a service accepting untrusted regexes. No known vulnerability is present when parsing untrusted input with trusted regexes.

This issue has been assigned CVE-2022-24713. The severity of this vulnerability is "high" when the regex crate is used to parse untrusted regexes. Other uses of the regex crate are not affected by this vulnerability.

Overview

The regex crate features built-in mitigations to prevent denial of service attacks caused by untrusted regexes, or untrusted input matched by trusted regexes. Those (tunable) mitigations already provide sane defaults to prevent attacks. This guarantee is documented and it's considered part of the crate's API.

Unfortunately a bug was discovered in the mitigations designed to prevent untrusted regexes to take an arbitrary amount of time during parsing, and it's possible to craft regexes that bypass such mitigations. This makes it possible to perform denial of service attacks by sending specially crafted regexes to services accepting user-controlled, untrusted regexes.

Affected versions

All versions of the regex crate before or equal to 1.5.4 are affected by this issue. The fix is include starting from regex 1.5.5.

Mitigations

We recommend everyone accepting user-controlled regexes to upgrade immediately to the latest version of the regex crate.

Unfortunately there is no fixed set of problematic regexes, as there are practically infinite regexes that could be crafted to exploit this vulnerability. Because of this, we do not recommend denying known problematic regexes.

Acknowledgements

We want to thank Addison Crump for responsibly disclosing this to us according to the Rust security policy, and for helping review the fix.

We also want to thank Andrew Gallant for developing the fix, and Pietro Albini for coordinating the disclosure and writing this advisory.

tokio-postgres: Panic on a `DataRow` with fewer fields than columns allows denial of service

RUSTSEC-2026-0178

A malicious or compromised server can send a row containing fewer fields than its row description declares columns. Reading one of the missing columns then panics with an out-of-bounds index, aborting the calling task. This affects even the otherwise non-panicking try_get, and both Row and SimpleQueryRow.

Applications that connect only to a trusted database are not exposed; the risk applies to clients that may connect to untrusted or user-supplied servers, or whose connection can be intercepted by a man-in-the-middle.

ammonia: XSS in ammonia via SVG `animate` and `set` animation tags

RUSTSEC-2026-0213

The following SVG will produce a link with a javascript scheme. If the user clicks this link, they will run it.

<svg xmlns="http://www.w3.org/2000/svg">
  <a>
    <set attributeName="href" to="javascript:alert('SET_XSS')"></set>
    <text y="30">Click set</text>
  </a>
</svg>

Ammonia did not apply attribute filters based on attributeName, so the contents of the to, from, and values tags were not sanitized as URLs.

Applications that do not explicitly allow either of these tags should not be affected, since neither are allowed by default.


Discovered by: Younghun Ko (@koyokr)