{ "schema_version": "1.4.0", "id": "GHSA-8892-84wf-cg8f", "modified": "2023-06-13T21:01:55Z", "published": "2021-08-25T21:00:16Z", "aliases": [], "summary": "SyncChannel can move 'T: !Send' to other threads", "details": "Affected versions of this crate unconditionally implement Send/Sync for `SyncChannel`. `SyncChannel` doesn't provide access to `&T` but merely serves as a channel that consumes and returns owned `T`. Users can create UB in safe Rust by sending `T: !Send` to other threads with `SyncChannel::send/recv` APIs. Using `T = Arc` allows to create data races (which can lead to memory corruption), and using `T = MutexGuard` allows to unlock a mutex from a thread that didn't lock the mutex.\n", "severity": [ { "type": "CVSS_V3", "score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], "affected": [ { "package": { "ecosystem": "crates.io", "name": "signal-simple" }, "ranges": [ { "type": "ECOSYSTEM", "events": [ { "introduced": "0" }, { "last_affected": "0.1.1" } ] } ] } ], "references": [ { "type": "WEB", "url": "https://github.com/kitsuneninetails/signal-rust/issues/2" }, { "type": "WEB", "url": "https://github.com/kitsuneninetails/signal-rust" }, { "type": "WEB", "url": "https://rustsec.org/advisories/RUSTSEC-2020-0126.html" } ], "database_specific": { "cwe_ids": [ "CWE-362" ], "severity": "HIGH", "github_reviewed": true, "github_reviewed_at": "2021-08-06T18:04:55Z", "nvd_published_at": null } }