Lucene search
+L

2489 matches found

Github Security Blog
Github Security Blog
added 2021/08/25 8:51 p.m.32 views

Data race in va-ts

In the affected versions of this crate, Demuxer unconditionally implemented Send with no trait bounds on T. This allows sending a non-Send type T across thread boundaries, which can cause undefined behavior like unlocking a mutex from a thread that didn't lock the mutex, or memory corruption from...

5.9CVSS5.9AI score0.00801EPSS
SaveExploits1References4Affected Software1
OSV
OSV
added 2021/08/25 8:51 p.m.15 views

GHSA-69VJ-XX27-G45W Data race in eventio

Input implements Send without requiring R: Send. Affected versions of this crate allows users to send non-Send types to other threads, which can lead to undefined behavior such as data race and memory corruption. The flaw was corrected in version 0.5.1 by adding R: Send bound to the Send impl of...

5.9CVSS5.5AI score0.01066EPSS
SaveExploits1References4
Github Security Blog
Github Security Blog
added 2021/08/25 8:51 p.m.24 views

Data race in eventio

Input implements Send without requiring R: Send. Affected versions of this crate allows users to send non-Send types to other threads, which can lead to undefined behavior such as data race and memory corruption. The flaw was corrected in version 0.5.1 by adding R: Send bound to the Send impl of...

5.9CVSS5.6AI score0.01066EPSS
SaveExploits1References4Affected Software1
OSV
OSV
added 2021/08/25 8:51 p.m.36 views

GHSA-PPHF-F93W-GC84 Data race in may_queue

An issue was discovered in the mayqueue crate through 2020-11-10 for Rust. Because Queue does not have bounds on its Send trait or Sync trait, memory corruption can occur...

5.9CVSS5.9AI score0.01112EPSS
SaveExploits1References4
Github Security Blog
Github Security Blog
added 2021/08/25 8:51 p.m.28 views

Data race in may_queue

An issue was discovered in the mayqueue crate through 2020-11-10 for Rust. Because Queue does not have bounds on its Send trait or Sync trait, memory corruption can occur...

5.9CVSS6.1AI score0.01112EPSS
SaveExploits1References4Affected Software1
OSV
OSV
added 2021/08/25 8:51 p.m.22 views

GHSA-R7RV-2RPH-HVHJ Improper synchronization in buttplug

An issue was discovered in the buttplug crate before 1.0.4 for Rust. ButtplugFutureStateShared does not properly consider !Send|!Sync objects, leading to a data race...

5.9CVSS5.5AI score0.01107EPSS
SaveExploits1References4
Github Security Blog
Github Security Blog
added 2021/08/25 8:51 p.m.36 views

Improper synchronization in buttplug

An issue was discovered in the buttplug crate before 1.0.4 for Rust. ButtplugFutureStateShared does not properly consider !Send|!Sync objects, leading to a data race...

5.9CVSS5.7AI score0.01107EPSS
SaveExploits1References4Affected Software1
OSV
OSV
added 2021/08/25 8:51 p.m.40 views

GHSA-8GF5-Q9P9-WVMC Data race in atomic-option

An issue was discovered in the atomic-option crate through 2020-10-31 for Rust. Because AtomicOption implements Sync unconditionally, a data race can occur...

5.9CVSS5.9AI score0.01107EPSS
SaveExploits1References4
Github Security Blog
Github Security Blog
added 2021/08/25 8:51 p.m.25 views

Data race in atomic-option

An issue was discovered in the atomic-option crate through 2020-10-31 for Rust. Because AtomicOption implements Sync unconditionally, a data race can occur...

5.9CVSS5.7AI score0.01107EPSS
SaveExploits1References4Affected Software1
Github Security Blog
Github Security Blog
added 2021/08/25 8:51 p.m.37 views

Data races in im

An issue was discovered in the im crate prior to 15.1.0 for Rust. Because TreeFocus does not have bounds on its Send trait or Sync trait, a data race can occur...

4.7CVSS5.2AI score0.00332EPSS
SaveExploits1References7Affected Software1
OSV
OSV
added 2021/08/25 8:50 p.m.31 views

GHSA-G489-XRW3-3V8W Data races in aovec

An issue was discovered in the aovec crate through 2020-12-10 for Rust. Because Aovec does not have bounds on its Send trait or Sync trait, a data race and memory corruption can occur...

7CVSS5.9AI score0.00285EPSS
SaveExploits0References3
Github Security Blog
Github Security Blog
added 2021/08/25 8:50 p.m.28 views

Data races in aovec

An issue was discovered in the aovec crate through 2020-12-10 for Rust. Because Aovec does not have bounds on its Send trait or Sync trait, a data race and memory corruption can occur...

7CVSS6.8AI score0.00285EPSS
SaveExploits0References3Affected Software1
OSV
OSV
added 2021/08/25 8:50 p.m.11 views

GHSA-WR55-MF5C-HHWM Data races in late-static

Affected versions of this crate implemented Sync for LateStatic with T: Send, so that it is possible to create a data race to a type T: Send + !Sync e.g. Cell. This can result in a memory corruption or other kinds of undefined behavior. The flaw was corrected in commit 11f396c by replacing the T:...

7CVSS6.9AI score0.00357EPSS
SaveExploits1References5
Github Security Blog
Github Security Blog
added 2021/08/25 8:50 p.m.30 views

Data races in try-mutex

Affected versions of this crate unconditionally implemented Sync trait for TryMutex type. This allows users to put non-Send T type in TryMutex and send it to another thread, which can cause a data race. The flaw was corrected in the 0.3.0 release by adding T: Send bound for the Sync trait...

5.5CVSS5.4AI score0.00377EPSS
SaveExploits1References4Affected Software1
Github Security Blog
Github Security Blog
added 2021/08/25 8:50 p.m.45 views

Data races in concread

An issue was discovered in the concread crate before 0.2.6 for Rust. Attackers can cause an ARCache data race by sending types that do not implement Send/Sync...

4.7CVSS5.2AI score0.00242EPSS
SaveExploits1References4Affected Software1
OSV
OSV
added 2021/08/25 8:50 p.m.102 views

GHSA-WV4P-JP67-JR97 Data races in magnetic

Affected versions of this crate unconditionally implemented Sync and Send traits for MPMCConsumer and MPMCProducer types. This allows users to send types that do not implement Send trait across thread boundaries, which can cause a data race. The flaw was corrected in the 2.0.1 release by adding T...

5.5CVSS5.2AI score0.00377EPSS
SaveExploits1References4
Github Security Blog
Github Security Blog
added 2021/08/25 8:50 p.m.33 views

Data races in magnetic

Affected versions of this crate unconditionally implemented Sync and Send traits for MPMCConsumer and MPMCProducer types. This allows users to send types that do not implement Send trait across thread boundaries, which can cause a data race. The flaw was corrected in the 2.0.1 release by adding T...

5.5CVSS5.4AI score0.00377EPSS
SaveExploits1References4Affected Software1
OSV
OSV
added 2021/08/25 8:50 p.m.12 views

GHSA-HJ9H-WRGG-HGMX Data races in lock_api

An issue was discovered in the lockapi crate before 0.4.2 for Rust. A data race can occur because of RwLockReadGuard unsoundness...

4.7CVSS4.6AI score0.00324EPSS
SaveExploits0References4
OSV
OSV
added 2021/08/25 8:50 p.m.16 views

GHSA-5WG8-7C9Q-794V Data races in lock_api

An issue was discovered in the lockapi crate before 0.4.2 for Rust. A data race can occur because of MappedRwLockWriteGuard unsoundness...

4.7CVSS4.6AI score0.00324EPSS
SaveExploits0References4
Github Security Blog
Github Security Blog
added 2021/08/25 8:49 p.m.31 views

Data races in lock_api

An issue was discovered in the lockapi crate before 0.4.2 for Rust. A data race can occur because of MappedRwLockReadGuard unsoundness...

4.7CVSS5.3AI score0.00207EPSS
SaveExploits0References4Affected Software1
Rows per page
Query Builder