1Hack the box - buff
2
3Guys, this problem took me 1 day to find the problem and the issue is the
4script needs python 2.7 and is missing libraries.
5You'll need to install them.
6
7Open terminal:
8Install Python 2.7
9sudo apt-get install python-pip
10
11Install pip
12sudo pip install requests
13
14Install colorama
15sudo pip install colorama
16
17Run exploit:
18python exploitname.py url
19
20Happy Hacking!
21
22