Lucene search
+L

243 matches found

OSV
OSV
added 2021/12/27 12:15 a.m.7 views

CVE-2018-25026

An issue was discovered in the actix-web crate before 0.7.15 for Rust. It can add the Send marker trait to an object that cannot be sent between threads safely, leading to memory corruption...

9.8CVSS5.8AI score0.01324EPSS
Exploits0References2
Prion
Prion
added 2021/12/27 12:15 a.m.15 views

Memory corruption

An issue was discovered in the actix-web crate before 0.7.15 for Rust. It can add the Send marker trait to an object that cannot be sent between threads safely, leading to memory corruption...

7.5CVSS9.3AI score0.01324EPSS
Exploits0References2Affected Software1
OSV
OSV
added 2021/12/27 12:15 a.m.3 views

UBUNTU-CVE-2018-25026

An issue was discovered in the actix-web crate before 0.7.15 for Rust. It can add the Send marker trait to an object that cannot be sent between threads safely, leading to memory corruption...

9.8CVSS7.3AI score0.01324EPSS
Exploits0References4
CNNVD
CNNVD
added 2021/12/27 12:0 a.m.9 views

Rust acc_reader crate 安全漏洞

Rust accreader crate is a structure that provides an AccReader that wraps an arbitrary instance of std::io::Read and provides an implementation of std::io::Seek for it. memory location. No details of the vulnerability are currently available...

9.8CVSS5.7AI score0.01191EPSS
Exploits0References3
Cvelist
Cvelist
added 2021/12/26 9:50 p.m.24 views

CVE-2021-45695

An issue was discovered in the mopa crate through 2021-06-01 for Rust. It incorrectly relies on Trait memory layout, possibly leading to future occurrences of arbitrary code execution or ASLR bypass...

10AI score0.01646EPSS
Exploits0References2
CVE
CVE
added 2021/12/26 9:48 p.m.76 views

CVE-2021-45704

CVE-2021-45704 affects the Rust metrics-util crate prior to 0.7.0. The issue is a data race and potential memory corruption caused by AtomicBucket unconditionally implementing Send/Sync, which allows concurrent access to inner data that may not be Sync. Public advisories (Red Hat, OSV, GitHub, CN...

8.1CVSS8.1AI score0.00741EPSS
Exploits0References2Affected Software1
Veracode
Veracode
added 2021/10/11 5:4 a.m.34 views

Remote Code Execution (RCE)

rustc:sid is vulnerable to remote code execution. The Zip implementation calls iteratorgetunchecked for the same index more than once when nested. This bug can lead to a memory safety violation due to an unmet safety requirement for the TrustedRandomAccess trait...

7.5CVSS2.9AI score0.01387EPSS
Exploits0References3Affected Software1
Veracode
Veracode
added 2021/10/11 5:4 a.m.37 views

Business Logic Flaws

rustc has a business logic flaw. The vulnerability exists due to the iteratorgetunchecked more than once for the same index when the underlying iterator panics in certain conditions. This bug could lead to a memory safety violation due to an unmet safety requirement for the TrustedRandomAccess...

7.5CVSS2.5AI score0.01997EPSS
Exploits1References10Affected Software1
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
Exploits0References5Affected 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
Exploits0References5
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
Exploits0References3Affected 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
Exploits0References3Affected Software1
OSV
OSV
added 2021/08/25 9:0 p.m.3 views

GHSA-VJ88-5667-W56P 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...

6.9AI score
Exploits0References3
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
Exploits0References3Affected 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
Exploits1References3
Github Security Blog
Github Security Blog
added 2021/08/25 8:59 p.m.38 views

Data races in beef

An issue was discovered in the beef crate before 0.5.0 for Rust. Affected versions of this crate did not have a T: Sync bound in the Send impl for Cow. This allows users to create data races by making Cow contain types that are Send && !Sync like Cell or RefCell. Such data races can lead to memor...

8.1CVSS7.7AI score0.00766EPSS
Exploits0References5Affected Software1
OSV
OSV
added 2021/08/25 8:58 p.m.20 views

GHSA-FG42-VWXX-XX5J Data race 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
Exploits0References6
Github Security Blog
Github Security Blog
added 2021/08/25 8:58 p.m.37 views

Data race 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.7AI score0.00766EPSS
Exploits0References6Affected Software1
OSV
OSV
added 2021/08/25 8:58 p.m.54 views

GHSA-FQQ2-XP7M-XVM8 Data race in ruspiro-singleton

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

8.1CVSS7.8AI score0.00766EPSS
Exploits0References7
Github Security Blog
Github Security Blog
added 2021/08/25 8:58 p.m.25 views

Data race in ruspiro-singleton

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

8.1CVSS7.6AI score0.00766EPSS
Exploits0References7Affected Software1
Rows per page
Query Builder