Click here to Skip to main content
15,884,629 members
Articles / Web Development / HTML

ISAPI Filter to Allow Access Only to Hosts with Selected Names

Rate me:
Please Sign up or sign in to vote.
2.75/5 (4 votes)
28 Dec 1999CPOL 64.3K   784   20   4
This article describes an ISAPI filter to allow access only to hosts listed in an external datasource.

The 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 information.

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 indicate 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 these 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_MACHINE\CurrentControlSet\Services\W3SVC\Parameters. Add a local path to hostnamefilter.dll, usually C:\WinNT\System32\InetSrv\hostnamefilter.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 has 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 has read rights on the NoName.htm, NoAccess.htm and hostdb.txt files.
  9. Restart the WWW service.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Cuba Cuba
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 2 Pin
Sapien211-Jun-09 3:19
Sapien211-Jun-09 3:19 
Generalsample doesn't work Pin
Raj.K14-Apr-03 22:20
Raj.K14-Apr-03 22:20 
GeneralNetbios Name Instead of Hostname Pin
5-Jun-01 7:54
suss5-Jun-01 7:54 
GeneralUser Context Pin
Luke Bailey26-Jun-00 0:45
Luke Bailey26-Jun-00 0:45 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.