Security
Headlines
HeadlinesLatestCVEs

Headline

CVE-2022-0443: patch 8.2.4281: using freed memory with :lopen and :bwipe · vim/vim@9b4a80a

Use After Free in GitHub repository vim/vim prior to 8.2.

CVE
#git

@@ -1706,6 +1706,7 @@ set_curbuf(buf_T *buf, int action)

#endif

bufref_T newbufref;

bufref_T prevbufref;

int valid;

setpcmark();

if ((cmdmod.cmod_flags & CMOD_KEEPALT) == 0)

@@ -1763,13 +1764,19 @@ set_curbuf(buf_T *buf, int action)

// An autocommand may have deleted "buf", already entered it (e.g., when

// it did “:bunload”) or aborted the script processing.

// If curwin->w_buffer is null, enter_buffer() will make it valid again

if ((buf_valid(buf) && buf != curbuf

valid = buf_valid(buf);

if ((valid && buf != curbuf

#ifdef FEAT_EVAL

&& !aborting()

#endif

) || curwin->w_buffer == NULL)

{

enter_buffer(buf);

// If the buffer is not valid but curwin->w_buffer is NULL we must

// enter some buffer. Using the last one is hopefully OK.

if (!valid)

enter_buffer(lastbuf);

else

enter_buffer(buf);

#ifdef FEAT_SYN_HL

if (old_tw != curbuf->b_p_tw)

check_colorcolumn(curwin);

@@ -2288,8 +2295,7 @@ free_buf_options(

clear_string_option(&buf->b_p_vsts);

vim_free(buf->b_p_vsts_nopaste);

buf->b_p_vsts_nopaste = NULL;

vim_free(buf->b_p_vsts_array);

buf->b_p_vsts_array = NULL;

VIM_CLEAR(buf->b_p_vsts_array);

clear_string_option(&buf->b_p_vts);

VIM_CLEAR(buf->b_p_vts_array);

#endif

Related news

Ubuntu Security Notice USN-6026-1

Ubuntu Security Notice 6026-1 - It was discovered that Vim was incorrectly processing Vim buffers. An attacker could possibly use this issue to perform illegal memory access and expose sensitive information. This issue only affected Ubuntu 20.04 LTS. It was discovered that Vim was using freed memory when dealing with regular expressions inside a visual selection. If a user were tricked into opening a specially crafted file, an attacker could crash the application, leading to a denial of service, or possibly achieve code execution with user privileges. This issue only affected Ubuntu 14.04 ESM, Ubuntu 18.04 LTS and Ubuntu 20.04 LTS.

CVE-2023-28069: DSA-2022-258: Dell Streaming Data Platform Security Update for Multiple Third-Party Component Vulnerabilities

Dell Streaming Data Platform prior to 1.4 contains Open Redirect vulnerability. An attacker with privileges same as a legitimate user can phish the legitimate the user to redirect to malicious website leading to information disclosure and launch of phishing attacks.

Scanvus now supports Vulners and Vulns.io VM Linux vulnerability detection APIs

Hello everyone! Great news for my open source Scanvus project! You can now perform vulnerability checks on Linux hosts and docker images not only using the Vulners.com API, but also with the Vulns.io VM API. It’s especially nice that all the code to support the new API was written and contributed by colleagues from Vulns.io. […]

Gentoo Linux Security Advisory 202208-32

Gentoo Linux Security Advisory 202208-32 - Multiple vulnerabilities have been discovered in Vim, the worst of which could result in denial of service. Versions less than 9.0.0060 are affected.

Ubuntu Security Notice USN-5458-1

Ubuntu Security Notice 5458-1 - It was discovered that Vim was incorrectly handling virtual column position operations, which could result in an out-of-bounds read. An attacker could possibly use this issue to expose sensitive information. It was discovered that Vim was not properly performing bounds checks when updating windows present on a screen, which could result in a heap buffer overflow. An attacker could possibly use this issue to cause a denial of service or execute arbitrary code.

CVE: Latest News

CVE-2023-50976: Transactions API Authorization by oleiman · Pull Request #14969 · redpanda-data/redpanda
CVE-2023-6905
CVE-2023-6903
CVE-2023-6904
CVE-2023-3907