-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcyberspy.sh
executable file
·125 lines (124 loc) · 3.85 KB
/
cyberspy.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
#!/bin/bash
#
# CyberSpy: Open Source
# License: General Public License
# System: GNU/linux
# Date: 22-04-2022
#
# Facebook: https://www.facebook.com/whitehacks00
# TikTok: https://tiktok.com/@whitehacks00
# Telegram: https://t.me/whitehacks00
# GitHub: https://github.com/Darkmux
#
# This tool was created in honor of @thelinuxchoice.
#
# ==============================================
# Variables
# ==============================================
operatingSystem=$(uname -o)
deviceArchitecture=$(uname -m)
showPath=$(pwd)
showDay=$(date +"%d")
showMonth=$(date +"%m")
showYear=$(date +"%Y")
spy="/data/data/com.termux/files/home/cyberspy"
settings="/data/data/com.termux/files/home/cyberspy/settings"
style="/data/data/com.termux/files/home/cyberspy/settings/style"
execute="/data/data/com.termux/files/home/cyberspy/settings/exec"
intools="/data/data/com.termux/files/home/cyberspy/settings/intools"
rmtools="/data/data/com.termux/files/home/cyberspy/settings/rmtools"
home="/data/data/com.termux/files/home"
usr="/data/data/com.termux/files/usr"
etc="/data/data/com.termux/files/usr/etc"
bin="/data/data/com.termux/files/usr/bin"
opt="/data/data/com.termux/files/usr/opt"
share="/data/data/com.termux/files/usr/share"
# ==============================================
# Light colors
# ==============================================
black="\e[1;30m"
blue="\e[1;34m"
green="\e[1;32m"
cyan="\e[1;36m"
red="\e[1;31m"
purple="\e[1;35m"
yellow="\e[1;33m"
white="\e[1;37m"
# ==============================================
# Dark colors
# ==============================================
blackDark="\e[0;30m"
blueDark="\e[0;34m"
greenDark="\e[0;32m"
cyanDark="\e[0;36m"
redDark="\e[0;31m"
purpleDark="\e[0;35m"
yellowDark="\e[0;33m"
whiteDark="\e[0;37m"
# ==============================================
# Background colors
# ==============================================
blackBack=$(setterm -background black)
blueBack=$(setterm -background blue)
greenBack=$(setterm -background green)
cyanBack=$(setterm -background cyan)
redBack=$(setterm -background red)
yellowBack=$(setterm -background yellow)
whiteBack=$(setterm -background white)
# ==============================================
# Installing dependencies
# ==============================================
function installing() {
echo -e ${red}"
[${green}*${red}] ${green}Installing dependencies..."${white}
yes|pkg update && pkg upgrade
yes|pkg install git
yes|pkg install curl
yes|pkg install wget
yes|pkg install fish
yes|pkg install ruby
gem install lolcat
yes|pkg install openssl-tool
yes|pkg install termux-tools
yes|pkg install which
}
# ==============================================
# Setting the Termux Style
# ==============================================
function style() {
chmod 777 *.sh
rm -rf ~/.termux > /dev/null 2>&1
cp -r ${style}/.termux ~
mv ${etc}/bash.bashrc ${etc}/bash.bashrc.backup > /dev/null 2>&1
mv ${etc}/motd ${etc}/motd.backup > /dev/null 2>&1
cp ${style}/bash.bashrc ${etc}
if [ ! -d ${opt} ]; then
mkdir -p ${opt}
fi
cd ${execute}
chmod 777 *
cd ${intools}
chmod 777 *
cd ${rmtools}
chmod 777 *
cd ${settings}/spyexec
chmod 777 *
cd ${spy}
cp ${settings}/spyexec/* ${bin}
chmod 777 ${bin}/spy
echo -e ${blue}"
[${white}√${blue}] ${white}Installation Finished, Please Execute:${black}
omf install separation
omf install bobthefish
"${white}
chsh -s bash
curl https://raw.githubusercontent.com/oh-my-fish/oh-my-fish/master/bin/install | fish
}
# ==============================================
# Declaring functions
# ==============================================
installing
style
# ==============================================
# Created by: @Darkmux - WHITE HACKS ©2022
# ==============================================