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

# NFS-Dienst - site/\_backups

Exportierte Freigaben auflisten mit `showmount`:

```bash
showmount -e 10.10.10.180
```

Das `/site_backups` Der Export ist für alle sichtbar.

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

Um auf diesen Export zuzugreifen, erstellen Sie ein Verzeichnis und hängen Sie es lokal ein:

```bash
mkdir /mnt/mounted_files

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

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

Verwenden Sie `tree` um die eingehängte Verzeichnisstruktur aufzulisten:

```
tree -L 2
```

Das eingehängte Verzeichnis enthält ein `.config` Konfigurationsverzeichnis und eine `sdf` Datei aus der Umbraco-Datenbank, die vom CMS auf Port 80 verwendet wird.

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

Das `.conf` Datei enthält nichts Interessantes, und `umbraco.sdf` ist eine Binärdatei.

<figure><img src="/files/4932a6db5fced62acdbea4521add8a8e65ec5b07" alt=""><figcaption></figcaption></figure>

Verwenden Sie `strings` um lesbare Zeichen zu extrahieren und sie zur detaillierten Analyse zu speichern:

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

Die Ausgabe offenbart das Passwort `admin` und den Benutzer `smith`.

<figure><img src="/files/b36427801180515010a6137d4b894e5e81a05702" 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/de/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.
