Bad page request for /_vti_bin/owssvr.dll

  • Thread starter Thread starter Bill Watterson
  • Start date Start date
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!
 
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... ;-)



Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
Foros de ASP.NET en Español : http://asp.net.do/foros/
======================================
 
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"));
}
}
 
You got it!

;-)



Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
Foros de ASP.NET en Español : http://asp.net.do/foros/
======================================
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... ;-)



Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
Foros de ASP.NET en Español : http://asp.net.do/foros/
======================================
 

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

Back
Top