Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions source/ddos
Original file line number Diff line number Diff line change
Expand Up @@ -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 '======================================='
Expand All @@ -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;;
Expand Down