Skip to content

Simple UDP Flood Attack based on C++ for Linux and Android (Termux)

License

Notifications You must be signed in to change notification settings

blueskychan-dev/UDP-Packets-Overload

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

UDP Packet Geneators

UDP Flood program for LINUX PLATFORM!

Overview

image image

How did work?

This program will send too many packet to server.

WARNING

This Program is for experiment or down own device I DIDN'T MAKE IT FOR ATTACK GAME SERVER!

How to install

  • For Linux and Android (Termux)
  • INSTALL WITH WGET (x86_64, AARCH64, ARMv7l ONLY)
wget https://github.com/RandomLadyBoyGuy/UDP-Packets-Overload/releases/download/1.0.1/udpflood-$(uname -m)-$(uname -o | tr / _ ) 
chmod +x udpflood-$(uname -m)-$(uname -o | tr / _ ) 
./udpflood-$(uname -m)-$(uname -o | tr / _ ) 
  • For Windows 10 Use WSL 1 or 2 (You can use linux install script)
  • For Windows 8.1 and older You can use virtual machine to run this like vmware, virtualbox and install linux on it!

How to building (for custom build, other arch, other platform)

Due to we cannot prebuild for all platform or make prebuild stable and support for all device, we recommended YOU build with YOURSELF!

  • requirements: glibc clang pstreams
  • for cross build, please install build toolchin for aarch64 too.
  • Build with makefile
// cross build (x86_64 ONLY)
make cross
// build to own cpu arch
make ownarch
// clean build
make clean
// run program after build
make run

NOTICE: After Building your file will been located at ./out and file format will be like udpflood-(cpuarch)-(platform) example: udpflood-x86_64-GNU_Linux or udpflood-aarch64-Android