homepage/minigame.html

18 lines
479 B
HTML
Raw Normal View History

2020-10-19 00:47:35 +03:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple XSS minigame</title>
<script>
var name;
if (location.hash === '#hippo') {
name = 'hippo';
}
document.write(`Hello, ${name}! This is a simple XSS minigame. Your goal is to get XSS into this extremely simple page. Good luck!`);
</script>
</head>
<body>
</body>
</html>