ISAPI filter to allow access only to hosts with selected names | CodeGuru

ISAPI filter to allow access only to hosts with selected names

This article describes an ISAPI filter to allow access only to hosts listed in an external datasource. This sample uses a file (hostdb.txt) to keep track of authorized hostnames, but you might modify this sample to access a database which holds host info. For each URL request, the filter first looks in a cache of […]

Written By
CodeGuru Staff
CodeGuru Staff
Dec 2, 1998
3 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

This article describes an ISAPI filter to allow access only to hosts listed in an external datasource. This sample uses a file (hostdb.txt) to keep track of authorized hostnames, but you might modify this sample to access a database which holds host info.


For each URL request, the filter first looks in a cache of recently allowed hosts, and when that fails, it looks in the hostdb.txt file. This shows an efficient way to authorize connections: a cache allows the filter to quickly allow or disallow host access, and because each request comes in through the filter, speed is critical.


The project is a standard appwizard generated ISAPI filter. There are 5 parameters that can be changed to fine tune the filter: the maximum number of cached hosts, the position after which a cached entry will be moved to the front of the list (to make the search time shorter!), the name of the file that contains the host list and the names of the html files that indicates to the user that its IP address could not be resolved to a host name or that the access was denied for this host. All this parameters are #define directives in the hostnamefilter.h header file.


The filter could be improved in several ways: using a database instead of a file for host information (you should consider using stored procedures to search and/or to cache!), load parameters from registry, automatic selection of the number of cached hosts and the list reorder parameter, etc.


The full source code is provided, you will have to compile it in order to get a working filter. Once you have compiled the project you will need to take the following steps to install:


  1. Run REGEDT32.EXE and modify the server’s registry as follows. Select the Filter DLLs key in HKEY_LOCAL_MACHINECurrentControlSetServicesW3SVCParameters. Add a local path to hostnamefilter.dll, usually C:WinNTSystem32InetSrvhostnamefilter.dll. The filter entries are separated by commas. The order is important, if you have other filters with the same priority, the first one listed will receive the requests first.
  2. Copy the hostnamefilter.dll file to the directory you specified in the registry.
  3. Make sure the System account have execute rights on the filter dll file.

  4. Edit the hostdb.txt file so it contains valid hostnames. The format of the file is:

    host1

    host2.foo.com

    *.edu

    *.foo.net


  5. Copy the hostdb.txt file to the directory you specified in the hostnamefilter.h header file for the host database.
  6. Copy the NoName.htm file to the directory you specified in the hostnamefilter.h header file for the page to indicate that the IP address could not be resolved to a name.
  7. Copy the NoAccess.htm file to the directory you specified in the hostnamefilter.h header file for the page to indicate that the access is denied for this host.
  8. Make sure the System account have read rights on the NoName.htm, NoAccess.htm and hostdb.txt files.
  9. Restart the WWW service.


Download Source Code

Last updated: 23 November 1998

CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.