First published: Thu Aug 22 2024(Updated: )
Vim is an open source command line text editor. When performing a search and displaying the search-count message is disabled (:set shm+=S), the search pattern is displayed at the bottom of the screen in a buffer (msgbuf). When right-left mode (:set rl) is enabled, the search pattern is reversed. This happens by allocating a new buffer. If the search pattern contains some ASCII NUL characters, the buffer allocated will be smaller than the original allocated buffer (because for allocating the reversed buffer, the strlen() function is called, which only counts until it notices an ASCII NUL byte ) and thus the original length indicator is wrong. This causes an overflow when accessing characters inside the msgbuf by the previously (now wrong) length of the msgbuf. The issue has been fixed as of Vim patch v9.1.0689.
Credit: security-advisories@github.com
Affected Software | Affected Version | How to fix |
---|---|---|
Vim | <9.1.0689 |
Sign up to SecAlerts for real-time vulnerability data matched to your software, aggregated from hundreds of sources.
CVE-2024-43790 has a moderate severity level due to its potential information disclosure risk.
To fix CVE-2024-43790, upgrade to Vim version 9.1.0689 or later.
CVE-2024-43790 affects Vim versions prior to 9.1.0689.
CVE-2024-43790 exposes the search pattern in the message buffer when specific Vim settings are enabled.
Yes, CVE-2024-43790 specifically impacts users interacting with the command line interface of Vim.