> 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-dom-xss.md).

# XSS DOM مخزن

### ثغرة XSS المخزنة في DOM

يوضح هذا المختبر ثغرة في DOM مخزنة في ميزة تعليقات المدونة. ولحل المختبر، استخدم هذه الثغرة لتشغيل `alert()` الدالة.

إذا أدخلت الحمولة الكلاسيكية `البرنامج النصي` في منطقة التعليق:

```javascript
<script>alert(0)</script>
```

نلاحظ أن الموقع يحذف جزءًا من التعليق.

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

<figure><img src="/files/4deddd3026dc34616da833b9bf19cfaf419a1d3c" alt=""><figcaption></figcaption></figure>

الدالة هي:

```javascript
function loadComments(postCommentPath) {
    let xhr = new XMLHttpRequest();
    xhr.onreadystatechange = function() {
        if (this.readyState == 4 && this.status == 200) {
            let comments = JSON.parse(this.responseText);
            displayComments(comments);
        }
    };
    xhr.open("GET", postCommentPath + window.location.search);
    xhr.send();

    function escapeHTML(html) {
        return html.replace('<', '&lt;').replace('>', '&gt;');
    }

    function displayComments(comments) {
        let userComments = document.getElementById("user-comments");

        for (let i = 0; i < comments.length; ++i)
        {
            comment = comments[i];
            let commentSection = document.createElement("section");
            commentSection.setAttribute("class", "comment");

            let firstPElement = document.createElement("p");

            let avatarImgElement = document.createElement("img");
            avatarImgElement.setAttribute("class", "avatar");
            avatarImgElement.setAttribute("src", comment.avatar ? escapeHTML(comment.avatar) : "/resources/images/avatarDefault.svg");

            if (comment.author) {
                if (comment.website) {
                    let websiteElement = document.createElement("a");
                    websiteElement.setAttribute("id", "author");
                    websiteElement.setAttribute("href", comment.website);
                    firstPElement.appendChild(websiteElement)
                }

                let newInnerHtml = firstPElement.innerHTML + escapeHTML(comment.author)
                firstPElement.innerHTML = newInnerHtml
            }

            if (comment.date) {
                let dateObj = new Date(comment.date)
                let month = '' + (dateObj.getMonth() + 1);
                let day = '' + dateObj.getDate();
                let year = dateObj.getFullYear();

                if (month.length < 2)
                    month = '0' + month;
                if (day.length < 2)
                    day = '0' + day;

                dateStr = [day, month, year].join('-');

                let newInnerHtml = firstPElement.innerHTML + " | " + dateStr
                firstPElement.innerHTML = newInnerHtml
            }

            firstPElement.appendChild(avatarImgElement);

            commentSection.appendChild(firstPElement);

            if (comment.body) {
                let commentBodyPElement = document.createElement("p");
                commentBodyPElement.innerHTML = escapeHTML(comment.body);

                commentSection.appendChild(commentBodyPElement);
            }
            commentSection.appendChild(document.createElement("p"));

            userComments.appendChild(commentSection);
        }
    }
};
```

* الـ `escapeHTML(HTML)` الدالة لا تُشفِّر **أن أول** ظهور لـ `<` و `>` (باستخدام `replace` بسيطة).
* وبما أن الشيفرة تستخدم بعد ذلك `innerHTML` لإدراج القيم، يمكن أن تبقى الوسوم الخبيثة وتفسرها المتصفح.
* لذلك تكون الفلترة فعالة فقط للمرة الأولى؛ أما الظهورات التالية فتظل عرضة للثغرة.

<figure><img src="/files/1ba27dc7ad388aa6b83b80ef9392d112d04b15cd" alt=""><figcaption></figcaption></figure>

* استخدم استبدالًا شاملًا (`replaceAll` أو تعبيرًا نمطيًا عامًا) لتشفير **جميع** الظهورات لـ `<` و `>`.
* تجنب استخدام `innerHTML` للبيانات غير الموثوقة؛ وفضّل `textContent` أو `createTextNode`

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

الحمولات القابلة للاستغلال

* أغلق وأدرج سكربتًا:

```javascript
<><script>alert(0)</script>
```

* أجبر خطأ الصورة على تشغيل `onerror:`

```javascript
<><img src=0 onerror=alert(0)>
```

تعمل هذه الحمولات لأن عددًا قليلاً فقط من الأحرف يتم تحويله، وتبقى التكرارات الإضافية لـ `<`/`>` قابلة للتفسير.

<figure><img src="/files/a5c7123d1c159e5689113d5136a29ece555e423c" 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-dom-xss.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.
