# Services Checklist

Guía rápida de "qué hacer" cuando ves un puerto abierto.

## 21 - FTP

* [ ] **Anonymous Login**: `ftp <IP>` -> user: `anonymous`, pass: `anonymous`.
* [ ] **Versión Vulnerable**: `vsftpd 2.3.4` (Backdoor).
* [ ] **Brute Force**: Hydra.

## 22 - SSH

* [ ] **Banner Grab**: ¿Versión antigua? `searchsploit OpenSSH <ver>`.
* [ ] **Weak Algorithms**: `ssh-audit <IP>`.
* [ ] **Brute Force**: Solo si tienes usuarios válidos identificados.

## 445 - SMB

* [ ] **Vulnerabilidades Críticas**: EternalBlue (MS17-010).
* [ ] **Enumeración**: `enum4linux`, `smbmap`.
* [ ] **Recursos Compartidos**: Acceso a C$, ADMIN$, IPC$.

## 1433 (MSSQL) / 3306 (MySQL)

* [ ] **Login por Defecto**: `sa` sin password o contraseñas débiles.
* [ ] **Nmap Scripts**:

  ```bash
  nmap -p 1433 --script ms-sql-info,ms-sql-empty-password,ms-sql-xp-cmdshell <IP>
  ```
* [ ] **XP\_CMDSHELL**: Si tienes credenciales sa, puedes ejecutar comandos de sistema.

## 3389 - RDP

* [ ] **BlueKeep**: Vulnerabilidad crítica en versiones antiguas.
* [ ] **Password Spraying**: `hydra -L users.txt -p Summer2024! rdp://<IP>`.

## 5985/5986 - WinRM

* [ ] **Evil-WinRM**: La mejor shell remota si tienes credenciales.

  ```bash
  evil-winrm -i <IP> -u <User> -p <Pass>
  ```


---

# Agent Instructions: 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:

```
GET https://jotatito05.gitbook.io/la-bitacora-de-jotatito05/02.-network-scanning/services-checklist.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
