Created
February 4, 2021 10:42
-
-
Save Katerina198b/5da5325bade56b286b1755e23809a9a8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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