<IMG SRC=javascript:alert('XSS')>

<IMG SRC="javascript:alert('XSS');">
<IMG SRC=javascript:alert(&quot;XSS&quot;)>
This commit is contained in:
Julien Palard 2022-10-12 16:56:58 +02:00
commit 6e262c3b28
Signed by: mdk
GPG Key ID: 0EFC1AC1006886F8
4 changed files with 20 additions and 0 deletions

View File

View File

20
README.md Normal file
View File

@ -0,0 +1,20 @@
# Doodling around XSS
This is just a repo to test some play around XSS vectors on different forges.
Just pull this repo, push this to a forge, and browse it to see how it behave.
Yes I did not spent much time adding vectors, feel free to open PRs.
## Basic one
<IMG SRC="javascript:alert('XSS');">
## Quoteless
<IMG SRC=javascript:alert(&quot;XSS&quot;)>
## Double-quote less
<IMG SRC=javascript:alert('XSS')>