检查电子邮件标头注入
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了检查电子邮件标头注入相关的知识,希望对你有一定的参考价值。
public function InjectionSafe($TestString, $RemoveLinks = false){ $regex = '/^to+(?=:)|^content-type:|^cc:|^bcc:|^from:|^subject:|^mime-version:|^content-transfer-encoding:/im'; // Don't allow any of these strings in here // Illegal characters return false; } else{ if(true === $RemoveLinks) { $regex2 = '/http://|https://|href=|mailto:/i'; { // Illegal characters return false; } } // No nasties found, we cool return true; } }
以上是关于检查电子邮件标头注入的主要内容,如果未能解决你的问题,请参考以下文章
在线 SpamAssassin 评估/RFC 一致性检查 [关闭]