> 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/cms/magento-cms-exploitation.md).

# Magento

{% hint style="info" %}
**ماجنتو** هي منصة تجارة إلكترونية مفتوحة المصدر تُستخدم لبناء متاجر إلكترونية مخصصة. تدعم إدارة المنتجات والطلبات والمدفوعات، وغالبًا ما يتم توسيعها عبر الوحدات والسمات.
{% endhint %}

## ماسح موقع ماجنتو (magescan)

تنزيل [magescan (magescan.phar)](https://github.com/steverobbins/magescan/releases).

```bash
php magescan.phar scan:all http://site-web.com
```

## مثال على حقن SQL لسرقة ملفات تعريف ارتباط الجلسة

* استخدم `wget` لتنزيل النسخة الخام [سكربت Python](https://github.com/ambionics/magento-exploits/blob/master/magento-sqli.py) حلقة **اختطاف ملفات تعريف الارتباط**.

1. مثال عملي للاستخدام:

```bash
python3 magento-sqli.py http://localhost:8080/
```

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

2. باستخدام [محرر ملفات تعريف الارتباط](https://chrome.google.com/webstore/detail/cookie-editor/hlkenndednhfkekhgcdicdfddnkalmdm) الإضافة، استبدل ملف تعريف الارتباط الحالي بملف تعريف ارتباط المدير:

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

3. تم الاختراق :)

<figure><img src="/files/dae16eaa88226ff9b94a63de771f45ae3e1c59e5" 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/cms/magento-cms-exploitation.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.
