RON_ron Posted July 12, 2010 Share Posted July 12, 2010 Could someone help to prevent this PHP being inject. <?PHP $to = "[email protected]," $mail; $subject = "$thecompany submission"; $headers = "From:" .$email."\r\n"; $message = "Name: " . $thename; $message .= "\nCompany: " . $ecompany; $message .= "\nAddress: " . $eaddress; $message .= "\nRequired Date: " . $edate; $message .= "\nPhone: " . $phone; $message .= "\nEmail: " . $email; $message .= "\n\nQuantities"; $sentOk = mail($to,$subject,$message,$headers); echo "sentOk=" . $sentOk; Quote Link to comment https://forums.phpfreaks.com/topic/207476-preg_replace/ Share on other sites More sharing options...
kenrbnsn Posted July 12, 2010 Share Posted July 12, 2010 What do you mean? Ken Quote Link to comment https://forums.phpfreaks.com/topic/207476-preg_replace/#findComment-1084720 Share on other sites More sharing options...
RON_ron Posted July 12, 2010 Author Share Posted July 12, 2010 I want to prevent any injections to my mail headers... That's my mail code and could you show me how how to write it? Quote Link to comment https://forums.phpfreaks.com/topic/207476-preg_replace/#findComment-1084721 Share on other sites More sharing options...
RON_ron Posted July 12, 2010 Author Share Posted July 12, 2010 someone please.... Quote Link to comment https://forums.phpfreaks.com/topic/207476-preg_replace/#findComment-1084733 Share on other sites More sharing options...
salathe Posted July 12, 2010 Share Posted July 12, 2010 Do you know what you're wanting to protect against? Quote Link to comment https://forums.phpfreaks.com/topic/207476-preg_replace/#findComment-1084754 Share on other sites More sharing options...
RON_ron Posted July 12, 2010 Author Share Posted July 12, 2010 The issue is I have a mail fuction wheich sends the same mail to several email addresses. But since today morning few of them are not receiveing the email. I check all possible ways but was not successful. So I thought to try to avoid any injection (if there's any). (I wonder why arn't they getting the same mail.) Quote Link to comment https://forums.phpfreaks.com/topic/207476-preg_replace/#findComment-1084758 Share on other sites More sharing options...
kenrbnsn Posted July 12, 2010 Share Posted July 12, 2010 Take a look at Email Header Injection Exploit. It was written in 2005, but the solution is still valid now. Ken Quote Link to comment https://forums.phpfreaks.com/topic/207476-preg_replace/#findComment-1084872 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.