Hotfix information
A supported hotfix is available from Microsoft. However, this hotfix is intended to correct only the problem that is described in this article. Apply this hotfix only to systems that are experiencing this specific problem. This hotfix might receive additional testing. Therefore, if you are not severely affected by this problem, we recommend that you wait for the next software update that contains this hotfix.
If the hotfix is available for download, there is a "Hotfix download available" section at the top of this Knowledge Base article. If this section does not appear, contact Microsoft Customer Service and Support to obtain the hotfix.
Note If additional issues occur or if any troubleshooting is required, you might have to create a separate service request. The usual support costs will apply to additional support questions and issues that do not qualify for this specific hotfix. For a complete list of Microsoft Customer Service and Support telephone numbers or to create a separate service request, visit the following Microsoft Web site:
Note The "Hotfix download available" form displays the languages for which the hotfix is available. If you do not see your language, it is because a hotfix is not available for that language.
Prerequisites
You must have ISA Server 2006 installed to install this hotfix
Restart requirement
Hotfix replacement information
The hotfix installation program restarts the Microsoft ISA Firewall service.
File information
The English version of this hotfix has the file attributes (or later file attributes) that are listed in the following table. The dates and times for these files are listed in Coordinated Universal Time (UTC). When you view the file information, it is converted to local time. To find the difference between UTC and local time, use the
Time Zone tab in the
Date and Time item in Control Panel.
File name | File version | File size | Date | Time |
---|
Authdflt.dll | 5.0.5720.169 | 157,616 | 26-Jun-2007 | 23:11 |
Comphp.dll | 5.0.5720.169 | 183,216 | 26-Jun-2007 | 23:11 |
Complp.dll | 5.0.5720.169 | 74,672 | 26-Jun-2007 | 23:11 |
Cookieauthfilter.dll | 5.0.5720.169 | 394,160 | 26-Jun-2007 | 23:11 |
msfpc.dll | 5.0.5720.169 | 551,856 | 26-Jun-2007 | 23:11 |
msfpccom.dll | 5.0.5720.169 | 6,412,720 | 26-Jun-2007 | 23:11 |
msfpcui.dll | 5.0.5720.169 | 2,812,848 | 26-Jun-2007 | 23:11 |
ratlib.dll | 5.0.5720.169 | 53,168 | 26-Jun-2007 | 23:11 |
msfpcsnp.dll | 5.0.5720.169 | 5,859,760 | 26-Jun-2007 | 23:11 |
socksflt.dll | 5.0.5720.169 | 110,512 | 26-Jun-2007 | 23:11 |
w3filter.dll | 5.0.5720.169 | 894,384 | 26-Jun-2007 | 23:11 |
w3prefch.exe | 5.0.5720.169 | 174,512 | 26-Jun-2007 | 23:11 |
wspsrv.exe | 5.0.5720.169 | 1,214,896 | 26-Jun-2007 | 23:11 |
Httpfilter.dll | 5.0.5720.169 | 157,616 | 26-Jun-2007 | 23:11 |
Linktranslation.dll | 5.0.5720.169 | 250,288 | 26-Jun-2007 | 23:11 |
Wploadbalancer.dll | 5.0.5720.169 | 101,808 | 26-Jun-2007 | 23:11 |
Post-hotfix installation information
After you install the hotfix, you must run a Microsoft Visual Basic script to resolve the problem that is described in the "Symptoms" section. This script configures ISA Server 2006 to perform the following actions:
- Deny requests from clients that are not known to support Forms-Based authentication when Radius OTP is being used for authentication.
- Deny a request that uses Basic credentials without trying to validate the credentials against the OTP server.
To run this script, follow these steps after you install this hotfix:
- Start Notepad.
- Copy the following code, and then paste it into Notepad:
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'
' Copyright (c) Microsoft Corporation. All rights reserved.
' THIS CODE IS MADE AVAILABLE AS IS, WITHOUT WARRANTY OF ANY KIND. THE ENTIRE
' RISK OF THE USE OR THE RESULTS FROM THE USE OF THIS CODE REMAINS WITH THE
' USER. USE AND REDISTRIBUTION OF THIS CODE, WITH OR WITHOUT MODIFICATION, IS
' HEREBY PERMITTED.
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
' This script sets whether ISA will disable Basic authentication fallback when
' ISA Forms-Based authentication with Radius OTP is being used and when the client is not
' known to support Forms-Based authentication.
'
'
' usage - to disable Basic authentication fallback when Radius OTP authentication is being used
' cscript DisableBasicFallbackForOtp.vbs
'
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Const SE_VPS_GUID = "{143F5698-103B-12D4-FF34-1F34767DEabc}"
Const SE_VPS_NAME = "DisableBasicFallbackForOtp"
Const SE_VPS_VALUE = true
Sub SetValue()
' Create the root object.
Dim root ' The FPCLib.FPC root object
Set root = CreateObject("FPC.Root")
'Declare the other objects needed.
Dim array ' An FPCArray object
Dim VendorSets ' An FPCVendorParametersSets collection
Dim VendorSet ' An FPCVendorParametersSet object
' Get references to the array object
' and to the network rules collection.
Set array = root.GetContainingArray
Set VendorSets = array.VendorParametersSets
On Error Resume Next
Set VendorSet = VendorSets.Item( SE_VPS_GUID )
If Err.Number <> 0 Then
Err.Clear
' Add the item.
Set VendorSet = VendorSets.Add( SE_VPS_GUID )
CheckError
WScript.Echo "New VendorSet added... " & VendorSet.Name
Else
WScript.Echo "Existing VendorSet found... value- " & VendorSet.Value(SE_VPS_NAME)
End If
if VendorSet.Value(SE_VPS_NAME) <> SE_VPS_VALUE Then
Err.Clear
VendorSet.Value(SE_VPS_NAME) = SE_VPS_VALUE
If Err.Number <> 0 Then
CheckError
Else
VendorSets.Save false, true
CheckError
If Err.Number = 0 Then
WScript.Echo "Done with " & SE_VPS_NAME & ", saved!"
End If
End If
Else
WScript.Echo "Done with " & SE_VPS_NAME & ", no change!"
End If
End Sub
Sub CheckError()
If Err.Number <> 0 Then
WScript.Echo "An error occurred: 0x" & Hex(Err.Number) & " " & Err.Description
Err.Clear
End If
End Sub
SetValue
- Save the script as "DisableBasicFallbackForOtp.vbs."
- Open a command prompt in the location in which the script is saved, type the following command, and then press ENTER:
cscript DisableBasicFallbackForOtp.vbs
Notes- To revert to the default setting in which fallback to Basic authentication is used for ISA Forms-Based authentication together with Radius OTP, edit the script to revise
"Const SE_VPS_VALUE = true" to "Const SE_VPS_VALUE = false."
- Save the script, and then rerun it.