Lucene search
K

18 matches found

EUVD
EUVD
added 2025/10/07 12:30 a.m.1 views

EUVD-2021-1666

Malware in sbrugna...

8.1CVSS7.9AI score0.00477EPSS
Exploits1References8
EUVD
EUVD
added 2025/10/07 12:30 a.m.2 views

EUVD-2021-1855

Malware in sbrugna...

8.1CVSS7.9AI score0.00336EPSS
Exploits0References8
RedhatCVE
RedhatCVE
added 2025/05/22 3:33 p.m.3 views

CVE-2020-36457

An issue was discovered in the lever crate before 0.1.1 for Rust. AtomicBox implements the Send and Sync traits for all types T...

8.1CVSS6.9AI score0.00477EPSS
Exploits1
RedhatCVE
RedhatCVE
added 2025/05/22 3:33 p.m.6 views

CVE-2020-36441

An issue was discovered in the abox crate before 0.4.1 for Rust. It implements Send and Sync for AtomicBox with no requirement for T: Send and T: Sync...

8.1CVSS6.9AI score0.00336EPSS
Exploits0
OSV
OSV
added 2021/08/25 8:59 p.m.13 views

GHSA-R626-FC64-3Q28 Data race in abox

Affected versions of this crate implements Send/Sync for AtomicBox without requiring T: Send/T: Sync. This allows to create data races to T: !Sync and send T: !Send to another thread. Such behavior breaks the compile-time thread safety guarantees of Rust, and allows users to incur undefined...

8.1CVSS8.3AI score0.00336EPSS
Exploits0References7
Github Security Blog
Github Security Blog
added 2021/08/25 8:59 p.m.31 views

Data race in abox

Affected versions of this crate implements Send/Sync for AtomicBox without requiring T: Send/T: Sync. This allows to create data races to T: !Sync and send T: !Send to another thread. Such behavior breaks the compile-time thread safety guarantees of Rust, and allows users to incur undefined...

8.1CVSS8.1AI score0.00336EPSS
Exploits0References7Affected Software1
NVD
NVD
added 2021/08/08 6:15 a.m.14 views

CVE-2020-36457

An issue was discovered in the lever crate before 0.1.1 for Rust. AtomicBox implements the Send and Sync traits for all types T...

8.1CVSS0.00477EPSS
Exploits1References2
NVD
NVD
added 2021/08/08 6:15 a.m.13 views

CVE-2020-36441

An issue was discovered in the abox crate before 0.4.1 for Rust. It implements Send and Sync for AtomicBox with no requirement for T: Send and T: Sync...

8.1CVSS0.00336EPSS
Exploits0References2
OSV
OSV
added 2021/08/08 6:15 a.m.2 views

CVE-2020-36441

An issue was discovered in the abox crate before 0.4.1 for Rust. It implements Send and Sync for AtomicBox with no requirement for T: Send and T: Sync...

8.1CVSS7.3AI score
Exploits0References2
Prion
Prion
added 2021/08/08 6:15 a.m.11 views

Design/Logic Flaw

An issue was discovered in the lever crate before 0.1.1 for Rust. AtomicBox implements the Send and Sync traits for all types T...

6.8CVSS8AI score0.00477EPSS
Exploits1References2Affected Software1
Prion
Prion
added 2021/08/08 6:15 a.m.16 views

Code injection

An issue was discovered in the abox crate before 0.4.1 for Rust. It implements Send and Sync for AtomicBox with no requirement for T: Send and T: Sync...

6.8CVSS8AI score0.00336EPSS
Exploits0References2Affected Software1
Cvelist
Cvelist
added 2021/08/08 5:17 a.m.14 views

CVE-2020-36441

An issue was discovered in the abox crate before 0.4.1 for Rust. It implements Send and Sync for AtomicBox with no requirement for T: Send and T: Sync...

8.1AI score0.00336EPSS
Exploits0References2
Cvelist
Cvelist
added 2021/08/08 5:14 a.m.9 views

CVE-2020-36457

An issue was discovered in the lever crate before 0.1.1 for Rust. AtomicBox implements the Send and Sync traits for all types T...

8.1AI score0.00477EPSS
Exploits1References2
CVE
CVE
added 2021/08/08 5:14 a.m.102 views

CVE-2020-36457

CVE-2020-36457 affects the lever crate for Rust, specifically versions before 0.1.1. The root cause is that an internal type, AtomicBox, implements Send and Sync for all types T, which enables non-Send types (e.g., Rc) and non-Sync types (e.g., Cell) to be used across thread boundaries. This can ...

8.1CVSS7.9AI score0.00477EPSS
Exploits1References2Affected Software1
OSV
OSV
added 2020/11/10 12:0 p.m.12 views

RUSTSEC-2020-0137 AtomicBox<T> lacks bound on its Send and Sync traits allowing data races

AtomicBox is a Box type designed to be used across threads, however, it implements the Send and Sync traits for all types T. This allows non-Send types such as Rc and non-Sync types such as Cell to be used across thread boundaries which can trigger undefined behavior and memory corruption...

8.1CVSS7.9AI score0.00477EPSS
Exploits1References3
RustSec
RustSec
added 2020/11/10 12:0 p.m.19 views

AtomicBox<T> lacks bound on its Send and Sync traits allowing data races

AtomicBox is a Box type designed to be used across threads, however, it implements the Send and Sync traits for all types T. This allows non-Send types such as Rc and non-Sync types such as Cell to be used across thread boundaries which can trigger undefined behavior and memory corruption...

8.1CVSS2.1AI score0.00477EPSS
Exploits1Affected Software1
OSV
OSV
added 2020/11/10 12:0 p.m.14 views

RUSTSEC-2020-0121 AtomicBox<T> implements Send/Sync for any `T: Sized`

Affected versions of this crate implements Send/Sync for AtomicBox without requiring T: Send/T: Sync. This allows to create data races to T: !Sync and send T: !Send to another thread. Such behavior breaks the compile-time thread safety guarantees of Rust, and allows users to incur undefined...

8.1CVSS8.3AI score0.00336EPSS
Exploits0References3
RustSec
RustSec
added 2020/11/10 12:0 p.m.25 views

AtomicBox<T> implements Send/Sync for any `T: Sized`

Affected versions of this crate implements Send/Sync for AtomicBox without requiring T: Send/T: Sync. This allows to create data races to T: !Sync and send T: !Send to another thread. Such behavior breaks the compile-time thread safety guarantees of Rust, and allows users to incur undefined...

8.1CVSS3AI score0.00336EPSS
Exploits0Affected Software1
Rows per page
Query Builder