# General Methodology

Aquí buscamos fallos conocidos (CVEs) y errores de configuración que nos permitan comprometer los servicios enumerados.

## 🔍 Escáneres Automatizados

Aunque el análisis manual es mejor, los escáneres ahorran tiempo inicial.

* **Nessus**: El estándar corporativo.
* **OpenVAS**: Alternativa Open Source.
* **Nuclei**: Escáner rápido basado en plantillas, ideal para vulnerabilidades modernas.

```bash
nuclei -u http://<IP> -t cves/
```

## 🌐 Vulnerabilidades Web (OWASP Top 10)

### SQL Injection (SQLi)

Prueba inyectar `'` o `"` en parámetros GET/POST.

* Herramienta: `sqlmap -u "http://target.com/page.php?id=1" --dbs`

### Cross-Site Scripting (XSS)

Intenta ejecutar Javascript en el navegador de la víctima.

* Payload básico: `<script>alert(1)</script>`

### Local File Inclusion (LFI)

Si puedes leer archivos del servidor.

* Payload: `../../../../etc/passwd`

## 📝 Notas

> \[!TIP] Prioriza siempre las vulnerabilidades con exploits públicos (RCE) antes que las de bajo impacto.


---

# 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/03.-vulnerability-analysis/general.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.
