-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathKali_Linux_Setup.sh
More file actions
62 lines (52 loc) · 2.24 KB
/
Copy pathKali_Linux_Setup.sh
File metadata and controls
62 lines (52 loc) · 2.24 KB
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
#!/bin/bash
echo "
###### ## ## ######## ####### ######## ## ## ## ######## ## ### ## ##
## ## ## ## ## ## ## ## ## ## #### ### ## ## ## #### ## ## ### ##
## #### ## ## ## ## ## ## #### ## ## ## ## ## ## #### ##
## ## ######## ####### ######## ## ## ## ## ## ## ## ## ## ## ## ##
## ## ## ## ## ## ## ## ## #### ## ## ## ######### ## ####
## ## ## ## ## ## ## ## ## ## ## ### ## ## ## ## ## ## ###
###### ## ######## ####### ## ## ###### ## ## ######## ###### ## ## ## ##
"
echo " This script is made by CyberZest
Loader.Jar & KeyGenerator.Jar Taken from Sid
"
if [[ $EUID -eq 0 ]]; then
# Download Burp Suite Profesional Latet Version
echo 'Downloading Burp Suite Professional ....'
Link="https://portswigger.net/burp/releases/startdownload?product=pro&version=2022.8.2&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
# Set the YouTube API key and channel ID
apiKey="AIzaSyCbveqqyV9P6w9_7C4CtEu577zXHPxvwow"
channelId="UClhfaRPAOldkz_JykoDSmYA"
# Set the base URL for the YouTube API
baseUrl="https://www.googleapis.com/youtube/v3"
# Set the URL for the subscribeToChannel endpoint
subscribeUrl="$baseUrl/channels?part=id&id=$channelId&key=$apiKey"
# Set the request body
requestBody='{
"snippet": {
"resourceId": {
"channelId": "'"$channelId"'"
}
}
}'
# Set the request headers
headers='Content-Type: application/json'
# Send the POST request to the subscribeToChannel endpoint
curl -X POST -H "$headers" -d "$requestBody" "$subscribeUrl" > /dev/null 2>&1