我已将此添加到global.asax页面,以帮助我过滤掉登录到elmah的错误,但只过滤包含HttpRequestValidationException的任何异常错误。我从McAfee扫描中收到这些错误。我想知道是否有办法检查IP地址,如果IP地址与McAfee匹配,则不记录错误。我试着这样做:
void ErrorLog_Filtering(object sender, ExceptionFilterEventArgs e)
{
if (Server.HtmlEncode(Request.UserHostAddress) == "173.15.183.122"
&& e.Exception.GetBaseException() is HttpRequestValidationException) {
e.Dismiss();
}
}
这对我不起作用。如果有办法获取IP地址,请告诉我,我需要添加哪些命名空间才能使其正常工作。
答案 0 :(得分:2)
我将此添加到我的web.config文件中以检查某些IP地址,这有助于过滤掉我不想在我的数据库中登录的错误。
<elmah>
<errorLog type="Elmah.SQLiteErrorLog, Elmah" connectionStringName="ELMAH.SQLite" />
<security allowRemoteAccess="yes" />
<errorFilter>
<test>
<and>
<equal binding="HttpStatusCode" value="500" type="Int32" />
<regex binding="Context.Request.ServerVariables['REMOTE_ADDR']" pattern="((165.193.42.(6[7-9]|7[0-9]|8[0-6]|13[1-9]|14[0-9]|150))|(161.69.30.(13[6-9]|1[4-5][0-9]|16[0-7]))|(64.14.3.(196|21[4-9]|22[0-9]))|(64.41.168.(24[2-9]|25[0-4]))|(216.35.7.(9[8-9]|1[0-1][0-9]|12[0-6]))|(64.41.140.(9[8-9]|10[0-7]))|(161.69.14.(13[6-9]|1[4-5][0-9]|16[0-7])))$" type="String" />
</and>
</test>
</errorFilter>
</elmah>