More specifically, I am writing a web request handler that forks requests to different processing pages for separate, distinct ASP.NET web applications. Specifically, this handler's purpose is for handling Paypal's Instant Payment Notifications.

I'd like to know how I can expose those custom processing pages to localhost only, so that my forking handler's POSTS will go through, but remote machines cannot post to those pages directly.

link|improve this question

61% accept rate
feedback

3 Answers

IIS can be configured to only allow certain IP addresses to access a site. These settings can be found on the directory security tab for the site (IIS6) or in the IP address and domain restrictions option (IIS7). You can restrict this to local requests only be specifying the only allowed address to be 127.0.0.1

link|improve this answer
Is this only available at the site level or at the individual page level as well? – merlin2011 Jan 7 at 0:43
IIS handles this only at a site / application level - if you want to go more granular than this you'll need to build into your asp.net application, checking the Request.IsLocal property – Macros Jan 9 at 9:07
feedback

In IIS Manager, in the Bindings action panel for the site you only want to allow local access to, change the IP address to be 127.0.0.1.

For more than one application, set up several aliases in your Windows hosts file (system32\drivers\etc\hosts) for 127.0.0.1. Back on the Bindings action panel, set the hostname for each site to be one of those aliases, and use that alias in your GETs or POSTs from the other sites, such as httpx://mylocalsite/default.aspx.

If you can't isolate an entire site, then you can write an HttpModule, and in the BeginRequest event, throw an error if Request.IsLocal isn't true for the pages you're concerned about.

link|improve this answer
feedback

Well, i do not know how to do it in IIS, but your pages can check

Request.IsLocal
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.