Bad page request for /_vti_bin/owssvr.dll

B

Bill Watterson

This item keeps showing up on my Bad Page Request report.

Does anyone know what this is or how to keep it from showing up on the list?

Thank you!
 
J

Juan T. Llibre

It's just someone trying to hack you.
That used to work in the earlier days. Now it doesn't.

If it bothers you, redirect the requests for that file
to the originating IP for the request.

That should throw them for a loop... ;-)
 
B

Bill Watterson

Thanks for the suggestion! I like the way you think.

Here's what I came up with from your suggestion.

Would this work?

protected void Application_BeginRequest(Object sender, EventArgs e)
{
string url = Request.ServerVariables["URL"].ToString();

if (url.IndexOf("/_vti_bin/owssvr.dll") >= 0)
{
Response.Redirect(Request.ServerVariables.Get("REMOTE_ADDR"));
}
}
 
J

Juan T. Llibre

You got it!

;-)




Bill Watterson said:
Thanks for the suggestion! I like the way you think.

Here's what I came up with from your suggestion.

Would this work?

protected void Application_BeginRequest(Object sender, EventArgs e)
{
string url = Request.ServerVariables["URL"].ToString();

if (url.IndexOf("/_vti_bin/owssvr.dll") >= 0)
{
Response.Redirect(Request.ServerVariables.Get("REMOTE_ADDR"));
}
}

Juan T. Llibre said:
It's just someone trying to hack you.
That used to work in the earlier days. Now it doesn't.

If it bothers you, redirect the requests for that file
to the originating IP for the request.

That should throw them for a loop... ;-)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,436
Messages
2,571,696
Members
48,796
Latest member
Greg L.
Top