Lucene search
+L

9519 matches found

OSV
OSV
added 2021/01/07 12:00 p.m.29 views

RUSTSEC-2021-0090 Reading on uninitialized memory may cause UB ( `util::read_spv()` )

Affected versions of this crate passes an uninitialized buffer to a user-provided Read implementation. Arbitrary Read implementations can read from the uninitialized buffer memory exposure and also can return incorrect number of bytes written to the buffer. Reading from uninitialized memory...

9.8CVSS9.4AI score0.01345EPSS
SaveExploits0References3
OSV
OSV
added 2021/01/06 9:15 p.m.27 views

CVE-2020-8265

Node.js versions before 10.23.1, 12.20.1, 14.15.4, 15.5.1 are vulnerable to a use-after-free bug in its TLS implementation. When writing to a TLS enabled socket, node::StreamBase::Write calls node::TLSWrap::DoWrite with a freshly allocated WriteWrap object as first argument. If the DoWrite method...

8.1CVSS7AI score
SaveExploits0References9
Prion
Prion
added 2021/01/06 9:15 p.m.32 views

Design/Logic Flaw

Node.js versions before 10.23.1, 12.20.1, 14.15.4, 15.5.1 are vulnerable to a use-after-free bug in its TLS implementation. When writing to a TLS enabled socket, node::StreamBase::Write calls node::TLSWrap::DoWrite with a freshly allocated WriteWrap object as first argument. If the DoWrite method...

6.8CVSS7.7AI score0.09009EPSS
SaveExploits1References9Affected Software5
AlpineLinux
AlpineLinux
added 2021/01/06 9:01 p.m.68 views

CVE-2020-8265

Node.js versions before 10.23.1, 12.20.1, 14.15.4, 15.5.1 are vulnerable to a use-after-free bug in its TLS implementation. When writing to a TLS enabled socket, node::StreamBase::Write calls node::TLSWrap::DoWrite with a freshly allocated WriteWrap object as first argument. If the DoWrite method...

8.1CVSS8.3AI score0.09009EPSS
SaveExploits1
CNVD
CNVD
added 2021/01/06 12:00 a.m.13 views

Rust atom crate competitive condition issue vulnerability

Rust is a general-purpose, compiled programming language from the Mozilla Foundation. A security vulnerability exists in Rust atom crate, which stems from an insecure Send implementation that allows data contention across threads. No details of the vulnerability are provided at this time...

4.7CVSS6.8AI score0.00196EPSS
SaveExploits0References1
CNVD
CNVD
added 2021/01/06 12:00 a.m.43 views

QEMU Denial of Service Vulnerability (CNVD-2021-03259)

QEMU Quick Emulator is a set of simulation processor software by Fabrice Bellard, a French individual developer. The software is fast and cross-platform. QEMU 4.1.0 suffers from a security vulnerability that stems from an out-of-bounds read flaw found in the ATI VGA implementation. It occurs in t...

6.5CVSS6.4AI score0.0033EPSS
SaveExploits0References1
Tenable Nessus
Tenable Nessus
added 2021/01/06 12:00 a.m.68 views

Ubuntu 18.04 LTS / 20.04 LTS : Linux kernel vulnerabilities (USN-4679-1)

The remote Ubuntu 18.04 LTS / 20.04 LTS host has a package installed that is affected by multiple vulnerabilities as referenced in the USN-4679-1 advisory. It was discovered that the console keyboard driver in the Linux kernel contained a race condition. A local attacker could use this to expose...

7.2CVSS6.8AI score0.01026EPSS
SaveExploits4References7
RedhatCVE
RedhatCVE
added 2021/01/05 2:33 p.m.57 views

CVE-2020-28052

A flaw was found in bouncycastle. The OpenBSDBCrypt.checkPassword utility method compared incorrect data when checking the password allowing incorrect passwords to indicate they were matching with previously hashed ones that were different. The highest threat from this vulnerability is to data...

8.1CVSS2.4AI score0.0714EPSS
SaveExploits1References3
zdt
zdt
added 2021/01/05 12:00 a.m.33 views

Node.js TLSWrap Use-After-Free Vulnerability

Node.js: use-after-free in TLSWrap Node v14.11.0 Current is vulnerable to a use-after-free bug in its TLS implementation. When writing to a TLS enabled socket, node::StreamBase::Write calls node::TLSWrap::DoWrite with a freshly allocated WriteWrap object as first argument. If the DoWrite method...

SaveExploits0
Packet Storm
Packet Storm
added 2021/01/05 12:00 a.m.287 views

Node.js TLSWrap Use-After-Free

Node.js: use-after-free in TLSWrap Node v14.11.0 Current is vulnerable to a use-after-free bug in its TLS implementation. When writing to a TLS enabled socket, node::StreamBase::Write calls node::TLSWrap::DoWrite with a freshly allocated WriteWrap object as first argument. If the DoWrite method...

7.4AI score
SaveExploits0
OSV
OSV
added 2021/01/04 12:00 p.m.44 views

RUSTSEC-2021-0039 panic in user-provided `Endian` impl triggers double drop of T

Affected versions of the crate does not guard against panic from user-provided impl of Endian trait, which is a safe trait that users can implement. If a user-provided implementation of the Endian trait panics, double-drop is triggered due to the duplicated ownership of T created by ptr::read...

7.5CVSS7.6AI score0.01135EPSS
SaveExploits1References3
OSV
OSV
added 2021/01/03 12:00 p.m.32 views

RUSTSEC-2021-0085 'Read' on uninitialized memory may cause UB

Affected versions of this crate passes an uninitialized buffer to a user-provided Read implementation. The crate currently contains 4 occurrences of such cases. Arbitrary Read implementations can read from the uninitialized buffer memory exposure and also can return incorrect number of bytes...

9.8CVSS9.4AI score0.01191EPSS
SaveExploits0References3
OSV
OSV
added 2021/01/02 12:00 p.m.41 views

RUSTSEC-2021-0012 Reading uninitialized memory can cause UB (`Deserializer::read_vec`)

Deserializer::readvec created an uninitialized buffer and passes it to a user-provided Read implementation Deserializer.reader.readexact. Passing an uninitialized buffer to an arbitrary Read implementation is currently defined as undefined behavior in Rust. Official documentation for the Read tra...

9.8CVSS9.4AI score0.01688EPSS
SaveExploits1References3
RustSec
RustSec
added 2021/01/02 12:00 p.m.22 views

reading on uninitialized buffer can cause UB (`impl<R> BufRead for GreedyAccessReader<R>`)

Affected versions of this crate creates an uninitialized buffer and passes it to user-provided Read implementation. This is unsound, because it allows safe Rust code to exhibit an undefined behavior read from uninitialized memory. The flaw was corrected in version 0.1.1 by zero-initializing a new...

9.1CVSS3.4AI score0.01642EPSS
SaveExploits1Affected Software1
OSV
OSV
added 2020/12/31 12:00 p.m.25 views

RUSTSEC-2020-0153 `read` on uninitialized buffer may cause UB (bite::read::BiteReadExpandedExt::read_framed_max)

Affected versions of this crate calls a user provided Read implementation on an uninitialized buffer. Read on uninitialized buffer is defined as undefined behavior in Rust...

7.5CVSS7.5AI score0.01059EPSS
SaveExploits0References3
RustSec
RustSec
added 2020/12/31 12:00 p.m.18 views

`read` on uninitialized buffer may cause UB (bite::read::BiteReadExpandedExt::read_framed_max)

Affected versions of this crate calls a user provided Read implementation on an uninitialized buffer. Read on uninitialized buffer is defined as undefined behavior in Rust...

7.5CVSS3.5AI score0.01059EPSS
SaveExploits0
OSV
OSV
added 2020/12/31 10:15 a.m.8 views

CVE-2020-35897

An issue was discovered in the atom crate before 0.3.6 for Rust. An unsafe Send implementation allows a cross-thread data race...

4.7CVSS5.8AI score0.00196EPSS
SaveExploits0References1
OSV
OSV
added 2020/12/31 9:15 a.m.12 views

CVE-2020-35899

An issue was discovered in the actix-service crate before 1.0.6 for Rust. The Cell implementation allows obtaining more than one mutable reference to the same data...

5.5CVSS6.1AI score0.00374EPSS
SaveExploits1References1
NVD
NVD
added 2020/12/31 9:15 a.m.36 views

CVE-2020-35899

An issue was discovered in the actix-service crate before 1.0.6 for Rust. The Cell implementation allows obtaining more than one mutable reference to the same data...

5.5CVSS5.5AI score0.00374EPSS
SaveExploits1References1
Prion
Prion
added 2020/12/31 9:15 a.m.25 views

Code injection

An issue was discovered in the actix-utils crate before 2.0.0 for Rust. The Cell implementation allows obtaining more than one mutable reference to the same data...

6.4CVSS9.1AI score0.0141EPSS
SaveExploits1References1Affected Software1
Rows per page
Query Builder