> For the complete documentation index, see [llms.txt](https://pentesting.mrw0l05zyn.cl/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://pentesting.mrw0l05zyn.cl/reconocimiento-y-recoleccion-de-informacion/informacion-de-recursos-en-internet-whois.md).

# Información de recursos en Internet

## WHOIS

WHOIS, protocolo de consulta y respuesta de información para recursos en internet (puerto 43/TCP).

```shell
whois <domain-name>
```

* \<domain-name> = nombre de dominio.

```shell
 whois <IP-address>
```

* \<IP-address> = dirección IP.

## DomainTools

* <https://whois.domaintools.com/>

## theHarvester

```shell
theHarvester -d <domain-name> -b all
```

* \<domain-name> = nombre de dominio.
* -b = fuente de información.

## Nmap

```shell
nmap --script whois-domain <domain-name> -sn
```
