Lucene search
+L

684 matches found

OSV
OSV
added 2021/08/25 9:0 p.m.2 views

GHSA-7MG7-M5C3-3HQJ Data races in unicycle

Affected versions of this crate unconditionally implemented Send & Sync for types PinSlab & Unordered. This allows sending non-Send types to other threads and concurrently accessing non-Sync types from multiple threads. This can result in a data race & memory corruption when types that provide...

7.2AI score
SaveExploits0References5
Github Security Blog
Github Security Blog
added 2021/08/25 9:0 p.m.18 views

Data races in unicycle

Affected versions of this crate unconditionally implemented Send & Sync for types PinSlab & Unordered. This allows sending non-Send types to other threads and concurrently accessing non-Sync types from multiple threads. This can result in a data race & memory corruption when types that provide...

1.8AI score
SaveExploits0References5Affected Software1
OSV
OSV
added 2021/08/25 9:0 p.m.24 views

GHSA-PFJQ-935C-4895 Data races in v9

Affected versions of this crate unconditionally implement Sync for SyncRef. This definition allows data races if &T is accessible through &SyncRef. SyncRef derives Clone and Debug, and the default implementations of those traits access &T by invoking T::clone & T::fmt. It is possible to create da...

8.1CVSS8AI score0.01059EPSS
SaveExploits1References2
Github Security Blog
Github Security Blog
added 2021/08/25 9:0 p.m.20 views

Data races in v9

Affected versions of this crate unconditionally implement Sync for SyncRef. This definition allows data races if &T is accessible through &SyncRef. SyncRef derives Clone and Debug, and the default implementations of those traits access &T by invoking T::clone & T::fmt. It is possible to create da...

6.9AI score
SaveExploits0References3Affected Software1
OSV
OSV
added 2021/08/25 9:0 p.m.37 views

GHSA-GQ4H-F254-7CW9 Duplicate Advisory: Data races in ticketed_lock

Duplicate Advisory This advisory has been withdrawn because it is a duplicate of GHSA-77m6-x95j-75r5. This link is maintained to preserve external references. Original Description Affected versions of this crate unconditionally implemented Send for ReadTicket & WriteTicket. This allows to send...

8.1CVSS7.5AI score0.00766EPSS
SaveExploits0References3
Github Security Blog
Github Security Blog
added 2021/08/25 9:0 p.m.11 views

Duplicate Advisory: Data races in ticketed_lock

Duplicate Advisory This advisory has been withdrawn because it is a duplicate of GHSA-77m6-x95j-75r5. This link is maintained to preserve external references. Original Description Affected versions of this crate unconditionally implemented Send for ReadTicket & WriteTicket. This allows to send...

5.4AI score
SaveExploits0References4Affected Software1
OSV
OSV
added 2021/08/25 9:0 p.m.67 views

GHSA-M296-J53X-XV95 Data races in tiny_future

tinyfuture contains a light-weight implementation of Futures. The Future type it has lacked bound on its Send and Sync traits. This allows for a bug where non-thread safe types such as Cell can be used in Futures and cause data races in concurrent programs. The flaw was corrected in commit c79191...

8.1CVSS7.8AI score0.00766EPSS
SaveExploits0References5
Github Security Blog
Github Security Blog
added 2021/08/25 9:0 p.m.13 views

Data races in tiny_future

tinyfuture contains a light-weight implementation of Futures. The Future type it has lacked bound on its Send and Sync traits. This allows for a bug where non-thread safe types such as Cell can be used in Futures and cause data races in concurrent programs. The flaw was corrected in commit c79191...

6.7AI score
SaveExploits0References5Affected Software1
OSV
OSV
added 2021/08/25 9:0 p.m.19 views

GHSA-R88H-6987-G79F Duplicate Advisory: Data races on syncpool

Duplicate Advisory This advisory has been withdrawn because it is a duplicate of GHSA-vp6r-mrq9-8f4h. This link is maintained to preserve external references. Original Description Affected versions of this crate unconditionally implements Send for Bucket2. This allows sending non-Send types to...

8.1CVSS7.5AI score0.0124EPSS
SaveExploits1References5
Github Security Blog
Github Security Blog
added 2021/08/25 9:0 p.m.17 views

Duplicate Advisory: Data races on syncpool

Duplicate Advisory This advisory has been withdrawn because it is a duplicate of GHSA-vp6r-mrq9-8f4h. This link is maintained to preserve external references. Original Description Affected versions of this crate unconditionally implements Send for Bucket2. This allows sending non-Send types to...

5.5AI score
SaveExploits0References5Affected Software1
Github Security Blog
Github Security Blog
added 2021/08/25 9:0 p.m.23 views

Slock<T> allows sending non-Send types across thread boundaries

Slock unconditionally implements Send/Sync. Affected versions of this crate allows sending non-Send types to other threads, which can lead to data races and memory corruption due to the data race...

5AI score
SaveExploits0References3Affected Software1
Github Security Blog
Github Security Blog
added 2021/08/25 9:0 p.m.16 views

SyncChannel<T> can move 'T: !Send' to other threads

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...

6.8AI score
SaveExploits0References3Affected Software1
OSV
OSV
added 2021/08/25 9:0 p.m.4 views

GHSA-V42F-J8FX-99F3 Queue<T> should have a Send bound on its Send/Sync traits

Affected versions of this crate unconditionally implements Send/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...

7.3AI score
SaveExploits0References3
Github Security Blog
Github Security Blog
added 2021/08/25 9:0 p.m.21 views

Queue<T> should have a Send bound on its Send/Sync traits

Affected versions of this crate unconditionally implements Send/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...

3.8AI score
SaveExploits0References3Affected Software1
Github Security Blog
Github Security Blog
added 2021/08/25 9:0 p.m.18 views

Singleton lacks bounds on Send and Sync.

Singleton is meant to be a static object that can be initialized lazily. In order to satisfy the requirement that static items must implement Sync, Singleton implemented both Sync and Send unconditionally. This allows for a bug where non-Sync types such as Cell can be used in singletons and cause...

1.4AI score
SaveExploits0References3Affected Software1
OSV
OSV
added 2021/08/25 9:0 p.m.3 views

GHSA-JH2G-XHQQ-X4W9 Send/Sync bound needed on T for Send/Sync impl of RcuCell<T>

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...

7.3AI score
SaveExploits0References4
Github Security Blog
Github Security Blog
added 2021/08/25 9:0 p.m.11 views

Send/Sync bound needed on T for Send/Sync impl of RcuCell<T>

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...

3.6AI score
SaveExploits0References4Affected Software1
OSV
OSV
added 2021/08/25 9:0 p.m.2 views

GHSA-XWXC-J97J-84GF Race condition 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.1AI score0.00833EPSS
SaveExploits1References3
Github Security Blog
Github Security Blog
added 2021/08/25 9:0 p.m.11 views

Race condition 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...

6.8AI score
SaveExploits0References3Affected Software1
OSV
OSV
added 2021/08/25 8:59 p.m.4 views

GHSA-MGG8-9PVP-6QCW MvccRwLock allows data races & aliasing violations

Affected versions of the noisesearch crate unconditionally implement Send/Sync for MvccRwLock. This can lead to data races when types that are either !Send or !Sync e.g. Rc, Arc are contained inside MvccRwLock and sent across thread boundaries. The data races can potentially lead to memory...

7.3AI score
SaveExploits0References3
Rows per page
Query Builder