Lucene search
K

9526 matches found

OSV
OSV
added 2021/08/25 8:59 p.m.0 views

GHSA-8Q64-WRFR-Q48C 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...

5.9AI score
Exploits0References3
Github Security Blog
Github Security Blog
added 2021/08/25 8:59 p.m.26 views

Use of Uninitialized Resource in alg_ds

An issue was discovered in the algds crate through 2020-08-25 for Rust. Matrix::new internally calls Matrix::fillwith which uses ptr = value pattern to initialize the buffer. This pattern assumes that there is an initialized struct at the address and drops it, which results in dropping of...

9.8CVSS8.9AI score0.0123EPSS
Exploits0References4Affected Software1
OSV
OSV
added 2021/08/25 8:59 p.m.14 views

GHSA-3VV3-FRRQ-6486 Use of Uninitialized Resource in alg_ds

An issue was discovered in the algds crate through 2020-08-25 for Rust. Matrix::new internally calls Matrix::fillwith which uses ptr = value pattern to initialize the buffer. This pattern assumes that there is an initialized struct at the address and drops it, which results in dropping of...

9.8CVSS9.4AI score0.0123EPSS
Exploits0References4
Github Security Blog
Github Security Blog
added 2021/08/25 8:59 p.m.38 views

Data races in bunch

An issue was discovered in the bunch crate through 2020-11-12 for Rust. Affected versions of this crate unconditionally implements Send/Sync for Bunch. This allows users to insert T: !Sync to Bunch. It is possible to create a data race to a T: !Sync by invoking the Bunch::get API which returns &T...

8.1CVSS7.7AI score0.01249EPSS
Exploits1References5Affected Software1
Github Security Blog
Github Security Blog
added 2021/08/25 8:59 p.m.29 views

Data races in signal-simple

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

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

GHSA-36CG-4JFF-5863 Data races in signal-simple

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

8.1CVSS5.9AI score0.00766EPSS
Exploits0References5
Github Security Blog
Github Security Blog
added 2021/08/25 8:59 p.m.31 views

Data races in async-coap

An issue was discovered in the async-coap crate through 2020-12-08 for Rust. Affected versions of this crate implement Send/Sync for ArcGuard with no trait bounds on RC. This allows users to send RC: !Send to other threads and also allows users to concurrently access Rc: !Sync from multiple...

8.1CVSS8AI score0.00766EPSS
Exploits0References5Affected Software1
Github Security Blog
Github Security Blog
added 2021/08/25 8:59 p.m.35 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:59 p.m.17 views

GHSA-M7W4-8WP8-M2XQ 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.9AI score0.00766EPSS
Exploits0References5
Github Security Blog
Github Security Blog
added 2021/08/25 8:59 p.m.33 views

Data race in abox

Affected versions of this crate implements Send/Sync for AtomicBox without requiring T: Send/T: Sync. This allows to create data races to T: !Sync and send T: !Send to another thread. Such behavior breaks the compile-time thread safety guarantees of Rust, and allows users to incur undefined...

8.1CVSS8.1AI score0.00766EPSS
Exploits0References7Affected Software1
OSV
OSV
added 2021/08/25 8:59 p.m.16 views

GHSA-R626-FC64-3Q28 Data race in abox

Affected versions of this crate implements Send/Sync for AtomicBox without requiring T: Send/T: Sync. This allows to create data races to T: !Sync and send T: !Send to another thread. Such behavior breaks the compile-time thread safety guarantees of Rust, and allows users to incur undefined...

8.1CVSS8.3AI score0.00766EPSS
Exploits0References7
Github Security Blog
Github Security Blog
added 2021/08/25 8:59 p.m.26 views

Use of Uninitialized Resource in libp2p-deflate

An issue was discovered in the libp2p-deflate crate before 0.27.1 for Rust. An uninitialized buffer is passed to AsyncRead::pollread, which is a user-provided trait function...

9.8CVSS9AI score0.0123EPSS
Exploits0References3Affected Software1
OSV
OSV
added 2021/08/25 8:59 p.m.15 views

GHSA-GVCP-948F-8F2P Use of Uninitialized Resource in libp2p-deflate

An issue was discovered in the libp2p-deflate crate before 0.27.1 for Rust. An uninitialized buffer is passed to AsyncRead::pollread, which is a user-provided trait function...

9.8CVSS9.4AI score0.0123EPSS
Exploits0References3
Github Security Blog
Github Security Blog
added 2021/08/25 8:58 p.m.28 views

Data race in conqueue

Affected versions of this crate unconditionally implemented Send/Sync for QueueSender, allowing to send non-Send T to other threads by invoking &QueueSender.send. This fails to prevent users from creating data races by sending types like Rc or Arc to other threads, which can lead to memory...

8.1CVSS7.8AI score0.00847EPSS
Exploits0References5Affected Software1
Github Security Blog
Github Security Blog
added 2021/08/25 8:58 p.m.31 views

Format string vulnerabilities in pancurses

An issue was discovered in the pancurses crate through 0.16.1 for Rust. printw and mvprintw have format string vulnerabilities...

7.5CVSS2.8AI score0.01148EPSS
Exploits0References5Affected Software1
OSV
OSV
added 2021/08/25 8:58 p.m.1 views

GHSA-M57C-4VVX-GJGQ Format string vulnerabilities in pancurses

An issue was discovered in the pancurses crate through 0.16.1 for Rust. printw and mvprintw have format string vulnerabilities...

7.5CVSS5.9AI score0.01148EPSS
Exploits0References5
Github Security Blog
Github Security Blog
added 2021/08/25 8:58 p.m.23 views

Uninitialized memory use in generator

An issue was discovered in the generator crate before 0.6.18 for Rust. Uninitialized memory is used by Scope, done, and yield during API calls...

7.8CVSS1.9AI score0.01635EPSS
Exploits0References7Affected Software1
OSV
OSV
added 2021/08/25 8:58 p.m.14 views

GHSA-6C65-XCF5-299X Uninitialized memory use in generator

An issue was discovered in the generator crate before 0.6.18 for Rust. Uninitialized memory is used by Scope, done, and yield during API calls...

7.5CVSS7.5AI score0.01635EPSS
Exploits0References7
vulnersOsv
vulnersOsv
added 2021/08/25 8:58 p.m.3 views

async_docker (>=0.1.0 <=0.1.1), cargo (>=0.4.0 <=0.8.0) +11 more potentially affected by CVE-2021-38511 via tar (>=0.2.14 <=0.3.4)

tar CARGO version =0.2.14, =0.1.0, =0.4.0, =0.3.1, =0.1.0, =0.3.0, =0.2.0, =0.2.0, =0.2.1, =0.0.1, =0.0.9 - wormhole =0.1.0 Source cves: CVE-2021-38511 Source advisory: OSV:GHSA-62JX-8VMH-4MCW...

7.5CVSS7.1AI score0.01392EPSS
Exploits1
vulnersOsv
vulnersOsv
added 2021/08/25 8:58 p.m.1 views

NeteaseCloudMusicRustApi (=0.1.1), RustMusic (=0.1.0) +313 more potentially affected by CVE-2021-38512 via actix-http (>=0.1.5 <=1.0.1)

actix-http CARGO version =0.1.5, =0.1.0, =0.8.0, =0.1.8, =0.1.0, =0.1.0, =0.1.0, =0.1.0, =0.1.0, =0.1.0, =0.1.0, =0.2.0 and more Source cves: CVE-2021-38512 Source advisory: OSV:GHSA-8928-2FGM-6X9X...

7.5CVSS7.1AI score0.0181EPSS
Exploits1
Rows per page
Query Builder