2025-08-22 10:48:00 +02:00
|
|
|
# Installation Guide
|
|
|
|
|
|
|
|
|
|
1. Clone the Conquest repository
|
|
|
|
|
```
|
|
|
|
|
git clone https://github.com/jakobfriedl/conquest
|
|
|
|
|
cd conquest
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
2. Install Nim
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
curl https://nim-lang.org/choosenim/init.sh -sSf | sh
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
3. Install Nimble dependencies
|
|
|
|
|
```
|
|
|
|
|
nimble install -d
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
4. Build conquest binaries
|
|
|
|
|
```
|
|
|
|
|
nimble server
|
2025-10-02 13:56:48 +02:00
|
|
|
nimble client
|
2025-08-22 10:48:00 +02:00
|
|
|
```
|
|
|
|
|
|
2025-10-02 13:56:48 +02:00
|
|
|
5. Start the Conquest server with a C2 Profile and connect to it with the client
|
|
|
|
|
```bash
|
2025-08-22 10:48:00 +02:00
|
|
|
./bin/server -p ./data/profile.toml
|
2025-10-02 13:56:48 +02:00
|
|
|
./bin/client -i localhost -p 35753
|
2025-08-22 10:48:00 +02:00
|
|
|
```
|
|
|
|
|
|