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

# Bypass de Login por Injeção de SQL

### Vulnerabilidade de Injeção de SQL que Permite Bypass de Login

* **Contexto / Vulnerabilidade:** Função de conexão vulnerável à injeção de SQL. Consulta típica no lado do servidor:/ `SELECT * FROM users WHERE username = 'administrator'--' AND password = ''`
* **Objetivo do laboratório:** Faça login como um `administrador` usuário sem saber a senha.
* **Parâmetro vulnerável:** `nome de usuário` campo (ou `senha` de acordo com a implementação).
* **Prova de conceito (payload fornecido):**

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

* Interpretação curta: injeta uma condição sempre verdadeira (`1=1`) que neutraliza a verificação de senha, resultando em autenticação como o primeiro registro retornado (geralmente `administrador`).
* **Exemplo de uso:** envie `nome de usuário` = `' or 1=1-- -` (e deixe/coloque qualquer senha) → a cláusula WHERE se torna verdadeira para todas as linhas e a sessão é aberta como um usuário (geralmente administrador).
* **Resultado esperado:** Login bem-sucedido como administrador sem senha válida.
* **Impacto:** comprometimento total de uma conta privilegiada, escalada de privilégios, exposição/alteração de dados sensíveis e controle da aplicação.


---

# 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/pt-br/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.
