18 lines
No EOL
479 B
HTML
18 lines
No EOL
479 B
HTML
<!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> |