mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-13 14:32:34 +00:00
8 lines
180 B
Bash
Executable file
8 lines
180 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
wget http://portswigger.net/burp/burpsuite_free_v1.6.01.jar
|
|
chmod 755 burpsuite_free_v1.6.01.jar
|
|
mkdir -p bin
|
|
cd bin
|
|
ln -s ../burpsuite_free_v1.6.01.jar burp
|
|
cd ..
|