Lucene search
K

20 matches found

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

EUVD-2021-1906

Malware in sbrugna...

5.9CVSS5.7AI score0.0028EPSS
Exploits1References7
RedhatCVE
RedhatCVE
added 2025/05/22 5:37 p.m.4 views

CVE-2020-36471

An issue was discovered in the generator crate before 0.7.0 for Rust. It does not ensure that a function for yielding values has Send bounds...

5.9CVSS6.8AI score0.0028EPSS
Exploits1
OSV
OSV
added 2022/06/17 12:30 a.m.15 views

GHSA-X4MQ-M75F-MX8M Delegate functions are missing `Send` bound

Affected versions of this crate did not require event handlers to have Send bound despite there being no guarantee of them being called on any particular thread, which can potentially lead to data races and undefined behavior. The flaw was corrected in commit afe3252 by adding Send bounds...

9.8CVSS7AI score
Exploits0References4
OSV
OSV
added 2021/08/25 8:58 p.m.0 views

GHSA-2R6Q-6C8C-G762 Data races in toolshed

An issue was discovered in the toolshed crate through 2020-11-15 for Rust. In CopyCell, the Send trait lacks bounds on the contained type...

8.1CVSS7.2AI score0.00477EPSS
Exploits1References4
OSV
OSV
added 2021/08/25 8:57 p.m.22 views

GHSA-W3G5-2848-2V8R Data races in generator

The Generator type is an iterable which uses a generator function that yields values. In affected versions of the crate, the provided function yielding values had no Send bounds despite the Generator itself implementing Send. The generator function lacking a Send bound means that types that are...

5.9CVSS5.4AI score0.0028EPSS
Exploits1References6
Github Security Blog
Github Security Blog
added 2021/08/25 8:57 p.m.21 views

Data races in generator

The Generator type is an iterable which uses a generator function that yields values. In affected versions of the crate, the provided function yielding values had no Send bounds despite the Generator itself implementing Send. The generator function lacking a Send bound means that types that are...

5.9CVSS5.6AI score0.0028EPSS
Exploits1References6Affected Software1
OSV
OSV
added 2021/08/25 8:55 p.m.3 views

GHSA-H6GG-FVF5-QGWF Data races in generator

The Generator type is an iterable which uses a generator function that yields values. In affected versions of the crate, the provided function yielding values had no Send bounds despite the Generator itself implementing Send. The generator function lacking a Send bound means that types that are...

6.9AI score
Exploits0References4
OSV
OSV
added 2021/08/25 8:48 p.m.10 views

GHSA-FHVJ-7F9P-W788 Multiple security issues including data race, buffer overflow, and uninitialized memory drop in arr

arr crate contains multiple security issues. Specifically, 1. It incorrectly implements Sync/Send bounds, which allows to smuggle non-Sync/Send types across the thread boundary. 2. Index and IndexMut implementation does not check the array bound. 3. Array::newfromtemplate drops uninitialized memo...

9.8CVSS6.7AI score0.00459EPSS
Exploits0References4
NVD
NVD
added 2021/08/08 6:15 a.m.11 views

CVE-2020-36471

An issue was discovered in the generator crate before 0.7.0 for Rust. It does not ensure that a function for yielding values has Send bounds...

5.9CVSS0.0028EPSS
Exploits1References2
OSV
OSV
added 2021/08/08 6:15 a.m.3 views

CVE-2020-36471

An issue was discovered in the generator crate before 0.7.0 for Rust. It does not ensure that a function for yielding values has Send bounds...

5.9CVSS5.6AI score
Exploits0References2
OSV
OSV
added 2021/08/08 6:15 a.m.2 views

DEBIAN-CVE-2020-36471

An issue was discovered in the generator crate before 0.7.0 for Rust. It does not ensure that a function for yielding values has Send bounds...

5.9CVSS5.9AI score0.0028EPSS
Exploits1References1
OSV
OSV
added 2021/08/08 6:15 a.m.3 views

CVE-2020-36456

An issue was discovered in the toolshed crate through 2020-11-15 for Rust. In CopyCell, the Send trait lacks bounds on the contained type...

8.1CVSS7.3AI score0.00477EPSS
Exploits1References2
OSV
OSV
added 2021/08/08 6:15 a.m.3 views

CVE-2020-36436

An issue was discovered in the unicycle crate before 0.7.1 for Rust. PinSlab and Unordered do not have bounds on their Send and Sync traits...

8.1CVSS5.8AI score0.00336EPSS
Exploits0References2
Prion
Prion
added 2021/08/08 6:15 a.m.11 views

Out-of-bounds

An issue was discovered in the generator crate before 0.7.0 for Rust. It does not ensure that a function for yielding values has Send bounds...

4.3CVSS5.6AI score0.0028EPSS
Exploits1References2Affected Software1
UbuntuCve
UbuntuCve
added 2021/08/08 6:15 a.m.20 views

CVE-2020-36471

An issue was discovered in the generator crate before 0.7.0 for Rust. It does not ensure that a function for yielding values has Send bounds...

5.9CVSS6.2AI score0.0028EPSS
Exploits1References3
OSV
OSV
added 2021/08/08 6:15 a.m.1 views

UBUNTU-CVE-2020-36471

An issue was discovered in the generator crate before 0.7.0 for Rust. It does not ensure that a function for yielding values has Send bounds...

5.9CVSS5.8AI score0.0028EPSS
Exploits1References4
CVE
CVE
added 2021/08/08 5:11 a.m.117 views

CVE-2020-36471

CVE-2020-36471 concerns the Rust generator crate prior to 0.7.0, where the yielding function does not enforce Send bounds on the value yielded, while the Generator type is Send. This mismatch allows potential data races when generators are used across threads with non-Send components (e.g., Rc) i...

5.9CVSS5.5AI score0.0028EPSS
Exploits1References2Affected Software1
OSV
OSV
added 2020/11/17 12:0 p.m.15 views

RUSTSEC-2020-0119 ReadTicket and WriteTicket should only be sendable when T is Send

Affected versions of this crate unconditionally implemented Send for ReadTicket & WriteTicket. This allows to send non-Send T to other threads. This can allows creating data races by cloning types with internal mutability and sending them to other threads as T of ReadTicket/WriteTicket. Such data...

8.1CVSS8.2AI score0.00336EPSS
Exploits0References3
RustSec
RustSec
added 2020/11/16 12:0 p.m.19 views

Generators can cause data races if non-Send types are used in their generator functions

The Generator type is an iterable which uses a generator function that yields values. In affected versions of the crate, the provided function yielding values had no Send bounds despite the Generator itself implementing Send. The generator function lacking a Send bound means that types that are...

5.9CVSS3AI score0.0028EPSS
Exploits1Affected Software1
OSV
OSV
added 2020/08/25 12:0 p.m.12 views

RUSTSEC-2020-0034 Multiple security issues including data race, buffer overflow, and uninitialized memory drop

arr crate contains multiple security issues. Specifically, 1. It incorrectly implements Sync/Send bounds, which allows to smuggle non-Sync/Send types across the thread boundary. 2. Index and IndexMut implementation does not check the array bound. 3. Array::newfromtemplate drops uninitialized memo...

9.8CVSS6.7AI score0.00459EPSS
Exploits0References3
Rows per page
Query Builder