> 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/web/path-traversal/path-traversal-with-start-of-path-validation.md).

# 带起始路径验证的路径遍历

### 文件路径遍历，路径开头验证

应用程序通过查询参数传输完整文件路径，并且只检查该路径 **开头** 与预期文件夹匹配。此验证不足：在允许的前缀后追加内容，便可访问任意文件。

#### **分析**

filename 参数直接包含绝对路径，例如：

```bash
/var/www/images
```

<figure><img src="/files/79f5eea305095879a046dcb02400afe61936eb50" alt=""><figcaption></figcaption></figure>

如果尝试经典的目录穿越：

```bash
../../../../../etc/passwd
```

应用程序会阻止它。

但如果我们提供 **预期路径**，后跟 `../` 用于跳出的序列，验证就无法检测到越界：

由于路径以 `/var/www/images/`开头，检查通过，但最终解析实际上指向 `/etc/passwd`.

```bash
/var/www/images/../../../../../etc/passwd
```

<figure><img src="/files/f9465c1a6440177a4ac63a2be4212e65c06d18ad" 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/web/path-traversal/path-traversal-with-start-of-path-validation.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.
