Lucene search
+L

721 matches found

ATTACKERKB
ATTACKERKB
added 2021/03/05 9:15 a.m.4 views

CVE-2021-28028

An issue was discovered in the toodee crate before 0.3.0 for Rust. Row insertion can cause a double free upon an iterator panic...

9.8CVSS8.3AI score0.01167EPSS
SaveExploits0References2
Prion
Prion
added 2021/03/05 9:15 a.m.17 views

Double free

An issue was discovered in the toodee crate before 0.3.0 for Rust. Row insertion can cause a double free upon an iterator panic...

7.5CVSS9.4AI score0.01167EPSS
SaveExploits0References1Affected Software1
Cvelist
Cvelist
added 2021/03/05 8:40 a.m.30 views

CVE-2021-28028

An issue was discovered in the toodee crate before 0.3.0 for Rust. Row insertion can cause a double free upon an iterator panic...

9.7AI score0.01167EPSS
SaveExploits0References1
CVE
CVE
added 2021/03/05 8:40 a.m.67 views

CVE-2021-28028

The CVE-2021-28028 issue affects the Rust crate toodee prior to 0.3.0. The vulnerability arises during row insertion where an iterator panic can lead to a double free . Multiple connected sources (Red Hat CVE, OSVGHSA entries, CNVD, NVD, and CNVD) corroborate the description: a panic during itera...

9.8CVSS9.3AI score0.01167EPSS
SaveExploits0References1Affected Software1
CNNVD
CNNVD
added 2021/03/05 12:0 a.m.6 views

Rust 资源管理错误漏洞

Rust is a general-purpose, compiled programming language from the Mozilla Foundation. A security vulnerability exists in toodee crate before 0.3.0 for Rust, which stems from causing a double free when the iterator is panic.No details of the vulnerability are provided at this time...

9.8CVSS5.5AI score0.01167EPSS
SaveExploits0References1
OSV
OSV
added 2021/02/24 12:0 p.m.41 views

RUSTSEC-2021-0050 swap_index can write out of bounds and return uninitialized memory

swapindex takes an iterator and swaps the items with their corresponding indexes. It reserves capacity and sets the length of the vector based on the .len method of the iterator. If the len returned by the iterator is larger than the actual number of elements yielded, then swapindex creates a...

7.3CVSS7.2AI score0.009EPSS
SaveExploits2References3
RustSec
RustSec
added 2021/02/24 12:0 p.m.26 views

swap_index can write out of bounds and return uninitialized memory

swapindex takes an iterator and swaps the items with their corresponding indexes. It reserves capacity and sets the length of the vector based on the .len method of the iterator. If the len returned by the iterator is larger than the actual number of elements yielded, then swapindex creates a...

7.5CVSS3.8AI score0.009EPSS
SaveExploits1Affected Software1
RustSec
RustSec
added 2021/02/19 12:0 p.m.20 views

Multiple memory safety issues in insert_row

When inserting rows from an iterator at a particular index, toodee would shift items over, duplicating their ownership. The space reserved for the new elements was based on the len returned by the ExactSizeIterator. This could result in elements in the array being freed twice if the iterator...

9.8CVSS1.6AI score0.01167EPSS
SaveExploits0Affected Software1
OSV
OSV
added 2021/02/19 12:0 p.m.35 views

RUSTSEC-2021-0047 SliceDeque::drain_filter can double drop an element if the predicate panics

Affected versions of the crate incremented the current index of the drain filter iterator before calling the predicate function self.pred. If the predicate function panics, it is possible for the last element in the iterator to be dropped twice...

7.5CVSS7.4AI score0.01135EPSS
SaveExploits1References3
RustSec
RustSec
added 2021/02/19 12:0 p.m.30 views

StackVec::extend can write out of bounds when size_hint is incorrect

StackVec::extend used the lower and upper bounds from an Iterator's sizehint to determine how many items to push into the stack based vector. If the sizehint implementation returned a lower bound that was larger than the upper bound, StackVec would write out of bounds and overwrite memory on the...

7.5CVSS2.8AI score0.01025EPSS
SaveExploits1Affected Software1
OSV
OSV
added 2021/02/19 12:0 p.m.43 views

RUSTSEC-2021-0048 StackVec::extend can write out of bounds when size_hint is incorrect

StackVec::extend used the lower and upper bounds from an Iterator's sizehint to determine how many items to push into the stack based vector. If the sizehint implementation returned a lower bound that was larger than the upper bound, StackVec would write out of bounds and overwrite memory on the...

7.3CVSS7.2AI score0.01025EPSS
SaveExploits1References3
OSV
OSV
added 2021/02/19 12:0 p.m.23 views

RUSTSEC-2021-0028 Multiple memory safety issues in insert_row

When inserting rows from an iterator at a particular index, toodee would shift items over, duplicating their ownership. The space reserved for the new elements was based on the len returned by the ExactSizeIterator. This could result in elements in the array being freed twice if the iterator...

9.8CVSS8.5AI score0.01167EPSS
SaveExploits0References3
RustSec
RustSec
added 2021/02/18 12:0 p.m.148 views

move_elements can double-free objects on panic

Affected versions of scratchpad used ptr::read to read elements while calling a user provided function f on them. Since the pointer read duplicates ownership, a panic inside the user provided f function could cause a double free when unwinding. The flaw was fixed in commit 891561bea by removing t...

9.8CVSS3.2AI score0.01364EPSS
SaveExploits0Affected Software1
OSV
OSV
added 2021/02/18 12:0 p.m.47 views

RUSTSEC-2021-0030 move_elements can double-free objects on panic

Affected versions of scratchpad used ptr::read to read elements while calling a user provided function f on them. Since the pointer read duplicates ownership, a panic inside the user provided f function could cause a double free when unwinding. The flaw was fixed in commit 891561bea by removing t...

9.8CVSS9.2AI score0.01364EPSS
SaveExploits0References3
RustSec
RustSec
added 2021/01/26 12:0 p.m.25 views

insert_many can drop elements twice on panic

Affected versions of insertmany used ptr::copy to move over items in a vector to make space before inserting, duplicating their ownership. It then iterated over a provided Iterator to insert the new items. If the iterator's .next method panics then the vector would drop the same elements twice...

7.5CVSS4.2AI score0.01135EPSS
SaveExploits1
OSV
OSV
added 2021/01/26 12:0 p.m.39 views

RUSTSEC-2021-0042 insert_many can drop elements twice on panic

Affected versions of insertmany used ptr::copy to move over items in a vector to make space before inserting, duplicating their ownership. It then iterated over a provided Iterator to insert the new items. If the iterator's .next method panics then the vector would drop the same elements twice...

7.5CVSS7.3AI score0.01135EPSS
SaveExploits1References3
RustSec
RustSec
added 2021/01/08 12:0 p.m.20 views

Buffer overflow in SmallVec::insert_many

A bug in the SmallVec::insertmany method caused it to allocate a buffer that was smaller than needed. It then wrote past the end of the buffer, causing a buffer overflow and memory corruption on the heap. This bug was only triggered if the iterator passed to insertmany yielded more items than the...

9.8CVSS8.7AI score0.01666EPSS
SaveExploits1Affected Software1
Prion
Prion
added 2020/12/31 10:15 a.m.19 views

Design/Logic Flaw

An issue was discovered in the libpulse-binding crate before 2.5.0 for Rust. proplist::Iterator can cause a use-after-free...

4CVSS6.4AI score0.00988EPSS
SaveExploits1References1Affected Software1
OSV
OSV
added 2020/12/31 9:15 a.m.6 views

DEBIAN-CVE-2020-35904

An issue was discovered in the crossbeam-channel crate before 0.4.4 for Rust. It has incorrect expectations about the relationship between the memory allocation and how many iterator elements there are...

5.5CVSS5.7AI score0.00388EPSS
SaveExploits1References1
NVD
NVD
added 2020/12/31 9:15 a.m.45 views

CVE-2020-35904

An issue was discovered in the crossbeam-channel crate before 0.4.4 for Rust. It has incorrect expectations about the relationship between the memory allocation and how many iterator elements there are...

5.5CVSS5.4AI score0.00388EPSS
SaveExploits1References1
Rows per page
Query Builder