> 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/cms/daloradius-cms-exploitation.md).

# DaloRADIUS

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

**使用 Gobuster 进行目录扫描：**/ 枚举 Web 目录：

```bash
gobuster dir -u http://underpass.htb/daloradius/ -w /usr/share/SecLists/Discovery/Web-Content/directory-list-2.3-medium.txt -t 100
```

结果：该 **`/app`** 目录被发现。

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

**子目录枚举：**<br>

枚举 **`/app`** 显示：

```bash
gobuster dir -u http://underpass.htb/daloradius/app/ -w /usr/share/SecLists/Discovery/Web-Content/directory-list-2.3-medium.txt -t 100
```

<figure><img src="/files/3fcc19b572901292facb301a5dc5ed3480aa3057" alt=""><figcaption></figcaption></figure>

* 一个 **用户登录** 页面。

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

* 一个 **操作员登录** 页面。

<figure><img src="/files/3652c8b74d11fb559e129eadc3b6c5ed3d18eaf3" alt=""><figcaption></figcaption></figure>

**使用默认的 DaloRADIUS 凭据访问：**/ 测试默认的 RADIUS 凭据：

* **用户名：** `administrator`
* **密码：** `radius`/ 这些凭据可用于操作员面板。

<figure><img src="/files/66721ce08c35fd41cb83aa2c7f4adf858cbbb7cd" alt=""><figcaption></figcaption></figure>

### **敏感信息提取：**

在 **管理** 部分，恢复一个 **username** 和 **密码哈希**:

* **用户：** `svcMosh`
* **哈希：** `412DD4759978ACFCC81DEAB01B382403`

<figure><img src="/files/0d729bc1dcd68e57fa5b251f2d3b7f15491763dd" 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/cms/daloradius-cms-exploitation.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.
