Expand description
ยง๐ RPING
rping 0.1.6
โโโโโโโโโโโ โโโโโโโโโโโ โโโโโโโโโโโ โโ โ โโโโโโโโโโโ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโ
โโโโโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโ โโโโโ โโโโโโโโโโโโโโโ
โโโ โโโโโโ โโโ โโโ โโโโโโ โโโโโโ
โโโโโโโโโโโโโโโโโโโโโโโโโโ โโโ โโโ โโโ โโโโโโ โโโโโโโโ
โโโโโโโโโโโโโโโโโโโโโโโโโโ โโโ โโโ โโโ โโโโโโโโโโโโโโโโ
โโโโโโโโโโโโ โโโโโโโโโโโโ โโโ โโโ โโโ โโโโโโ โโโโโโโโโ
โโโ โโโ โโโ โโโ โโโ โโโโโโโโโ โโโ
โโโ โโโ โโโ โโโโโโโโโโโ โโโ โโโโโโโโโโโโโโโโโโ
โโโ โโโโโโ โโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโ
โ โ โ โโโโโโโโโโโ โ โโ โโโโโโโโโโโ
๐ RPING CLI
============
A powerful command-line tool for executing TCP flags flooding attacks.
Customize attacks with options like packet length, number of threads,
and TCP flags for efficient network disruption.
๐ rping: A robust, fully anonymous, Rust-based CLI for any TCP flag flooding attacks.
ยง๐ Table of Contents
ยง๐ Installation
To install rping
, use the following Cargo command:
cargo install --locked --all-features rping
Once installed, run the following command:
sudo setcap cap_net_raw+ep ~/.cargo/bin/rping
This will set the CAP_NET_RAW
capability and make rping
run with elevated privileges.
ยงโจ Features
- Perform any TCP flag, e.g. syn, flooding attacks with customizable parameters.
- Specify the length of tcp packets, target IP, target port, number of packets and the attack duration.
- Multi-threaded execution for increased efficiency.
- Both IP and TCP packets are carefully crafted to simulate a fully anonymous any flag TCP DoS Flood.
ยง๐ Usage
Learn how to use rping
and explore its features with the following examples:
ยงPerform a SYN flooding attack:
rping -t 127.0.0.1 -p 80
ยงSpecify the packet length:
rping -s 150 -t 127.0.0.1 -p 443
ยงUse multiple threads:
rping -s 1500 -t 127.0.0.1 -p 8080 -h 16
ยงSpecify the TCP flag (e.g., ack, urg):
rping -f ack -t 127.0.0.1 -p 8080
ยงSet the attack duration in minutes:
rping -d 5 -t 127.0.0.1 -p 80
ยงSet the number of packets per thread:
rping -n 10000 -t 127.0.0.1 -p 8080
ยงSet the network interface:
rping -n 10000 -t 127.0.0.1 -p 8080 -i eth0
ยง๐จ Options
Option | Default Value | Description |
---|---|---|
-s, --size | 1500 | Set the length of SYN packets. |
-t, --target | Specify the target IP address to flood. | |
-p, --port | 80 | Set the target port number for the attack. |
-h, --threads | 8 | Set the number of threads for the attack. |
-f, --flag | syn | Specify the TCP flag (e.g., syn, ack, urgโฆ). |
-d, --duration | 1 | Set the attack duration in minutes. |
-n, --number | 2^63 | Set the number of packets per thread. |
-i, --iface | eth0 | Set the network interface to bind the socket to. |
[!NOTE] Configuring the network interface is restricted to iOS, macOS, tvOS, or watchOS due to limitations in
socket2
.
ยง๐ค Contributing
Contributions and feedback are welcome! If youโd like to contribute, report an issue, or suggest an enhancement, please engage with the project on GitHub. Your contributions help improve this CLI tool for the community.
ยง๐ License
This project is licensed under the MIT License.