-
Notifications
You must be signed in to change notification settings - Fork 1
/
tga.sh
125 lines (102 loc) · 3.41 KB
/
tga.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
clear
mkdir Tools
clear
echo -e '\033[31;40;1m
████████╗ ██████╗ █████╗ ███████╗ █████╗ ██╗ ██╗██╗ ██╗
╚══██╔══╝██╔════╝ ██╔══██╗██╔════╝██╔══██╗██║ ██║██║ ██║
██║ ██║ ███╗███████║███████╗███████║██║ ██║███████║
██║ ██║ ██║██╔══██║╚════██║██╔══██║██║ ██║██╔══██║
██║ ╚██████╔╝██║ ██║███████║██║ ██║███████╗██║██║ ██║
╚═╝ ╚═════╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚══════╝╚═╝╚═╝ ╚═╝
\033[33;4mVersion:\033[0m 1.4 \033[33;4mCTRL+C:\033[0m exit \033[33;4mAuthor:\033[0m Salih.py
\e[37m[1]\e[36m Gereksinimler & Güncellme \e[37m[2]\e[36m Phishing Tool
\e[37m[3]\e[36m WebCam Hack \e[37m[4]\e[36m User Find
\e[37m[5]\e[36m Gmail Bomber \e[37m[6]\e[36m DDOS Attack
\e[37m[7]\e[36m Nasıl Kullanılır ? \e[37m[8]\e[36m İndirilen Programları Kaldır
'
#Menü Kodlama
read -p "İşlem Numarası: " islem
if [[ $islem == 1 || $islem == 01 ]]; then
clear
## Gereksinimler
echo -e "\033[47;31;5m Güncelleme Ve Gereksinimler Kuruluyor...\033[0m"
sleep 5
pkg install git -y
pkg install python python2 -y
pkg install pip pip2 -y
pkg install curl -y
apt update
apt upgrade -y
clear
echo -e "\033[47;3;35m Güncelleme Tamamlandı...\033[0m"
sleep 3
bash tga.sh
## Phishing Tool
elif [[ $islem == 2 || $islem == 02 ]]; then
clear
echo -e "\033[47;3;35m Kurulum Uzun Sürebilir Bekleyin\033[0m"
sleep 3
cd Tools
git clone https://github.com/htr-tech/zphisher
cd zphisher
bash zphisher.sh
## Webcam Hack
elif [[ $islem == 3 || $islem == 03 ]]; then
clear
echo -e "\033[47;3;35m Kurulum Uzun Sürebilir Bekleyin\033[0m"
sleep 3
cd Tools
git clone https://github.com/techchipnet/CamPhish
cd CamPhish
bash camphish.sh
## Finduser
elif [[ $islem == 4 || $islem == 04 ]]; then
clear
echo -e "\033[47;3;35m Kurulum Uzun Sürebilir Bekleyin\033[0m"
sleep 3
cd Tools
git clone https://github.com/xHak9x/finduser
cd finduser
bash finduser.sh
## Gmail Bomber
elif [[ $islem == 5 || $islem == 05 ]]; then
clear
echo -e "\033[47;3;35m Kurulum Uzun Sürebilir Bekleyin\033[0m"
sleep 3
cd Tools
git clone https://github.com/palahsu/MBomb.git
cd MBomb
cd 'MBomb v2'
pip install colorama
pip install tqdm
python MBomb.py
## DDOS Attack
elif [[ $islem == 6 || $islem == 06 ]]; then
clear
echo -e "\033[47;3;35m Kurulum Uzun Sürebilir Bekleyin\033[0m"
sleep 3
cd Tools
pip3 install requests pysocks
git clone https://github.com/Leeon123/CC-attack
cd CC-attack
python3 cc.py
## Nasıl KUllanılır
elif [[ $islem == 7 || $islem == 07 ]]; then
clear
xdg-open https://pasteio.com/xuCvIkXdNRIB
bash tga.sh
## Programları Kaldır
elif [[ $islem == 8 ]]; then
clear
echo -e "\033[47;3;35m İNDİRİLEN PROGRAMLAR KALDIRILIYOR...\033[0m"
sleep 3
rm -rf Tools
bash tga.sh
## Hatalı kod
else
clear
echo -e '\033[36;40;1m Hatalı Kod Girdiniz'
sleep 1
clear
bash tga.sh
fi