Tags: web 

Rating:

# Real author: cherpietro
# Avoiding redirects

As the task says going if we go direcotry to directory in the browers we aren't going to get the flag. Using the curl command will give you false flags, probably of the redirection. (Side note, Crepyy_killer78 here. Maybe using the -L of curl could do the trick but no sure.).

So lets use wget and get the file for each directory.

# Script
```
#! /bin/bash
cat wordlist | while read dir; do
wget http://130.206.158.146:42005/$dir
done;
```

And 1 of the files is the actuall flag.