CVE-2018-1000606: URLTrigger Plugin server-side request forgery vulnerability
6.5
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.07093%
CWE
Published
5/14/2022
Updated
1/27/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.jenkins-ci.plugins:urltrigger | maven | <= 0.41 | 0.43 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The key vulnerability stemmed from the doCheckURL
form validation method making actual HTTP requests to user-controlled URLs. The commit diff shows this method originally contained code that created a Client
object and executed client.resource(value).get(ClientResponse.class)
, which directly enabled SSRF. The patching commit (aec43e3) explicitly removes this network call, replacing it with a warning about parameterized URLs. The CVE description specifically calls out that 'this form validation method no longer connects to a user provided URL' in the fixed version, confirming this function's role.