Skip to content

Instantly share code, notes, and snippets.

@Katerina198b
Created February 4, 2021 10:42
Show Gist options
  • Save Katerina198b/5da5325bade56b286b1755e23809a9a8 to your computer and use it in GitHub Desktop.
Save Katerina198b/5da5325bade56b286b1755e23809a9a8 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>XSS</title>
</head>
<body>
<p id="result"></p>
</body>
<script type="application/javascript">
const params = new URLSearchParams(window.location.href);
const name = params.get('name');
document.getElementById('result').innerHTML = 'Hi, ' + name + '!';
</script>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment