home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 February / CHIP_2_98.iso / software / pelne / optionp / iis4_06.cab / iisctr1.asp < prev    next >
Text File  |  1997-10-15  |  3KB  |  82 lines

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
  2. <html><head><title>Security for the Intranet</title>
  3.  
  4. <SCRIPT LANGUAGE="JavaScript">
  5.     TempString = navigator.appVersion
  6.     if (navigator.appName == "Microsoft Internet Explorer"){    
  7. // Check to see if browser is Microsoft
  8.         if (TempString.indexOf ("4.") >= 0){
  9. // Check to see if it is IE 4
  10.             document.writeln('<link rel="stylesheet" type="text/css" href="/iishelp/common/coua.css">');
  11.         }
  12.         else {
  13.             document.writeln('<link rel="stylesheet" type="text/css" href="/iishelp/common/cocss.css">');
  14.         }
  15.     }
  16.     else if (navigator.appName == "Netscape") {                        
  17. // Check to see if browser is Netscape
  18.         document.writeln('<link rel="stylesheet" type="text/css" href="/iishelp/common/coua.css">');
  19.     }
  20.     else
  21.         document.writeln('<link rel="stylesheet" type="text/css" href="/iishelp/common/cocss.css">');
  22. </script>
  23.  
  24. <META NAME="DESCRIPTION" CONTENT="IIS in Action: Security for the Intranet"></head>
  25.  
  26. <body bgcolor="#FFFFFF" text="#000000"><font face="Verdana, Arial, Helvetica">
  27.  
  28. <h1><a name="iisinaction">Security for the Intranet</a></h1>
  29.  
  30. <table cellpadding="0" border="0" cellspacing="0" width="100%">
  31. <tr>
  32.  
  33. <td width="77%" valign="top">
  34. <DL>
  35. <DT><strong>Goal</strong></DT>
  36. <DD>To provide a Web page that members of your airline's Frequent Flyers club can use to see how many points they have accumulated, find out what trips they might be able to buy with those points, and place reservations for those trips.</DD>
  37. <DT><strong>Components</strong></DT>
  38. <DD>Windows NT Server 4.0; Internet Information Server (IIS) 4.0; Active Server Pages (ASP); ADO; Microsoft SQL Server; Internet Explorer version 3.02 with Authenticode 2 update, or later versions of Internet Explorer</DD>
  39. <DT><strong>Environment</strong></DT>
  40. <DD>Intranet, secured; Windows NT network</DD>
  41. </DL>
  42. </td>
  43.  
  44. <%
  45. If InStr(Request.ServerVariables("HTTP_USER-AGENT"), "MSIE") Then
  46.    MachPath = "../mm/iisctr1m.asp" 
  47. Else
  48.         MachPath = "iimmnscp.htm"
  49. End If %>
  50.  
  51. <td width="4%"></td>
  52.  
  53. <td width="19%" valign="top"><br><br>
  54. <center><a href="<%= MachPath%>"><img src="iimm.gif" border=0 alt="Introductory video "></a></center>
  55.  
  56. <center><a href="<%= MachPath%>"><p>Multimedia Demonstration</p></a></center>
  57.  
  58. </td>
  59.  
  60. </tr>
  61. </table>
  62.  
  63. <h2><A NAME="H2_37671418">Basic Process</a></h2>
  64.  
  65. <ol>
  66. <li>Establish Windows NT Challenge/Response authentication for an application; </li>
  67. <li>Create the group to whom you want to grant access.</li>
  68. <li>Assign the Log on Locally privilege to this group.</li>
  69. <li>Change permissions to only the group created above (remove the group "Everyone").</li>
  70. </ol>
  71.  
  72.  
  73. <h2><A NAME="H2_37671735">Result</a></h2>
  74.  
  75. <p>When a member of this group attempts to use this application, they are able to—without having to type in a password. When a user that is not a member of this group attempts to use this application, they receive an error message.</p>
  76.  
  77.  
  78. <hr class="iis" size="1"><p align="center"><em><a href="/iishelp/common/colegal.htm">© 1997 by Microsoft Corporation. All rights reserved.</a></em></p>
  79.  
  80. </font>
  81. </body>
  82. </html>