-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathvcc-setup.sh
78 lines (66 loc) · 2.16 KB
/
vcc-setup.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
#!/bin/bash
mkdir /opt/vss &> /dev/null
cp anim/VSS_Icon.png /opt/vss &> /dev/null
(cat dapp/vss.desktop | sed "s|Path=|Path=$PWD|g") > ~/Desktop/vss.desktop
chmod +x ~/Desktop/vss.desktop &> /dev/null
echo "WARNING !!! This Tool's Malwares Need A Professional Linux User To Manage it remotely, Or Malware will be noisy on the Network"
echo "Info : Nothing is Automated, Every thing is Manual"
if [ "$PREFIX" == '' ];then
APD='apt'
PREFIX="/"
else
APD='pkg'
echo "Warning: zsession will not work on termux or any envirenment without GUI, but in the next version will be available, (Need GUI Access)"
fi
if [ ! -f "$PREFIX/bin/pip3" ];then
$APD install python3-pip &> /dev/null
fi
if [ ! -f "$PREFIX/bin/python3" ];then
$APD install python3 &> /dev/null
fi
echo "|----> [+] Starting Setup.... ($APD) "
chmod +x console/*/*/vcs.*
chmod +x scripts/*
if [ ! -f $PREFIX'/bin/gcc' ];then
echo "| Installing gcc compiler... (Please be Patient)"
$APD install clang -y &> /dev/null
fi
if [ ! -f $PREFIX'/bin/nc' ];then
echo "| Installing ncat... (Please be Patient)"
$APD install netcat -y &> /dev/null
fi
if [ ! -f $PREFIX"/bin/xterm" ]; then
$APD install xterm -y &> /dev/null
fi
if [ ! -f $PREFIX"/bin/morse" ]; then
echo "| installing seffect (Morse)"
$APD install morse -y &> /dev/null
fi
if [ ! -f $PREFIX"/bin/python3" ]; then
echo "| installing Python3 "
$APD install python -y &> /dev/null
fi
if [ ! -f $PREFIX"/bin/pip3" ]; then
echo "| installing Pip3 "
$APD install python3-pip -y &> /dev/null
fi
pip3 install pibyone &> /dev/null
echo "|----> [+] Okay"
g++ alerts/alert.cpp -o alerts/alert &> /dev/null
g++ alerts/why.cpp -o alerts/why &> /dev/null
alerts/why
alerts/alert
if [ -f .term.vcc ]; then
echo "Before, You agree to the term of usage attached here: "
printf "Continue [Y/n] "
read ans
if [ "$ans" == "Y" ] || [ "$ans" == "y" ]; then
echo "Done, Good luck with testing"
rm .term.vcc
echo "Please Subscribe to Vairous7x on youtube Before starting (:"
(firefox https://www.youtube.com/c/Vairous7x/videos &) &> /dev/null
sleep 5
else
echo "Aborted"
fi
fi