-
Notifications
You must be signed in to change notification settings - Fork 4
/
burpsuite-launcher.sh
74 lines (61 loc) · 2.54 KB
/
burpsuite-launcher.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/bin/bash
function ban(){
banner='
___ _ _ __ _
/ __\_ _ _ __ _ __ ___ _ _(_) |_ ___ / / __ _ _ _ ___| |__ ___ _ __
/__\// | | | __| _ \/ __| | | | | __/ _ \ / / / _` | | | |/ __| _ \ / _ \ __|
/ \/ \ |_| | | | |_) \__ \ |_| | | || __/ / /__| (_| | |_| | (__| | | | __/ |
\_____/\__,_|_| | .__/|___/\__,_|_|\__\___| \____/\__,_|\__,_|\___|_| |_|\___|_|
|_|
'
while IFS= read -r -n 1 -d '' c; do printf '\e[38;5;%dm%s\e[0m' "$((RANDOM%255+1))" "$c"; done <<<$banner
}
function ban2(){
echo -e '
\e[90m$&&$&&&&&&&&&&&&&&\e[91m((((((/////\e[49m*/////
\e[90m&&&&&&&&&&&&&&&&&\e[91m(((//////\e[49m* ///////
\e[90m&&&&&&&&&&&&&&&&&\e[91m(((/////\e[49m* *///////
\e[90m&&&&&&&&&&&&&&&&&\e[91m(((////\e[49m* ////////
\e[90m&&&&&&&&&&&&&&&&&\e[91m(((/*\e[49m \e[49m *(///////
\e[90m&&&&&&&&&&&&&&&&&\e[91m((*\e[49m \e[49m*///////
\e[90m&&&&&&&&&&&&&&&&&\e[91m(((/////,\e[49m \e[49m*///////
\e[90m&&&&&&&&&&&&&&&&&\e[91m(((/////*...\e[49m \e[49m(//
\e[90m&&&&&&&&&&&&&&&&&\e[91m(((///////.\e[49m \e[49m(////
\e[90m&&&&&&&&&&&&&&&&&\e[91m(((/////,\e[49m \e[49m*//////
\e[90m&&&&&&&&&&&&&&&&&\e[91m(((/////, \e[49m*///////
\e[90m@&&&&&&&&&&&&&&&&\e[91m(((//////\e[49m*////////
'
}
ban
RED="\e[31m"
GREEN="\e[32m"
pw=$(pwd)
loader=$(ls|grep -v old|grep -i loader)
burp=$(ls|grep -i pro)
dir="java -Dfile.encoding=utf-8 -javaagent:$pw/$loader -noverify -jar $pw/$burp"
loc='~/.local/share/applications/'
ls $loc >/dev/null 2>&1
if [[ $? == 0 ]]
then
cat > ~/.local/share/applications/kali-burpsuite.desktop << EOF
[Desktop Entry]
Name=Burpsuite
Encoding=UTF-8
Exec=sh -c "$dir" %u
Icon=burp
StartupNotify=false
Terminal=false
Type=Application
Categories=03-webapp-analysis;03-06-web-application-proxies;
X-Kali-Package=burpsuite
StartupWMClass=burp-StartBurp
EOF
else
echo "Can not Create Launcher in this system"&& exit
fi
clear && ban2
echo -e "${RED} +-----------+------------------+-----------------------+
| You | are | Ready | For | Lauch |
${GREEN}+-----------+------------------+-----------------------+
| Laucher is set , Now just search in your Menu |
+-----------+------------------+-----------------------+"