Lucene search
+L

977 matches found

OSV
OSV
added 2021/08/25 8:57 p.m.82 views

GHSA-9PP4-8P8V-G78W Data races in lever

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. 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.0124EPSS
SaveExploits1References6
Github Security Blog
Github Security Blog
added 2021/08/25 8:57 p.m.38 views

Data races in lever

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. 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.8AI score0.0124EPSS
SaveExploits1References6Affected Software1
Github Security Blog
Github Security Blog
added 2021/08/25 8:57 p.m.36 views

Data races in parc

In the affected versions of this crate, LockWeak unconditionally implemented Send with no trait bounds on T. LockWeak doesn't own T and only provides &T. This allows concurrent access to a non-Sync T, which can cause undefined behavior like data races...

8.1CVSS7.7AI score0.00833EPSS
SaveExploits1References5Affected Software1
OSV
OSV
added 2021/08/25 8:57 p.m.70 views

GHSA-GVVV-W559-2HG6 Data races in scottqueue

An issue was discovered in the scottqueue crate through 2020-11-15 for Rust. There are unconditional implementations of Send and Sync for Queue. This allows 1 creating data races to a T: !Sync and 2 sending T: !Send to other threads, resulting in memory corruption or other undefined behavior...

8.1CVSS8.2AI score0.01098EPSS
SaveExploits1References4
Github Security Blog
Github Security Blog
added 2021/08/25 8:57 p.m.33 views

Data races in scottqueue

An issue was discovered in the scottqueue crate through 2020-11-15 for Rust. There are unconditional implementations of Send and Sync for Queue. This allows 1 creating data races to a T: !Sync and 2 sending T: !Send to other threads, resulting in memory corruption or other undefined behavior...

8.1CVSS8AI score0.01098EPSS
SaveExploits1References4Affected Software1
Github Security Blog
Github Security Blog
added 2021/08/25 8:57 p.m.35 views

Data races in rcu_cell

Affected versions of this crate unconditionally implement Send/Sync for RcuCell. This allows users to send T: !Send to other threads while T enclosed within RcuCell, and allows users to concurrently access T: !Sync by using the APIs of RcuCell that provide access to &T. This can result in memory...

8.1CVSS7.9AI score0.01249EPSS
SaveExploits1References6Affected Software1
OSV
OSV
added 2021/08/25 8:57 p.m.14 views

GHSA-686H-J8R8-WMFM Data races in rcu_cell

Affected versions of this crate unconditionally implement Send/Sync for RcuCell. This allows users to send T: !Send to other threads while T enclosed within RcuCell, and allows users to concurrently access T: !Sync by using the APIs of RcuCell that provide access to &T. This can result in memory...

8.1CVSS8.2AI score0.01249EPSS
SaveExploits1References6
Github Security Blog
Github Security Blog
added 2021/08/25 8:57 p.m.43 views

Data races in cache

An issue was discovered in the cache crate through 2020-11-24 for Rust. Affected versions of this crate unconditionally implement Send/Sync for Cache. This allows users to insert K that is not Send or not Sync. This allows users to create data races by using non-Send types like Arc or Rc as K in...

8.1CVSS7.7AI score0.01098EPSS
SaveExploits1References4Affected Software1
OSV
OSV
added 2021/08/25 8:57 p.m.54 views

GHSA-G78P-G85H-Q6WW Data races in cache

An issue was discovered in the cache crate through 2020-11-24 for Rust. Affected versions of this crate unconditionally implement Send/Sync for Cache. This allows users to insert K that is not Send or not Sync. This allows users to create data races by using non-Send types like Arc or Rc as K in...

8.1CVSS7.9AI score0.01098EPSS
SaveExploits1References4
Github Security Blog
Github Security Blog
added 2021/08/25 8:57 p.m.28 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.01094EPSS
SaveExploits1References6Affected Software1
OSV
OSV
added 2021/08/25 8:57 p.m.58 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.01094EPSS
SaveExploits1References6
OSV
OSV
added 2021/08/25 8:57 p.m.86 views

GHSA-FVHR-7J8M-3CVC Data races in appendix

The appendix crate implements a key-value mapping data structure called Index that is stored on disk. The crate allows for any type to inhabit the generic K and V type parameters and implements Send and Sync for them unconditionally. Using a type that is not marked as Send or Sync with Index can...

5.9CVSS5.6AI score0.00978EPSS
SaveExploits1References4
Github Security Blog
Github Security Blog
added 2021/08/25 8:57 p.m.39 views

Data races in appendix

The appendix crate implements a key-value mapping data structure called Index that is stored on disk. The crate allows for any type to inhabit the generic K and V type parameters and implements Send and Sync for them unconditionally. Using a type that is not marked as Send or Sync with Index can...

5.9CVSS5.8AI score0.00978EPSS
SaveExploits1References4Affected Software1
OSV
OSV
added 2021/08/25 8:56 p.m.25 views

GHSA-PWHF-7427-9VV2 Non-atomic writes in cgc

Multiple soundness issues in Ptr in cgc Affected versions of this crate have the following issues: 1. Ptr implements Send and Sync for all types, this can lead to data races by sending non-thread safe types across threads. 2. Ptr::get violates mutable alias rules by returning multiple mutable...

5.9CVSS5.5AI score0.00978EPSS
SaveExploits3References5
Github Security Blog
Github Security Blog
added 2021/08/25 8:56 p.m.32 views

Non-atomic writes in cgc

Multiple soundness issues in Ptr in cgc Affected versions of this crate have the following issues: 1. Ptr implements Send and Sync for all types, this can lead to data races by sending non-thread safe types across threads. 2. Ptr::get violates mutable alias rules by returning multiple mutable...

5.9CVSS5.9AI score0.00978EPSS
SaveExploits1References5Affected Software1
OSV
OSV
added 2021/08/25 8:56 p.m.51 views

GHSA-F3MQ-99JR-WW4R Multiple soundness issues in cgc

Affected versions of this crate have the following issues: 1. Ptr implements Send and Sync for all types, this can lead to data races by sending non-thread safe types across threads. 2. Ptr::get violates mutable alias rules by returning multiple mutable references to the same object. 3. Ptr::writ...

5.9CVSS5.5AI score0.00978EPSS
SaveExploits3References5
Github Security Blog
Github Security Blog
added 2021/08/25 8:56 p.m.31 views

Multiple soundness issues in cgc

Affected versions of this crate have the following issues: 1. Ptr implements Send and Sync for all types, this can lead to data races by sending non-thread safe types across threads. 2. Ptr::get violates mutable alias rules by returning multiple mutable references to the same object. 3. Ptr::writ...

5.9CVSS5.8AI score0.00978EPSS
SaveExploits1References5Affected Software1
OSV
OSV
added 2021/08/25 8:56 p.m.21 views

GHSA-F9XR-3M55-5Q2V Data races in cgc

An issue was discovered in the cgc crate through 2020-12-10 for Rust. Ptr implements Send and Sync for all types...

5.9CVSS5.5AI score0.00978EPSS
SaveExploits3References4
Github Security Blog
Github Security Blog
added 2021/08/25 8:56 p.m.28 views

Data races in cgc

An issue was discovered in the cgc crate through 2020-12-10 for Rust. Ptr implements Send and Sync for all types...

5.9CVSS5.8AI score0.00978EPSS
SaveExploits1References4Affected Software1
Github Security Blog
Github Security Blog
added 2021/08/25 8:56 p.m.47 views

Data races in model

Shared data structure in model crate implements Send and Sync traits regardless of the inner type. This allows safe Rust code to trigger a data race, which is undefined behavior in Rust. Users are advised to treat Shared as an unsafe type. It should not be used outside of the testing context, and...

8.1CVSS7.8AI score0.01098EPSS
SaveExploits1References4Affected Software1
Rows per page
Query Builder