-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.sh
40 lines (39 loc) · 811 Bytes
/
install.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
#!/usr/bin/bash
# This code write by Mr.nope
# DDos-Attack v2.0.0
if [[ "$(id -u)" -ne 0 ]];
then
echo "
Please, Run This programm as Root!
"
exit 1
fi
function main() {
printf '\033]2;Installing\a'
clear
echo ""
echo "Installing... "
chmod +x DDos.py
sleep 1
echo " ____ ____ __ ____ __ ____ ____ __ ___ __ _ "
echo " ( \( \ / \ / ___) / _\(_ _)(_ _)/ _\ / __)( / )"
echo " ) D ( ) D (( O )\___ \ / \ )( )( / \( (__ ) ( "
echo " (____/(____/ \__/ (____/ \_/\_/(__) (__)\_/\_/ \___)(__\_)"
echo ""
echo " Version: 2.0.0"
echo ""
sleep 1
apt install python3
apt install python3-pip
pip3 install --upgrade pip
chmod +x uninstall.sh
echo "
Finish...!
"
echo "
usage:
python DDos.py
"
exit 1
}
main