> For the complete documentation index, see [llms.txt](https://robertos-notebook.gitbook.io/vuldarconcept/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://robertos-notebook.gitbook.io/vuldarconcept/enumeration/starting-point.md).

# Starting Point

\#Enumeracion

## Escaneo Basico (Nmap)

Antes de cada ataque, siempre es mejor comenzar con los siguientes dos escaneos, estos te daran una vision general del objetivo.

```bash
nmap -p- --open -sS --min-rate 5000 {IP} -vvv -n -oN Ports
```

```bash
nmap -sCV -p {Ports} {IP} -oN Target
```

### Website

Si encuentras un sitio web, sea http o https, puedes utilizar el comando **Whatweb** aplicando verbose **(-v),** este se puede instalar con: `apt-get install whatweb`

```
whatweb -v {URL}
```

Si no reconoce el sitio web, recuerda que debes agregar el host en:&#x20;

* Linux: /etc/host
* Wind: /mnt/c/Windows/System32/drivers/etc/hosts
