CVEs affecting projects tracked on Release Alert, from NVD & OSV.
CVE-2026-45130 — MEDIUM severity vulnerability | Release Alert
CVE-2026-45130
6.6
MEDIUMCVSS v3
Published
May 8, 2026
Affected
10 projects
Assigned by
GitHub
Severity scale
010
Description
Vim is an open source, command line text editor. Prior to version 9.2.0450, a heap buffer overflow exists in read_compound() in src/spellfile.c when loading a crafted spell file (.spl) with UTF-8 encoding active. An attacker-controlled length field in the spell file's compound section overflows a 32-bit signed integer multiplication, causing a small buffer to be allocated for a write loop that runs many iterations, overflowing the heap. Because the 'spelllang' option can be set from a modeline, a text file modeline can trigger spell file loading if a malicious .spl file has been planted on the runtimepath. This issue has been patched in version 9.2.0450.
ChocolateyVim is a highly configurable text editor built to enable efficient text editing. It is an improved version of the vi editor distributed with most UNIX systems.
Vim is often called a programmer's editor, and so useful for programming that many consider it an entire IDE. It's not just for programmers, though. Vim is perfect for all kinds of text editing, from composing email to editing configuration files.
## Features
* **Vim**: Vim terminal(CLI) application can be used from Powershell and Command Prompt.
* **GVim**: The GUI version of Vim provides full featured Windows GUI application experience.
* **Terminal Integration**: Batch files are created to provide `vim`, `gvim`, `evim`, `view`, `gview`, `vimdiff`, `gvimdiff` and `vimtutor` command on terminal use.
* **Shell Integration**: Vim is added in `Open with ...` context menu. And by default `Edit with Vim` context menu is created to open files whose extensions are associated with other applications.
## Package parameters
- `/InstallDir` - Override the installation directory. By default, the software is installed in `$ChocolateyToolsLocation`, it's default value is `C:\tools`. You can include spaces. See the example below.
- `/RestartExplorer` - Restart Explorer to unlock `GVimExt.dll` used for `Edit with Vim` context menu feature.
- `/NoDefaultVimrc` - Don't create default `_vimrc` file.
- `/NoContextmenu` - Don't create `Edit with Vim` context menu.
- `/NoDesktopShortcuts` - Don't create shortcuts on the desktop.
Example: `choco install vim --params "'/NoDesktopShortcuts /InstallDir:C:\path\to\your dir'"`
## Notes
- **Antivirus Detections**. Some files in the package are being picked up by VirusTotal as malicious. Please see these [GitHub issues](https://github.com/vim/vim-win32-installer/issues?q=is%3Aissue+is%3Aclosed+virus) for more information.
- This package uses the ZIP build to install to provide installation parameters.
- All compilation of the software is automated and performed on Appveyor. The building status is open.
- This package provides an official build. Similar package `vim-tux` is from a well-known unofficial vim building project. Unlike `vim-tux`, this package can take some installation parameters.
- **If the package is out of date please check [Version History](#versionhistory) for the latest submitted version. If you have a question, please ask it in [Chocolatey Community Package Discussions](https://github.com/chocolatey-community/chocolatey-packages/discussions) or raise an issue on the [Chocolatey Community Packages Repository](https://github.com/chocolatey-community/chocolatey-packages/issues) if you have problems with the package. Disqus comments will generally not be responded to.**
Chocolatey## Features
### Extensible
- API is first-class: discoverable, versioned, documented.
- MessagePack structured communication enables extensions in any language.
- Remote plugins run as co-processes, safely and asynchronously.
- GUIs, IDEs, web browsers can --embed Neovim as an editor or script host.
- Lua plugins are easy to create just like Vimscript plugins. Your config can live in init.lua!
- AST-producing parsing engine enables faster, more accurate syntax highlighting, code navigation, refactoring, text objects, and motions.
### Usable
- Strong defaults including a unique, minimalist colorscheme.
- Builtin LSP client for semantic code inspection and refactoring (go-to definition, "find references", format, ...).
- Client-server architecture allows you to detach the UI and keep the editor session running (like tmux). Attach multiple UIs to any Nvim session.
- Works the same everywhere: one build-type, one command.
- Modern terminal features such as cursor styling, focus events, bracketed paste.
- Builtin `:terminal` set the standard for "TTY as a basic component".
### Drop-in Vim
- Fully compatible with Vim's editing model and Vimscript v1.
- Start with :help nvim-from-vim if you already use Vim. If not, try :Tutor.
### Following HEAD
- If you want to stay up to date with the latest development you can install neovim using the `--pre` option.
- For example: `choco install neovim --pre`.
- Which will get you the latest _nightly_ builds for windows.
### Package Parameters
- `/NoNeovimOnPath`: Neovim binary folder will not be added to the path.
- Optional parameter.
- Default behavior is that Neovim binary will be added to the users path.
- If this is used together with `/NeovimOnPathForAll`, this takes precedence and the path will not be modified.
- Example: `choco install neovim --params "/NoNeovimOnPath"`
- `/NeovimOnPathForAll`: Neovim binary folder will be added to the machine path.
- Optional parameter.
- Default behavior is that Neovim binary will be added only to the users path.
- Example: `choco install neovim --params "/NeovimOnPathForAll"`
**Note:** ~~To force the installation of x32 version, use the `--x86` argument with `choco install`.~~
As of [#16317](https://github.com/neovim/neovim/pull/16317) Win32 builds and releases were removed