An open API service indexing awesome lists of open source software.

https://github.com/0xricksanchez/fuzz_server_stub

Async (fuzz) server that handles incoming connections and forwards payloads to all connected clients
https://github.com/0xricksanchez/fuzz_server_stub

async fuzz rust server

Last synced: about 1 year ago
JSON representation

Async (fuzz) server that handles incoming connections and forwards payloads to all connected clients

Awesome Lists containing this project

README

          

## Readme

Quick PoC of a fuzzing server stub written in Rust.
The server opens a TCP connection on `localhost:5555` and asynchronously handles incoming connections.
The incoming client payloads are currently expected to be in a sane form of:

```
[protocol_version:u8][data_length:u16][data:]
```

The server does some basic (de-)serialization of each incoming packet before distributing valid packets to all connected clients, except the one from which the packet was received

### Demo

![img/demo.png](img/demo.png)