kd7979148's picture
Upload 14 files
afd9f5c verified
raw
history blame contribute delete
971 Bytes
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="utf-8">
<title>MINSUNG's XSS TEST PAGE</title>
<link
rel="stylesheet"
href="{{ url_for('static', filename='style.css') }}"
>
</head>
<body>
<div class="hero">
<div class="overlay">
<h1>Great Memories~~</h1>
<p>
MINSUNG's xss test environment
</p>
</div>
</div>
<div class="container">
<h2>Input</h2>
<form method="GET" action="/">
<input
type="text"
name="q"
placeholder="Enter payload..."
value="{{ q }}"
>
<button type="submit">
Submit
</button>
</form>
<div class="result">
<h3>Reflected Output</h3>
<div class="output">
{{ q|safe }}
</div>
</div>
</div>
<footer>
</footer>
</body>
</html>