-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBotnet.sh
47 lines (42 loc) · 1.43 KB
/
Botnet.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
#!/usr/bin/env bash
install() {
cd tg
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
sudo apt-get install g++-4.7 -y c++-4.7 -y
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install libreadline-dev -y libconfig-dev -y libssl-dev -y lua5.2 -y liblua5.2-dev -y lua-socket -y lua-sec -y lua-expat -y libevent-dev -y make unzip git redis-server autoconf g++ -y libjansson-dev -y libpython-dev -y expat libexpat1-dev -y
sudo apt-get install screen -y
sudo apt-get install tmux -y
sudo apt-get install libstdc++6 -y
sudo apt-get install lua-lgi -y
sudo apt-get install libnotify-dev -y
sudo service redis-server restart
wget https://valtman.name/files/telegram-cli-1222
mv telegram-cli-1222 tgcli
chmod +x tgcli
cd ..
chmod +x bot
chmod +x tg
}
if [ "$1" = "install" ]; then
install
else
if [ ! -f ./tg/tgcli ]; then
echo "tg not found"
echo "Run $0 install"
exit 1
fi
if [ "$1" = "-p" ]; then
echo -e "\033[38;5;208m"
echo -e " >> Bot-net Source By Sajad Aliraqe - @Al_Srai "
echo -e " \033[0;00m"
echo -e "\e[36m"
./tg/tgcli -s ./bot/bot.lua -p $2
fi
echo -e "\033[38;5;208m"
echo -e " >> Bot-net Source By Sajad Aliraqe - @Al_Srai "
echo -e " \033[0;00m"
echo -e "\e[36m"
./tg/tgcli -s ./bot/bot.lua -l 1 -E $@
fi