Skip to content

Instantly share code, notes, and snippets.

@wuuconix
Created April 12, 2023 13:02
Show Gist options
  • Save wuuconix/fb510b2a1c6ad17dacea73686c8db83e to your computer and use it in GitHub Desktop.
Save wuuconix/fb510b2a1c6ad17dacea73686c8db83e to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<title>XSS Prove Using HTML</title>
</head>
<body>
<div class="flex">
<img src="https://gzw.sinaimg.cn/large/007YVyKcly1h2kl9rs23cj30ma0mlk48.jpg">
</div>
</body>
</html>
<style>
.flex {
display: flex;
justify-content: center;
align-items: center;
}
img {
width: 200px;
}
</style>
<script>
alert("xss proved using html. 2023/4/12")
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment