> 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-vulnerabilities/race-condition-attack/race-condition-file-write-pentesting-web.md).

# Escritura de archivos por condición de carrera

Cada vez que buscamos un directorio, un **shared-file.txt** archivo se crea y se almacena en:

<figure><img src="/files/50795607e3cece0d441229273c5ec13e1b2f4ac4" alt=""><figcaption></figcaption></figure>

<figure><img src="/files/6d1596d4af9d945210e63e42d775d3eb619feb17" alt=""><figcaption></figcaption></figure>

Aquí está el **código** de RaceCondition-file-write:

<figure><img src="/files/1735fa49fd7fb862af4d5450aafbd1a281d3feca" alt=""><figcaption></figcaption></figure>

1. nosotros nosotros establecemos **en solicitudes del oyente** al filtrar por el campo que nos interesa:

```bash
mientras true; do curl -s -X GET 'http://localhost:5000/test' | grep -v "test"; done

```

2. Desde [Burp Suite](/es/hacking-tools/web/burpsuite.md), enviamos varias solicitudes al mismo tiempo a otra URL:

<figure><img src="/files/93f48516422bc4a2cc004ebc3b00f9cff56ec550" alt=""><figcaption></figcaption></figure>

3. Porque de vez en cuando se satura, nosotros **recibimos el código** de otro archivo:

<figure><img src="/files/4bfd3cc5ba4ef67363060c0e9ad2bc2cdc9caefa" 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-vulnerabilities/race-condition-attack/race-condition-file-write-pentesting-web.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.
