Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/maxonchickdev/distributed-botnet
- Owner: maxonchickdev
- License: mit
- Created: 2024-02-15T06:29:29.000Z (12 months ago)
- Default Branch: polinom
- Last Pushed: 2024-05-14T12:08:52.000Z (9 months ago)
- Last Synced: 2024-08-17T19:36:56.056Z (6 months ago)
- Topics: bun, cmake, cpp, cpr, crowcpp, docker, docker-compose, react, vite
- Language: C++
- Homepage:
- Size: 10.2 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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_ :
```