write-up(web)/misc

[xss-game] Level 1: Hello, world of XSS

chanchand 2023. 1. 21. 17:12
반응형

문제


https://xss-game.appspot.com/level1

 

XSS game: Level 1

 

xss-game.appspot.com

 

 

 

 

문제풀이


입력창에 "hello" 문자열을 입력하면 그대로 출력되는 것을 볼 수 있다.

 

script 문을 삽입하면 문제가 해결된다.

<script>alert(1);</script>

 

반응형