Click here to Skip to main content
Click here to Skip to main content

ISAPI authentication filter

By , 6 Dec 1999
 

In this article the Microsoft SDK ISAPI authentication filter sample was rewritten using MFC ISAPI classes. The filter's funcionality remains exactly the same, the purpose of the article is to demonstrate the use of the MFC ISAPI classes to write filters. Note that this authentication filter is not the most trivial sample, it provides pretty serious functionality (Microsoft refers to it as "A Filter for Advanced Authentication"). The filter functionality is described below using an excerption of Microsoft documentation.

"AuthFilt demonstrates how to write an authentication filter based on an external datasource. Authentication is the process of accepting or denying a request from a client, so AuthFilt will be notified each time an authentication request comes in. This sample uses a file (userdb.txt) to keep track of authorized users, but you might modify this sample to access a database which holds user info.

For each authentication request, AuthFilt first looks in a cache of recently authenticated users, and when that fails, AuthFilt looks in the userdb.txt file. This shows an efficient way to authorize connections: a cache allows the filter to quickly authenticate users, and because each request comes in through the filter, speed is critical."

The project is a standard appwizard generated ISAPI filter. The global functions of the AuthFilt Microsoft sample were encapsulated in the filter class. There are 3 parameters that can be changed to fine tune the filter: the maximum number of cached users, the position after which a cached entry will be moved to the front of the list (to make the search time shorter!) and the name of the file that contains the username/password pairs and the appropriate NT account the username/password should be mapped to. All this parameters are #define directives in the authflit.h header file.

The filter could be improved in several ways: using a database instead of a file for authentication information (you should consider using stored procedures to search and/or to cache!), load parameters from registry, automatic selection of the number of cached users 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 authfilt.dll, usually C:\WinNT\System32\InetSrv\authfilt.dll. The filter entries are separated by commas. The order is important, if you have other authentication filter with the same priority, the first one listed will receive the authentication request.
  2. Copy the authfilt.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 userdb.txt file so it contains valid users and passwords. The format of the file is:
    User1:Password1, NTUser1:NTPassword1
    User2:Password2, NTUser2:NTPassword2
    User3:Password3, NTUser3:NTPassword3
  5. Copy the userdb.txt file to the directory you specified in the authfilt.h header file for the user database.
  6. Make sure the System account have read rights on the userdb.txt file.
  7. Restart the WWW service.

License

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

About the Author

Jorge Lodos
Cuba Cuba
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionISAPI Development QuestionmemberFranklinIssac11 Jun '08 - 8:13 
QuestionISAPI for Windows 2003 Server IIS Service not work !?memberjackie hsu18 Mar '08 - 18:04 
AnswerRe: ISAPI for Windows 2003 Server IIS Service not work !?membershanhe24 Aug '09 - 4:23 
GeneralISAPI authentication filter problemmemberimazing1039 Dec '07 - 19:35 
GeneralISAPI on ISA ServermemberLeoNicolas15 Mar '05 - 6:01 
GeneralISAPI filter for Windows Shared ServicesmemberSarma Pisapati25 Sep '04 - 2:10 
QuestionGetting client IP address in ISAPI filters?membergtyhf8 Jul '04 - 20:32 
GeneralGetting Session ID without using cookies.membergtyhf8 Jul '04 - 20:26 
GeneralRe: Getting Session ID without using cookies.memberGumba14 Sep '04 - 20:28 
GeneralCannot executesussAnonymous7 Apr '04 - 22:36 
QuestionHow to use this??memberalan9325 Aug '03 - 12:25 
GeneralProject compiled in VC++.NET is not workingmemberUdhaya Moorthi5 Aug '03 - 20:16 
GeneralRe: Project compiled in VC++.NET is not workingmemberslimtim25 Nov '03 - 13:15 
Questionuser/password not being passed??memberhanzhanquan2002atyahoocomcn20 Mar '03 - 16:03 
QuestionHow can I activate this filter!!membersayhappy2 Dec '02 - 21:02 
AnswerRe: How can I activate this filter!!memberhanzhanquan2002atyahoocomcn20 Mar '03 - 16:11 
GeneralConcurrency issues with the IIS LogmemberAnonymous16 Oct '02 - 11:53 
GeneralGetting IIS 5 SessionID vai ISAPI FiltermemberAjith de Silva19 May '02 - 22:00 
GeneralRe: Getting IIS 5 SessionID vai ISAPI FiltersussTaliesin13 Sep '02 - 21:04 
QuestionWinNT account from ISAPI?????memberJesse20027 May '02 - 15:43 
QuestionISAPI filter sends HTTP client call?memberthorsten25 Apr '02 - 21:20 
GeneralUser not being passedmemberGerard Nicol19 Mar '02 - 16:06 
GeneralRe: User not being passedmemberhanzhanquan2002atyahoocomcn20 Mar '03 - 15:35 
GeneralRe: User not being passedmemberMuhammad Asim Sajjad25 Sep '07 - 22:29 
GeneralInstall of ISAPI FiltermemberAnonymous6 Feb '02 - 11:58 

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 7 Dec 1999
Article Copyright 1999 by Jorge Lodos
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid