Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/maxonchickdev/distributed-botnet

Botnet for testing productivity on server-side applications
https://github.com/maxonchickdev/distributed-botnet

bun cmake cpp cpr crowcpp docker docker-compose react vite

Last synced: 1 day ago
JSON representation

Botnet for testing productivity on server-side applications

Awesome Lists containing this project

README

        

# Distributed Botnet

## Locally setup

#### To run ui
```
cd ui/
curl -fsSL https://bun.sh/install | bash

# Manually add the directory to ~/.zshrc (or similar):
export BUN_INSTALL="$HOME/.bun"
export PATH="$BUN_INSTALL/bin:$PATH"

bun install
bun run dev

*open http://localhost:5173/
```

#### To run master
```
cd master/
./compile.sh
./bin/master

*open http://localhost:8080/
```

#### To run bot
```
cd bot/
./compile.sh
./bin/bot
```

## Setup with docker

#### Up ui
```
docker run -p 5173:5173 :
```

#### Up master
```
docker run --net=bridge -p 8080:8080 --name master :
```

#### Up bot
```
docker run --net=host --name bot_ :
```