diff --git a/source/ddos b/source/ddos index aa3a127..4f14ada 100644 --- a/source/ddos +++ b/source/ddos @@ -16,6 +16,7 @@ show_help() { echo 'Command : attack,help,upgrade,ping' echo 'attack = ddos attack (target)' echo 'upgrade = ddos upgrade' + echo 'brutal = ddos brutal [ip target]' echo 'ping = ddos ping (target)' echo 'Make sure you have installed python2' echo '=======================================' @@ -28,6 +29,7 @@ shift 1 case "$CMD" in attack*) cd /data/data/com.termux/files/usr/bin && python2 ddoser $@;; + brutal*) echo This feature is in work,support us;; help*) show_help;; ping*) ping $@;; upgrade*) cd $HOME && mkdir upgrade && cd upgrade && git clone https://github.com/RioBithub/ddos-termux && cd ddos-termux && cd source && cp * /data/data/com.termux/files/usr/bin && cd /data/data/com.termux/files/usr/bin && chmod 777 * && echo '------' && echo success upgrade ddos-termux && echo '------' && cd $HOME && rm -rf upgrade;;