BUG: Set-Cookie Is Ignored in CGI When Combined With Location
This article was previously published under Q176113 We strongly recommend that all users upgrade to Microsoft Internet Information Services (IIS) version 7.0 running on Microsoft Windows Server 2008. IIS 7.0 significantly increases Web infrastructure security. For more information about IIS security-related topics, visit the following Microsoft Web site: http://www.microsoft.com/technet/security/prodtech/IIS.mspx (http://www.microsoft.com/technet/security/prodtech/IIS.mspx) For more information about IIS 7.0, visit the following Microsoft Web site: http://www.iis.net/default.aspx?tabid=1 (http://www.iis.net/default.aspx?tabid=1) On This PageSYMPTOMS
When a CGI application sends a Set-Cookie header with "302 Object Moved"
response and Location header, Internet Information Server (IIS) ignores the
cookie header.
RESOLUTION
This behavior is in violation of the CGI specification, which states, "Any
headers that are not server directives are sent directly back to the
client. Currently, this specification defines three server directives..."
As a workaround, make sure the file name of the EXE begins with "nph-" and manually create all HTTP headers in your program. "nph-" indicates to the server that the CGI program is to be run in non-parsed headers mode. CGI has two modes. In normal mode (parsed headers), you must send one of the CGI directives to standard output (Content-type, Location, or Status). CGI formats a valid HTTP response line based on the directive you sent. It formats other standard HTTP headers for you, and it should include any other headers that you have specified. The other mode is non-parsed header mode. In this mode CGI does not set any headers itself. The CGI program must format a full HTTP response including the response line and all headers. The server will not add or modify any headers for you in this mode. The convention is that a CGI program whose name begins with "nph-" is run in non-parsed header mode; otherwise, CGI programs are run in parsed header mode. STATUS
Microsoft has confirmed this to be a bug in the Microsoft products listed
at the beginning of this article.
MORE INFORMATIONSteps to Reproduce BehaviorCompile this CGI program as a Win32 Console Application and place it in a folder on your IIS server where it can be executed:Call the CGI program from your browser and observe its output (via Network Monitor, for example). It will be similar to this: HTTP/1.0 302 Object moved Location: http://www.yahoo.com Server: Microsoft-IIS/2.0 Content-Type: text/html Content-Length: 145 <head><title>Document moved</title></head> <body><h1>Object Moved</h1>This document may be found <a HREF="http://www.yahoo.com">here</a></body> Note that the Set-Cookie header has not been sent by IIS. If you have cookie warnings turned on in your browser, no warning appears. To allow a cookie to be set in a 302 response, use code similar to the following, and prefix "nph-" to the name of the executable file: The output is similar to the following. Note that the cookie is now sent, and no headers are added by the server. HTTP/1.0 302 Redirect Location: http://www.yahoo.com Set-Cookie: Name=Value; path=/; expires=Fri, 22 May 1998 21:00:00 GMT REFERENCES
(c) Microsoft Corporation 1997, All Rights Reserved. Contributions by Leon
Braginski, Microsoft Corporation
APPLIES TO
| Article Translations
|

Back to the top
