> For the complete documentation index, see [llms.txt](https://docs.zuthaka.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.zuthaka.com/getting-started.md).

# Getting Started

Zuthaka is composed of a front-end that exposes a UI for the API of process manager, file manager, shell post-exploitation modules and general C2 handling, and a back-end, in charge of handling the consistency and availability issues of the C2s instantiated in Zuthaka. Also deployed is [Redis](https://redis.io/) as a message broker to handle asynchronously every element in the Agent's UI and an [Nginx](https://www.nginx.com/) server.

### Prerequisites

The installation of a working [Docker](https://www.docker.com/) instance is necessary for the automatic deployment of the essential infrastructure (Zuthaka's frontend and backend, Nginx, Redis). All the desired C2s that need to be handled should be deployed in parallel.

### Docker Installation

To build the full Zuthaka project, first download dependencies.

```bash
 git clone https://github.com/pucara/zuthaka
```

To start the project with the corresponding handler classes, first build the image by running

```bash
docker build .
```

To start the project with the corresponding services, the docker-compose file can be utilized.

```bash
docker-compose up
```

### Credentials

After you have started the server, you can access the Zuthaka interface through <http://localhost:80/> in which the default credentials will be \
**User**: pucara \
**Password**: zuthaka\_project

{% hint style="info" %}
You should change the default password
{% endhint %}

You can update the default password by clicking on the upper right corner.

![](/files/-MgSuUexgc-SWC5-UUMi)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.zuthaka.com/getting-started.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
