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 sagoin

Dependencies

(17 total, 4 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 concolor^0.1.10.1.1up to date
 concolor-clap^0.1.00.1.0up to date
 eyre ⚠️^0.6.80.6.12maybe insecure
 icalendar^0.15.60.16.1out of date
 ignore^0.4.200.4.22up to date
 is_executable^1.0.11.0.1up to date
 java-properties^2.0.02.0.0up to date
 rpassword^7.2.07.3.1up to date
 serde^1.0.1801.0.198up to date
 time^0.3.240.3.36up to date
 toml^0.7.60.8.12out of date
 ureq^2.7.12.9.6up to date
 webbrowser^0.8.101.0.0out of date
 zip^0.6.61.1.1out of date
 clap^4.3.194.5.4up to date
 color-eyre^0.6.20.6.3up to date
 multipart^0.18.00.18.0up to date

Dev dependencies

(1 total, all up-to-date)

CrateRequiredLatestStatus
 tempfile^3.7.03.10.1up to date

Build dependencies

(4 total, all up-to-date)

CrateRequiredLatestStatus
 clap^4.3.194.5.4up to date
 clap_complete^4.3.24.5.2up to date
 clap_mangen^0.2.120.2.20up to date
 concolor-clap^0.1.00.1.0up to date

Security Vulnerabilities

eyre: Parts of Report are dropped as the wrong type during downcast

RUSTSEC-2024-0021

In affected versions, after a Report is constructed using wrap_err or wrap_err_with to attach a message of type D onto an error of type E, then using downcast to recover ownership of either the value of type D or the value of type E, one of two things can go wrong:

  • If downcasting to E, there remains a value of type D to be dropped. It is incorrectly "dropped" by running E's drop behavior, rather than D's. For example if D is &str and E is std::io::Error, there would be a call of std::io::Error::drop in which the reference received by the Drop impl does not refer to a valid value of type std::io::Error, but instead to &str.

  • If downcasting to D, there remains a value of type E to be dropped. When D and E do not happen to be the same size, E's drop behavior is incorrectly executed in the wrong location. The reference received by the Drop impl may point left or right of the real E value that is meant to be getting dropped.

In both cases, when the Report contains an error E that has nontrivial drop behavior, the most likely outcome is memory corruption.

When the Report contains an error E that has trivial drop behavior (for example a Utf8Error) but where D has nontrivial drop behavior (such as String), the most likely outcome is that downcasting to E would leak D.