> 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/xss/stored-xss-in-onclick-with-full-encoding.md).

# XSS مخزن في onclick مع ترميز كامل

### ثغرة XSS مخزنة داخل حدث onclick مع ترميز الأقواس الزاوية وعلامات الاقتباس المزدوجة بترميز HTML، وإفلات علامات الاقتباس المفردة والشرطة المائلة العكسية

تحتوي هذه المختبر على ثغرة XSS مخزنة في ميزة التعليقات: تُعاد استخدام قيمة أحد الحقول (الاسم/المؤلف/الموقع الإلكتروني) في `onclick` الخاصية ومُرمَّزة — `<` و `>` يتم ترميز الأقواس الزاوية وعلامات الاقتباس المزدوجة بتنسيق HTML، بينما يتم إفلات علامات الاقتباس المفردة والشرطات المائلة العكسية.

الهدف: إرسال تعليق لتنفيذ `alert()` عند النقر على اسم المؤلف.

<figure><img src="/files/0c648e10312860667d1efaefd16c81132e3100ec" alt=""><figcaption></figcaption></figure>

في `الموقع الإلكتروني` المنطقة التي تحقن الصفحة فيها شيئًا مثل:

```javascript
onclick="var tracker={track(){}};tracker.track('http://test.com');"
```

تُمثَّل علامات الاقتباس المفردة بواسطة `&apos;` الكيان. مثال:

```javascript
&apos;
```

* عندما `HTTP://hack.com&apos;test` يتم إرسال `&apos;` الصفحة على أنها علامة اقتباس مفردة (لذا تكون علامة الاقتباس موجودة على جانب DOM).

```javascript
<p>إنه يوم رائع </p>
```

<figure><img src="/files/d9ec5a4d2d0318f979022455a4c80a4b96c96c3f" alt=""><figcaption></figcaption></figure>

* استفد من حقيقة أن `&apos;` يصبح علامة اقتباس مفردة لكسر سلسلة JavaScript وحقن عملية حسابية/دمج تستدعي `alert()`.

<pre class="language-javascript"><code class="lang-javascript"><strong>HTTP://hack.com&#x26;apos;test
</strong></code></pre>

* عندما `HTTP://hack.com&apos;test` يتم إرسال `&apos;` الصفحة على أنها علامة اقتباس مفردة (لذا تكون علامة الاقتباس موجودة على جانب DOM).

<figure><img src="/files/e462798c4710a4c37e26e4054416ec6cfe261c7c" alt=""><figcaption></figcaption></figure>

* استفد من حقيقة أن `&apos;` يصبح علامة اقتباس مفردة لكسر سلسلة JavaScript وحقن عملية حسابية/دمج تستدعي `alert()`.

```javascript
http://hack.com&apos; + alert(0) + &apos;
```

<figure><img src="/files/de78e3d04274d3cbab1c387e5f5efdf724d5305b" alt=""><figcaption></figcaption></figure>

<figure><img src="/files/ed9c23794ce78dccfe91fc7bc0a3dcfb32300467" alt=""><figcaption></figcaption></figure>


---

# 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/xss/stored-xss-in-onclick-with-full-encoding.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.
