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

# NFS 服务 - site/\_backups

使用以下命令列出已导出的共享： `showmount`:

```bash
showmount -e 10.10.10.180
```

该 `/site_backups` 该导出对所有人可见。

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

要访问此导出，请创建一个目录并将其挂载到本地：

```bash
mkdir /mnt/mounted_files

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

<figure><img src="/files/06e399ff7fb4330de4f99dc776528029737f1337" alt=""><figcaption></figcaption></figure>

使用 `tree` 以列出已挂载的目录结构：

```
tree -L 2
```

挂载中包含一个 `.config` 配置目录和一个 `sdf` CMS 在 80 端口上使用的 Umbraco 数据库中的文件。

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

该 `.conf` 文件没有什么有趣的内容，而且 `umbraco.sdf` 是一个二进制文件。

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

使用 `strings` 为了提取可读字符并将其保存以供详细分析：

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

输出揭示了密码 `admin` 和用户 `smith`.

<figure><img src="/files/3f42a3313e4148eb85d77fb87ab793af0ead8230" 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/zh/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.
