ctf-tools/burpsuite/install

9 lines
169 B
Text
Raw Normal View History

2015-05-14 21:37:56 +00:00
#!/bin/bash -e
2015-10-28 14:13:45 +00:00
wget -O ./burp.jar 'https://portswigger.net/DownloadUpdate.ashx?Product=Free'
chmod 755 ./burp.jar
2015-05-14 21:37:56 +00:00
mkdir -p bin
cd bin
ln -s ../burp.jar burpsuite
2015-05-14 21:37:56 +00:00
cd ..