You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Actix and its dependencies should have no known vulnerabilities unpatched
Current Behavior
Actix is affected by CVE-2020-8927, buffer overflow in the Brotli C library, through brotli-sys crate.
Possible Solution
There is no updated release of brotli-sys that fixes the issue (it has been reported upstream). There are several abandoned PRs updating to newer Brotli, so it looks like a new release will not be cut anytime soon.
The brotli crate provides a pure Rust implementation of Brotli compression and decompression. It is used in production by Dropbox and is not affected by the issue (and could not be affected because it's written in safe Rust). I suggest switching to the brotli crate as a mitigation.
Steps to Reproduce (for bugs)
cargo install cargo-audit
cd actix-web
cargo audit
The dependency tree leading to the affected brotli-sys crate is:
Expected Behavior
Actix and its dependencies should have no known vulnerabilities unpatched
Current Behavior
Actix is affected by CVE-2020-8927, buffer overflow in the Brotli C library, through
brotli-sys
crate.Possible Solution
There is no updated release of
brotli-sys
that fixes the issue (it has been reported upstream). There are several abandoned PRs updating to newer Brotli, so it looks like a new release will not be cut anytime soon.The
brotli
crate provides a pure Rust implementation of Brotli compression and decompression. It is used in production by Dropbox and is not affected by the issue (and could not be affected because it's written in safe Rust). I suggest switching to thebrotli
crate as a mitigation.Steps to Reproduce (for bugs)
cargo install cargo-audit
cd actix-web
cargo audit
The dependency tree leading to the affected
brotli-sys
crate is:rustc -V
):The text was updated successfully, but these errors were encountered: