CVE-2019-10444:
Jenkins Bumblebee HP ALM Plugin unconditionally disabled SSL/TLS certificate validation
4.8
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.09022%
CWE
Published
5/24/2022
Updated
10/26/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.jenkins-ci.plugins:bumblebee | maven | <= 4.1.3 | 4.1.4 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability centers on disabled SSL/TLS validation. Analysis focused on three key components:
- Hostname verification bypass - NullHostnameVerifier.verify() would skip hostname validation
- Certificate trust mechanism - TrustAllStrategy.isTrusted() would accept any certificate
- Client construction - HpAlmClient.createHttpClient() would assemble these insecure components These functions directly implement the unconditional trust described in the advisory. The high confidence comes from the vulnerability's nature requiring these specific SSL bypass mechanisms, while medium confidence on HpAlmClient.createHttpClient() assumes typical HTTP client construction patterns.