forked from VKECE/Burp-Loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKali_Linux_Setup.sh
executable file
·35 lines (30 loc) · 1.21 KB
/
Kali_Linux_Setup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/bash
echo "
##### # # ##### # # # #
# # ## # # # # # ## #
# # # # # # # # # #
##### # # # # #### # # # # # #
# # # # # # # # # # # #
# # # ## # # # # # # ##
##### # # ##### ## ## # #
"
if [[ $EUID -eq 0 ]]; then
# Download Burp Suite Profesional Latet Version
echo 'Downloading Burp Suite Professional ....'
Link="https://portswigger-cdn.net/burp/releases/download?product=pro&version=&type=jar"
wget "$Link" -O Burp_Suite_Pro.jar --quiet --show-progress
sleep 2
# execute Keygenerator
echo 'Starting Keygenerator'
(java -jar keygen.jar) &
sleep 3s
# Execute Burp Suite Professional with Keyloader
echo 'Executing Burp Suite Professional with Keyloader'
echo "java --illegal-access=permit -Dfile.encoding=utf-8 -javaagent:$(pwd)/loader.jar -noverify -jar $(pwd)/Burp_Suite_Pro.jar &" > burp
chmod +x burp
cp burp /bin/burp
(./burp)
else
echo "Execute Command as Root User"
exit
fi