CVE-2018-16856: Openstack Octavia allows Insertion of Sensitive Information into Log File
7.5
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.49994%
CWE
Published
5/13/2022
Updated
10/7/2024
KEV Status
No
Technology
Python
Technical Details
CVSS Vector
CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
octavia | pip | < 2.1.0 | 2.1.0 |
octavia | pip | >= 3.0.0.0b1, < 3.1.0 | 3.1.0 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stemmed from taskflow logging sensitive data in debug mode. The commit ae7c87f added Fernet encryption to these functions' certificate handling:
- GenerateServerPEMTask previously returned raw cert+key (logged)
- AmphoraCertUpload handled raw PEM data (logged during upload)
- CertComputeCreate passed raw PEM to VM configuration (logged in task inputs) The removal of _exclude_result_logging_tasks in controller_worker.py indicates prior reliance on exclusion lists rather than encryption. The patched versions encrypt before logging, confirming these were the vulnerable points.