> 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/sql-injection/sql-injection-login-bypass.md).

# SQL 注入登录绕过

### 允许绕过登录的 SQL 注入漏洞

* **背景 / 漏洞：** 易受 SQL 注入攻击的连接函数。典型的服务器端查询：/ `SELECT * FROM users WHERE username = 'administrator'--' AND password = ''`
* **实验目标：** 以一名 `administrator` 用户身份登录，而无需知道密码。
* **易受攻击的参数：** `username` 字段（或 `密码` 根据实现）。
* **概念验证（提供的 payload）：**

```sql
' or 1=1-- -
```

* 简要解释：注入一个始终为真的条件（`1=1`)，从而使密码验证失效，导致以返回的第一条记录进行身份验证（通常是 `administrator`).
* **用法示例：** 发送 `username` = `' or 1=1-- -` （并保留/输入任意密码）→ WHERE 子句对所有行都为真，且会话将以某个用户身份打开（通常是管理员）。
* **预期结果：** 无需有效密码即可成功以管理员身份登录。
* **影响：** 特权账户完全失陷、访问权限提升、敏感数据泄露/篡改以及应用控制权被获取。


---

# 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/sql-injection/sql-injection-login-bypass.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.
