> 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/ar/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/1cbc6f8dfdf826932216e96d5ed01e7f21c267e2" 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/5284fc97d12f1982c02f315ee608a570da49eb22" alt=""><figcaption></figcaption></figure>

استخدم `tree` لسرد بنية الدليل المركب:

```
tree -L 2
```

يحتوي التركيب على `.config` دليل إعدادات و `sdf` ملف من قاعدة بيانات Umbraco المستخدمة بواسطة نظام إدارة المحتوى على المنفذ 80.

<figure><img src="/files/81705c611474f00dc9cfce3953e2499f88711b95" alt=""><figcaption></figcaption></figure>

الـ `.conf` لا يحتوي الملف على أي شيء مثير للاهتمام، و `umbraco.sdf` هو ملف ثنائي.

<figure><img src="/files/8ed60d5934f58a61c66ed395ed694fd797a0f1d3" alt=""><figcaption></figcaption></figure>

استخدم `strings` لاستخراج المحارف المقروءة وحفظها لتحليل مفصّل:

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

تُظهر المخرجات كلمة المرور `admin` والمستخدم `smith`.

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