> 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/access-control/password-filtering-via-parameter-controlled-id.md).

# Filtrado de contraseñas mediante Id controlado por parámetro

### ID de usuario controlado por un parámetro de solicitud con divulgación de contraseña

Este laboratorio tiene una página de perfil de usuario en la que la contraseña actual aparece en un campo rellenado previamente, pero enmascarada por un campo de entrada de contraseña. / El ID de usuario se controla mediante un parámetro en la URL, lo que permite acceder arbitrariamente al perfil de otras cuentas.

El objetivo es obtener la contraseña del administrador y luego usarla para eliminar al usuario carlos.

#### **Procedimiento completado**

* Cambiar el parámetro de la URL puede mostrar el perfil de otro usuario:

```bash
/my-account?id=administrator
```

* La página carga correctamente los datos de la cuenta de administrador, pero la contraseña aparece en forma enmascarada ( type="password" ).
* Cambiar el tipo del campo en el código HTML del lado del cliente a:

<figure><img src="/files/6dd1bf52c3b8407d82d1e0fc8676f49ce7feabed" alt="" width="563"><figcaption></figcaption></figure>

Así, es posible obtener la contraseña del administrador e iniciar sesión con ella para eliminar al usuario carlos desde la interfaz de administración.

* la contraseña se vuelve visible en texto plano.

<figure><img src="/files/ec3e4f5adf44c30617d57322921451ccfb890be6" alt="" width="563"><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/access-control/password-filtering-via-parameter-controlled-id.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.
