60 lines
1.5 KiB
YAML
60 lines
1.5 KiB
YAML
|
id: CVE-2019-10405
|
||
|
|
||
|
info:
|
||
|
name: Jenkins <=2.196 - Cookie Exposure
|
||
|
author: c-sh0
|
||
|
severity: medium
|
||
|
description: Jenkins through 2.196, LTS 2.176.3 and earlier prints the value of the cookie on the /whoAmI/ URL despite it being marked HttpOnly, thus making it possible to steal cookie-based authentication credentials if the URL is exposed or accessed via another cross-site scripting issue.
|
||
|
reference:
|
||
|
- https://jenkins.io/security/advisory/2019-09-25/#SECURITY-1505
|
||
|
- http://www.openwall.com/lists/oss-security/2019/09/25/3
|
||
|
- https://nvd.nist.gov/vuln/detail/CVE-2019-10405
|
||
|
classification:
|
||
|
cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N
|
||
|
cvss-score: 5.4
|
||
|
cve-id: CVE-2019-10405
|
||
|
cwe-id: CWE-79
|
||
|
metadata:
|
||
|
shodan-query: http.favicon.hash:81586312
|
||
|
tags: cve,cve2019,jenkins
|
||
|
|
||
|
http:
|
||
|
- raw:
|
||
|
- |
|
||
|
GET {{BaseURL}}/whoAmI/ HTTP/1.1
|
||
|
Host: {{Hostname}}
|
||
|
|
||
|
- |
|
||
|
GET {{BaseURL}}/whoAmI/ HTTP/1.1
|
||
|
Host: {{Hostname}}
|
||
|
|
||
|
cookie-reuse: true
|
||
|
req-condition: true
|
||
|
matchers-condition: and
|
||
|
matchers:
|
||
|
- type: status
|
||
|
status:
|
||
|
- 200
|
||
|
|
||
|
- type: word
|
||
|
part: header
|
||
|
words:
|
||
|
- 'text/html'
|
||
|
- 'x-jenkins'
|
||
|
condition: and
|
||
|
case-insensitive: true
|
||
|
|
||
|
- type: word
|
||
|
part: body_2
|
||
|
words:
|
||
|
- 'Cookie'
|
||
|
- 'JSESSIONID'
|
||
|
condition: and
|
||
|
|
||
|
extractors:
|
||
|
- type: kval
|
||
|
kval:
|
||
|
- x_jenkins
|
||
|
|
||
|
# Enhanced by md on 2023/04/03
|