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 torchbear

Dependencies

(29 total, 19 outdated, 5 possibly insecure)

CrateRequiredLatestStatus
 actix^0.70.13.3out of date
 actix-lua^0.50.7.0out of date
 actix-web ⚠️^0.74.5.1out of date
 base64^0.90.22.0out of date
 chrono ⚠️^0.40.4.38maybe insecure
 clap^2.324.5.4out of date
 colored^1.6.12.1.0out of date
 comrak ⚠️^0.20.22.0out of date
 config^0.90.14.0out of date
 env_logger^0.50.11.3out of date
 failure^0.10.1.8up to date
 failure_derive^0.10.1.8up to date
 fern^0.50.6.2out of date
 futures^0.10.3.30out of date
 git2^0.70.18.3out of date
 log^0.4.50.4.21up to date
 log-panics^2.02.1.0up to date
 openssl ⚠️^0.100.10.64maybe insecure
 rlua^0.150.20.0out of date
 rlua_serde^0.20.4.0out of date
 rust_sodium^0.100.10.2up to date
 select^0.40.6.0out of date
 serde^1.01.0.198up to date
 serde_derive^1.01.0.198up to date
 serde_json^1.01.0.116up to date
 serde_urlencoded^0.50.7.1out of date
 serde_yaml ⚠️^0.80.9.34+deprecatedout of date
 tera^0.111.19.1out of date
 uuid^0.61.8.0out of date

Dev dependencies

(1 total, all up-to-date)

CrateRequiredLatestStatus
 tempfile^33.10.1up to date

Security Vulnerabilities

serde_yaml: Uncontrolled recursion leads to abort in deserialization

RUSTSEC-2018-0005

Affected versions of this crate did not properly check for recursion while deserializing aliases.

This allows an attacker to make a YAML file with an alias referring to itself causing an abort.

The flaw was corrected by checking the recursion depth.

actix-web: Multiple memory safety issues

RUSTSEC-2018-0019

Affected versions contain multiple memory safety issues, such as:

  • Unsoundly coercing immutable references to mutable references
  • Unsoundly extending lifetimes of strings
  • Adding the Send marker trait to objects that cannot be safely sent between threads

This may result in a variety of memory corruption scenarios, most likely use-after-free.

A significant refactoring effort has been conducted to resolve these issues.

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

comrak: XSS in `comrak`

RUSTSEC-2021-0026

The comrak we were matching unsafe URL prefixes, such as data: or javascript: , in a case-sensitive manner. This meant prefixes like Data: were untouched.

comrak: XSS in `comrak`

RUSTSEC-2021-0063

comrak operates by default in a "safe" mode of operation where unsafe content, such as arbitrary raw HTML or URLs with non-standard schemes, are not permitted in the output. This is per the reference GFM implementation, cmark-gfm.

Ampersands were not being correctly escaped in link targets, making it possible to fashion unsafe URLs using schemes like data: or javascript: by entering them as HTML entities, e.g. &#x64&#x61&#x74&#x61&#x3a. The intended behaviour, demonstrated upstream, is that these should be escaped and therefore harmless, but this behaviour was broken in comrak.

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.