> 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/active-directory/credentials/sam-database-dump.md).

# SAM 数据库提取

### 什么是 SAM？

该 **SAM**，或 **安全账户管理器**，是一个本地 Windows 数据库，包含该计算机的本地账户。

它包含与以下内容相关的信息：

* 本地用户；
* 本地组；
* 本地账户哈希。

### 需要访问权限

要访问 SAM，需要提升的权限。

在实验中，我们使用：

```bash
privilege::debug

token::elevate
```

目标是进入更高权限的上下文，以访问本地机密。

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

### SAM 转储

在实验中：

```bash
lsadump::sam
```

此命令允许你从本地 SAM 数据库中提取信息。

<figure><img src="/files/d89fff9e7aff4b5e19ac5143fd4aa1f20d05d73e" 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/active-directory/credentials/sam-database-dump.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.
