# EyeWitness

{% embed url="<https://github.com/RedSiege/EyeWitness>" %}

Eyewitness is a tool designed to take screenshots of web applications when given an IP range(s) or Nessus/Nmap file. It is pretty straightforward to use, but I'll provide an example using a Nessus file that will get you started:

{% code title="Linux" %}

```bash
# Tool setup
git clone https://github.com/RedSiege/EyeWitness && cd EyeWitness
./Python/setup/setup.sh

# Run EyeWitness with text file containing hosts
EyeWitness.py --web -f targets.txt

# Run EyeWitness with Nessus file as input
EyeWitness.py --web -x Weelee_Scan.nessus --threads 20
```

{% endcode %}
