ctf-tools/burpsuite/install

9 lines
169 B
Text
Raw Normal View History

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