> 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/windows-vulnerabilities/vulnerable-services-and-processes.md).

# Servicios y procesos vulnerables de Windows

Los procesos y servicios de Windows pueden exponer secretos, configuraciones débiles o vulnerabilidades conocidas. Identifica el servicio, la versión, el contexto de ejecución, los permisos y el nivel de parches antes de elegir una ruta de explotación.

```powershell
tasklist /svc
```

<table data-view="cards" data-full-width="false" data-search="false"><thead><tr><th></th><th></th><th></th><th data-hidden data-card-target data-type="content-ref"></th></tr></thead><tbody><tr><td><h3><i class="fa-screwdriver-wrench" style="color:$primary;">:screwdriver-wrench:</i></h3></td><td><h4>Errores de configuración de servicios de Windows</h4></td><td>Comprueba permisos débiles del servicio, binarios de servicio con permisos de escritura, rutas sin comillas y condiciones de reinicio del servicio con privilegios elevados.</td><td><a href="/pages/0ef66d9482639a2af7afc874a84e93e984946c05">/pages/0ef66d9482639a2af7afc874a84e93e984946c05</a></td></tr><tr><td><h3><i class="fa-desktop" style="color:$primary;">:desktop:</i></h3></td><td><h4>Contraseña de TeamViewer en el Registro</h4></td><td>Extrae y descifra una contraseña de TeamViewer almacenada en el registro de Windows en instalaciones antiguas.</td><td><a href="/pages/4e9f468359a1505145b0a0c02915819891096887">/pages/4e9f468359a1505145b0a0c02915819891096887</a></td></tr><tr><td><h3><i class="fa-print" style="color:$primary;">:print:</i></h3></td><td><h4>Cola de impresión - PrintNightmare</h4></td><td>Valida las condiciones de explotación del Spooler de impresión de Windows y prueba PrintNightmare en un laboratorio autorizado.</td><td><a href="/pages/888f683a383736c84eb72d0f56c199bd82345312">/pages/888f683a383736c84eb72d0f56c199bd82345312</a></td></tr></tbody></table>

## Línea base del servicio

```cmd
sc query state= all
sc qc <service_name>
tasklist /svc
net start
```

```powershell
Get-WmiObject Win32_Service | Select-Object Name,StartName,State,PathName
Get-Process | Select-Object Id,ProcessName,Path
```


---

# 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/windows-vulnerabilities/vulnerable-services-and-processes.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.
