CVE-2014-2573:
OpenStack Nova VMWare driver leaks rescued images
6.5
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.29577%
CWE
Published
5/17/2022
Updated
11/26/2024
KEV Status
No
Technology
Python
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
nova | pip | < 12.0.0a0 | 12.0.0a0 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from two key issues in the VMware driver:
- The original destroy() method in vmops.py did not handle rescue instances. The patch splits it into _destroy_instance() and adds logic to check vm_state==RESCUED, then call unrescue(power_on=False).
- The unrescue() method previously always powered on the original VM. The patch adds a power_on parameter to avoid this during deletion. Without this, unrescue() couldn't properly clean up rescue instances when the parent VM was being deleted. The commit diff shows these functions were modified to address the resource leak, confirming their role in the vulnerability.