This advisory announces multiple vulnerabilities in Jenkins, CloudBees Jenkins Platform and CloudBees Jenkins Solutions.
Improperly secured form validation for proxy configuration allowed Server-Side Request Forgery
SECURITY-506 / CVE-2018-1000067
The form validation for the proxy configuration form did not check the permission of the user accessing it, allowing anyone with Overall/Read access to Jenkins to cause Jenkins to send a GET request to a specified URL, optionally with a specified proxy configuration.
If that request's HTTP response code indicates success, the form validation is returning a generic success message, otherwise the HTTP status code is returned.
The form validation now properly requires the Overall/Administer permission.
Path traversal vulnerability allows access to files outside plugin resources
SECURITY-705 / CVE-2018-6356
Jenkins did not properly prevent specifying relative paths that escape a base directory for URLs accessing plugin resource files. This allowed users with Overall/Read permission to download files from the Jenkins master they should not have access to.
On Windows, any file accessible to the Jenkins master process could be downloaded. On other operating systems, any file within the Jenkins home directory accessible to the Jenkins master process could be downloaded.
Jenkins now prevents specifying paths containing .. and other character sequences that could be used to access files outside the plugins resource directory.
Improper input validation allows unintended access to plugin resource files on case-insensitive file systems
SECURITY-717 / CVE-2018-1000068
Jenkins did not take into account case-insensitive file systems when preventing access to plugin resource files that should not be accessible.
This allowed users with Overall/Read permission to download plugin resource files in META-INF and WEB-INF directories, such as the plugins' JAR files, which could contain hardcoded secrets.
This was caused by an incomplete fix to SECURITY-155 .