Help and Support

Configuring and Testing a PERL Script with Internet Information Server (IIS)

Article ID:150629
Last Review:June 23, 2005
Revision:2.1
This article was previously published under Q150629
We strongly recommend that all users upgrade to Microsoft Internet Information Services (IIS) version 6.0 running on Microsoft Windows Server 2003. IIS 6.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)

On This Page

SUMMARY

The following PERL script can be used to test for the proper installation and execution of CGI scripts with Internet Information server.

Back to the top

MORE INFORMATION

Create a file with Notepad, and type the following lines of code. Save the file in the scripts directory as Helloworld.pl.
print "HTTP/1.0 200 OK\n";
print "Content-Type: text/html\n\n";

print "<HTML>\n";
print "<HEAD>\n";
print "<TITLE>Hello World</TITLE>\n";
print "</HEAD>\n";
print "<BODY>\n";
print "<H4>Hello World</H4>\n";
print "<P>\n";
print "Your IP Address is $ENV{REMOTE_ADDR}.\n";
print "<P>";
print "<H5>Have a nice day</H5>\n";
print "</BODY>\n";
print "</HTML>\n";
				

Once you have created the file, you need to configure PERL to run securely with Internet Information. Perl.exe should not be located in any of the directories accessible by a user with a browser.

With a script mapping in the registry, you can place the Perl.exe outside of the normal directory structure a user has access to.

Back to the top

To configure PERL script mapping

WARNING: Using Registry Editor incorrectly can cause serious, system-wide problems that may require you to reinstall Windows NT to correct them. Microsoft cannot guarantee that any problems resulting from the use of Registry Editor can be solved. Use this tool at your own risk.
1.Start Regedt32.exe and open the following registry key:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W3SVC \Parameters\ScriptMap
2.Click Add Value from the Edit menu.
3.The Value Name is .pl
4.The Data type is REG_SZ.
5.The String value is <the full path to perl.exe>\perl.exe %s %s

NOTE: The "%s %s" is case sensitive. (e.g. "%S %S" will not work).
6.Restart the WWW service.
Now that the registry has been configured, you can test the PERL script with your browser. Using the defaults directory structure with IIS, the URL would be the following:
http://<Server Name>/scripts/helloworld.pl?

Back to the top


APPLIES TO
Microsoft Internet Information Server 1.0
Microsoft Internet Information Server 2.0
Microsoft Internet Information Server 3.0

Back to the top

Keywords: 
kbinfo KB150629

Back to the top

Article Translations

 

Other Support Options

  • Contact Microsoft
    Phone Numbers, Support Options and Pricing, Online Help, and more.
  • Customer Service
    For non-technical assistance with product purchases, subscriptions, online services, events, training courses, corporate sales, piracy issues, and more.
  • Newsgroups
    Pose a question to other users. Discussion groups and Forums about specific Microsoft products, technologies, and services.