# Screenshots

## Eyewitness

Eyewitness est un outil permettant de prendre des captures d'écran d'une liste d'urls pendant la phase de reconnaissance et qui envoie un rapport sous forme de fichier html.

Exemple:

*`$ eyewitness -f urls.txt -d screens`*

ressource: <https://www.kali.org/tools/eyewitness/>

## Cutycapt

Cutycapt est un outil de capture d'écran de pages web natif à kali linux.

*`$ cutycapt --url=<url> --out=out-file-name.png`*

ressource: <https://www.kali.org/tools/cutycapt/>

## One liner

### Screenshots sur un range d'IP

```bash
IP="192.168.0"; for p in '80' '443'; do for i in $(seq 0 5); do TAKE_SS=$(cutycapt --url=$IP.$i:$p --out=$IP.$i:$p.png); done; done
```


---

# 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://blog.s1rn3tz.ovh/osint-recon/screenshots.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.
