bash
$ cargo install anevicon
``` anevicon 2.1.0 Temirkhan Myrzamadi gymmasssorla@gmail.com An UDP-based server stress-testing tool, written in Rust.
USAGE:
anevicon [FLAGS] [OPTIONS] --receiver
FLAGS: -d, --debug Enable the debugging mode -h, --help Prints help information -V, --version Prints version information
OPTIONS:
--display-periodicity
-l, --packet-length <POSITIVE-INTEGER>
Repeatedly send a random-generated packet with a specified bytes
length. The default is 32768.
-p, --packets-count <POSITIVE-INTEGER>
A count of packets for sending. When this limit is reached, then the
program will exit. [default: 18446744073709551615]
-r, --receiver <SOCKET-ADDRESS>
A receiver of generated traffic, specified as an IP-address and a
port number, separated by a colon.
-f, --send-file <FILENAME>
Repeatedly send a specified file content.
-m, --send-message <STRING>
Repeatedly send a specified UTF-8 encoded text message.
--send-periodicity <TIME-SPAN>
A periodicity of sending packets. This option can be used to
decrease test intensity. [default: 0secs]
--send-timeout <TIME-SPAN>
A timeout of sending every single packet. If a timeout is reached,
an error will be printed. [default: 10secs]
-s, --sender <SOCKET-ADDRESS>
A sender of generated traffic, specified as an IP-address and a port
number, separated by a colon. [default: 0.0.0.0:0]
--test-duration <TIME-SPAN>
A whole test duration. When this limit is reached, then the program
will exit. [default: 64years 64hours 64secs]
-n, --test-name <STRING>
A name of a future test. [default: Unnamed]
-w, --wait <TIME-SPAN>
A waiting time span before a test execution used to prevent a launch
of an erroneous (unwanted) test. [default: 5secs]
For more information see https://github.com/Gymmasssorla/anevicon. ```
All you need is to provide the testing server address, which consists of an IP address and a port number, separated by the colon character. By default, all sending sockets will have your local address:
```bash
$ anevicon --receiver 93.184.216.34:80 ```
Using the IP spoofing technique, hackers can protect their bandwidth from server response messages and hide their real IP address. You can imitate it via the --sender
command-line option, as described below:
```bash
$ anevicon --receiver 93.184.216.34:80 --sender 93.184.216.34:80 ```
Note that the command above might not work on your system due to the security reasons. To make your test deterministic, there are two end conditions called --test-duration
and --packets-count
(a test duration and a packets count, respectively):
```bash
$ anevicon --receiver 93.184.216.34:80 --test-duration 3min --packets-count 7000 ```
Note that the test below will end when, and only when one of two specified end conditions become true. And what is more, you can specify a global packet length in bytes:
```bash
$ anevicon --receiver 93.184.216.34:80 --packet-length 4092 ```
By default, Anevicon will generate a random packet with a specified size. In some kinds of UDP-based tests, packet content makes sense, and this is how you can specify it using the --send-file
or --send-message
options:
```bash
$ anevicon --receiver 93.184.216.34:80 --send-file message.txt
$ anevicon --receiver 93.184.216.34:80 --send-message "How do you do?" ```
Wait 7 seconds, and then start to test using the Axl Rose
name, displaying summaries after every 400 packets, wait 270 macroseconds between sending two packets, and exit with an error if time to send a packet is longer than 200 milliseconds:
```bash
$ anevicon --receiver 93.184.216.34:80 --wait 7s --display-periodicity 400 --send-periodicity 270us --send-timeout 200ms --test-name "Axl Rose" ```
First, you need to link the library with your executable (or another library) by putting anevicon_core
to the dependencies
section in your Cargo.toml
like this:
toml
[dependencies]
anevicon_core = "*"
Next, just copy this code into your main
function and launch the compiled program, which simply sends one thousand empty packets to the example.com
site:
```rust
use aneviconcore::summary::TestSummary;
use aneviconcore::testing::send;
// Setup the socket connected to the example.com domain let socket = std::net::UdpSocket::bind("0.0.0.0:0").unwrap(); socket.connect("93.184.216.34:80").unwrap();
let packet = vec![0; 32768]; let mut summary = TestSummary::default();
// Execute a test that will send one thousand packets // each containing 32768 bytes. for _ in 0..1000 { if let Err(error) = send(&socket, &packet, &mut summary) { panic!("{}", error); } }
println!( "The total seconds passed: {}", summary.timepassed().assecs() ); ```
All the abstractions are well-documented at this moment, see the docs.rs main page.
The goal of Anevicon is to produce the maximum possible (for the attacking system) load on the specified target address. Thereby, this DOES NOT MEAN that Anevicon will break ABSOLUTELY ANY SERVER while running on your computer.
Despite the fact that Anevicon is heavily tested both automatically and manually, does not mean that the author is responsible for any bug in his work. The program comes with ABSOLUTELY NO WARRANTY, see the license disclaimer.
Temirkhan Myrzamadi <gymmasssorla@gmail.com> (the author)