Email Spoofing With Your Website's Email
P
Paragon Initiative Enterprises
Submitted None
Actions:
Reported by
muhaddix
Vulnerability Details
Technical details and impact analysis
Hey Parogine, I have found **Email Spoofing** type of Vulnerability in your Website,
**E-Mail Spoofing**
Now the Question is, What is **E-mail Spoofing**:
**Email spoofing** is the creation of email messages with a forged sender address. Because the core email protocols do not have any mechanism for authentication, it is common for spam and phishing emails to use such spoofing to mislead the recipient about the origin of the message.
In Simple words, Attacker can use your E-Mail to send emails to others.
Not Only [email protected] Email Involved in it, All the Emails develop in https://paragonie.com/ may be affect by it...
How to Produce E-Mail Spoofing in your Website,
**Steps to Produce this Issue:**
1) Goto: https://emkei.cz/
2) Add [email protected] "From Email" in https://emkei.cz/
3) Click Send Button,
4) The Email from [email protected] will be send to the Email you enter.
**Another way,**
`<?php
$to = "[email protected]";
$subject = "Email Spoofing Test";
$txt = "This is Email Spoofing";
$headers = "From: [email protected]";
mail($to,$subject,$txt,$headers);
?>`
Save this code in PHP file, & upload it on online server, Execute it & you can see The email will be send to your Desired Email
Note: This code doesn't work on Localhost
See Screenshots below, I received Email from your website.
{F114692}
Fix: Improve Your Mailer, Turn on some more Security filters.
Read More about Email Spoofing here:
http://searchsecurity.techtarget.com/definition/email-spoofing
Thanks! I hope you will fix this issue soon as possible,
Regards: -Muhammad Muhaddis (Cyber Security Researcher)
Report Details
Additional information and metadata
State
Closed
Substate
Duplicate
Submitted
Weakness
Improper Authentication - Generic