> 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/path-traversal/bypass-with-null-byte-and-extension-validation.md).

# Evasión con byte nulo y validación de extensión

### Recorrido de ruta de archivo, validación de la extensión de archivo con omisión mediante byte nulo

Este laboratorio presenta una vulnerabilidad de recorrido de rutas al mostrar las imágenes del producto. / La aplicación comprueba que el nombre de archivo proporcionado termine correctamente con la extensión esperada.

El objetivo es leer el contenido de la **/etc/passwd** archivo.

#### **Análisis**

Si la ruta se proporciona directamente

```bash
../../../../etc/passwd
```

La aplicación devuelve un error porque requiere que el archivo tenga la extensión **.jpg**.

En versiones antiguas de PHP (antes de **5.3.4**), era posible usar un byte cero **byte (%00)** para omitir esta validación: / el motor de PHP dejaba de leer el nombre de archivo en el byte nulo, mientras que la aplicación seguía viendo una extensión válida.

<figure><img src="/files/15c5d07486af40b39c53fde73705896c5f157a86" alt=""><figcaption></figcaption></figure>

#### **Carga útil**

Añade un byte nulo antes de la extensión:

```bash
%00.jpg
```

El navegador sigue interpretando ".jpg", pero PHP se detiene en " /etc/passwd", lo que permite leer el archivo sensible.

```bash
../../../../etc/passwd%00.jpg
```

<figure><img src="/files/d02a54efc6326d28d95dacb8024c47d900cedc3d" 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/path-traversal/bypass-with-null-byte-and-extension-validation.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.
