Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to inject javascript without using script tags? [closed]

Tags:

javascript

xss

I cant use the script tags It alerts when I do , which is only useful for testing. It filters them out:

    script > *
    SCRIPT > SCRIPT
    sCriPt > sCriPt

so, i try to use capital script tags but it turns to:

    *CRIPT>alert(1)</SCRIPT>

I have tried using multiple tags.

How can I inject regular javascript with this? Oh, and I cant use quotes.

like image 898
user2318029 Avatar asked Oct 20 '22 20:10

user2318029


1 Answers

Just so you know, there is an XSS Cheat Sheet you can refer to.

like image 65
Joseph Avatar answered Oct 24 '22 09:10

Joseph