The Best Damn Windows Server 2003 Book Period- P12 pps

10 221 0
The Best Damn Windows Server 2003 Book Period- P12 pps

Đang tải... (xem toàn văn)

Thông tin tài liệu

Securing File and Print Servers File and print servers also need additional security. In addition to setting permissions on files and folders, regularly performing backups, and using antivirus software, organizations may also need to implement greater levels of protection such as encryption. Similarly, print servers need to be pro- tected from improper use and must be configured to prevent unauthorized users from wasting print resources. File Servers It is especially important that volumes on a file server are formatted as NTFS and appropriate per- missions are set on files and folders. As an added measure of security, these disks should also use EFS. EFS is used to encrypt data on NTFS volumes. When EFS is used, unauthorized users and mali- cious programs are prevented from accessing the content of files, regardless of their permissions. EFS file encryption is completely transparent to the user. Although EFS is an important part of securing a file server, this does not mean that every file on the network is a candidate for being encrypted with EFS. As mentioned, only files on NTFS vol- umes can be encrypted with EFS. If a volume is formatted as NTFS, files that have the System attribute or are located in %systemroot% (for example, C:\Windows) cannot be encrypted. Also, if the file or folder you want to encrypt is compressed, you cannot use encryption.The opposite is also true: if a file or folder is encrypted with EFS, it cannot be compressed. Another important limitation of EFS is that it encrypts data only on NTFS volumes. When a file is accessed remotely on a file server, Windows Server 2003 decrypts it and sends it across the network in unencrypted form. For data to be encrypted during transmission, other technologies like IPSec must be used. IPSec ensures that data is sent securely over the network by encrypting packets and authenti- cating the identity of the sender and receiver. When using IPSec, a policy is applied to both the sender’s and receiver’s computer, so the systems agree on how data will be encrypted. Other com- puters that intercept traffic between the machines will be unable to decipher the information con- tained in the packets. Print Servers Files that are being printed may also require protection. IPSec can be implemented to protect the transmission of data being sent to printers. After all, if a document can be captured while being sent to a printer, a hacker can view its information just as if it were being accessed directly from a server. Physical security issues can be very important for printers. Anyone with access to a printer can remove printed documents from it.This is especially critical for printers that are routinely used to print sensitive documents or financial instruments like checks. A sensitive document may reside on a highly secure file server, but once it is printed, anyone standing by the printer could simply pick it up and walk away.To prevent this from happening, such printers should be located in secure areas that are not accessible to the public and other unauthorized users. Just as files can have permissions assigned to them, so can printers. Printer permissions are used to control who can print and manage network printing.They are set on the Security tab of a printer’s properties. Using printer permissions, you can allow or deny the following permissions for users: ■ Print Allows users to print documents. 76 Chapter 3 • Planning Server Roles and Server Security 301_BD_w2k3_03.qxd 5/12/04 10:56 AM Page 76 ■ Manage Printers Allows users to perform administrative tasks on a printer, including starting, pausing, and stopping the printer; changing spooler settings; sharing the printer; modifying permissions; and changing property settings. ■ Manage Documents Allows users to perform administrative tasks relating to documents being printed. It allows users to start, pause, resume, reorder, and cancel documents. Although different permissions exist for printing, only the Print permission gives the ability to print a document. For example, when only the Manage Documents permission is given, the user has the ability to manage other people’s documents but cannot send documents to the printer for printing. Because those who manage printers may need to print test pages to determine if the printer is working properly, the Manage Printers permission can be set only if the Print permission is given. Because the Print permission is assigned to the Everyone group, all users have access to print to a printer once it is shared on the network. For most printers, it’s usually a good idea to remove this per- mission and add the specific groups within your organization that should have access to the printer. Securing DHCP, DNS, and WINS Servers DHCP, DNS, and WINS servers provide the ability to connect to the network and find other com- puters. DHCP is used to provide IP address and configuration information to clients. If you do not secure these servers, malicious persons and programs may be able to prohibit users from connecting to the network, redirect traffic to other locations, and impact the ability to use network resources. DHCP servers do not require authentication when providing a lease.To avoid unauthorized access, it is important you restrict physical and wireless access to your network. In addition, auditing should be enabled on the DHCP server so that you can review requests for leased addresses. By reviewing the logs, you may be able to identify possible problems. Just as DHCP is an unauthenticated protocol, so is the NetBIOS naming protocol used by WINS. WINS was designed to work with NetBIOS over TCP/IP (NetBT), which does not require any authentication. Because a user does not need to provide credentials to use WINS, it should be regarded as available to unauthorized persons or programs. Rogue servers can also be a problem on the network. When a client requests a DHCP lease, it does so by broadcast. If an unauthorized person puts a DHCP server on the network, the incorrect IP address and configuration information could be provided to clients.This isn’t the case if the rogue DHCP server is running Windows 2000 or Windows Server 2003, because these must be authorized in AD. If the server determines that it is not authorized, the DHCP service will not start. However, pre-Windows 2000 and non-Windows DHCP servers require no authorization and can be effectively used as rogue DHCP servers in a Windows Server 2003 environment. Handing out bogus DHCP leases that do not expire can be a very effective DoS technique. Because of this, it is important to monitor network traffic for DHCP server traffic that does not come from your net- work’s authorized DHCP servers. Restricting access to DHCP tools and limiting membership in groups that can modify DHCP settings are other important steps in securing a DHCP server.To administer DHCP servers remotely using the DHCP console or Netsh utility, you need to be a member of the Administrators group or the DHCP Administrators group. By restricting membership in these groups, you limit the number of people who can authorize a DHCP server to service client requests. Planning Server Roles and Server Security • Chapter 3 77 301_BD_w2k3_03.qxd 5/12/04 10:56 AM Page 77 Securing Web Servers Because IIS provides a variety of services that allow users to access information from the Web server service, it provides potential avenues of attack for unauthorized users, malicious programs, and other sources. IIS is not installed by default in Windows Server 2003, though in earlier versions of the OS it was installed by default If you do not need a Web server on your network, IIS should remain uninstalled. If it has been installed on servers that do not need it, make sure to uninstall it. Once IIS is installed on Windows Server 2003, it is locked down to prevent any unneeded ser- vices from being exploited. By default, IIS will provide only static content to users. If dynamic con- tent is used on the server, you will need to enable the necessary features. For example, if you your site is going to use ASP, ASP.NET, Common Gateway Interface (CGI), Internet Server Application Programming Interface (ISAPI) or Web Distributed Authoring and Versioning (WebDAV), each of these will need to be enabled before they can be used.As with Windows Server 2003 itself, any components that are not needed should be disabled. Another default setting of IIS is that it will not compile, execute, or serve files with dynamic extensions. For example, if you have Web pages written as ASPs with the extension .asp, IIS, using default settings, won’t provide users with this content.These are not allowed by default because of Microsoft’s new security initiatives. Dynamic content can contain malicious code or have weaknesses that can be exploited. If files that provide dynamic content need to be used on the Web server, you must add the file extensions to the Web service extensions list. Any file types that are not needed should not be added. An important part of protecting Web servers is using firewalls. Rules can be set up on the fire- wall controlling what kinds of traffic may pass and who can perform certain actions. Recent attacks suggest that firewall software may be a new target for attack, so it’s vital to configure your firewall properly and monitor it regularly. Securing Database Servers When securing databases, you should take advantage of security features offered by the database software. Microsoft SQL Server, for example, provides two methods of authenticating clients to access data: Windows Authentication Mode and Mixed Mode. When Windows Authentication Mode is used, the SQL Server administrator has the ability to grant logon access to Windows user accounts and groups. If Mixed Mode is used, users can be authenticated through either Windows authentication or separate accounts created within SQL Server. Regardless of the authentication mode used, like many database applications, SQL Server allows you to control access to data at a granular level. Permissions can be set to determine the operations that a user can perform on the data contained in the database. In many database applications, you can set permissions at the server, database, or table level. While one account might have the ability to create tables and delete data in all databases, another may only be able to view data in a single database.These permissions are different from those that can be set through AD and NTFS, and they apply only within the database program. Database servers may also need to be secured through other roles that are used to access the database. For example, IIS is set up through the application role, and Web pages on the server can be used to access data stored in a database. Similarly, applications that are developed and made accessible from a terminal server may be used to view and manipulate database information. 78 Chapter 3 • Planning Server Roles and Server Security 301_BD_w2k3_03.qxd 5/12/04 10:56 AM Page 78 To control access to the database server, you can use settings configured through a data source name (DSN).A DSN is commonly used by compiled and Web-based programs to gain access to data that is stored in data management systems and data files.A DSN contains information on the database name, the server it resides on, and the directory in which it’s stored (if a data file is used). It also holds the username, password, and driver to use when making the connection. Programs use information in the DSN to connect to the data source, make queries, and manipulate data.To create or modify a DSN, use the Data Sources (ODBC) applet (select Start | Administrative Tools | Data Sources (ODBC)). Because a DSN provides the username and password to use when connecting to the data source, a number of security-related issues arise from its use. Any passwords that are used should follow the recommendations for strong passwords that were discussed earlier in this chapter. In cases where a DSN is being used to connect to a SQL Server database, you also have the option of using Windows authentication or SQL Server authentication. If SQL Server authentication is used, you can enter the username and password of an account created in SQL Server. However, you should avoid entering the name of any accounts with access higher than the user will need. For example, entering the system administrator account (sa) would provide a DSN with full access to SQL Server and could maliciously or accidentally cause problems.To avoid possible damage to data or access violations, you should provide the username and password of a SQL Server account that has restricted access. Securing Mail Servers When Windows Server 2003 is configured with the mail server role, it should be set up to require secure authentication from e-mail clients. As mentioned earlier, clients retrieve their e-mail from mail servers using the POP3 protocol. Client software and the mail server’s POP3 service can be configured to accept only passwords that are encrypted in order to prevent them from being inter- cepted by unauthorized parties. In Windows Server 2003, the Microsoft POP3 Service uses Secure Password Authentication (SPA) to ensure that authentication between the mail server and clients is encrypted. SPA is inte- grated with AD, which is used to authenticate users as they log on to retrieve their e-mail. In cases where domain controllers are not used, SPA can authenticate to local accounts on the mail server. When the POP3 service is configured to accept only authentication using SPA, clients must also be configured to use encrypted authentication. If they are not, clients will attempt to authenticate using cleartext (which is plaintext, or unencrypted data) and will be rejected by the mail server. To prevent mail servers from filling up with undeleted or unchecked e-mail, disk quotas should also be implemented. Disk quotas can be used only on NTFS partitions. When NTFS is used, per- missions can also be set on the directories that store e-mail, preventing unauthorized parties from accessing it on the server. Securing Certificate Authorities In addition to the basic server hardening techniques mentioned, a CA needs additional levels of security applied it. Recall that a root CA resides at the top of the hierarchy, with subordinate CAs existing below it. Because the root CA is the most trusted one in a hierarchy, any CAs below it automatically trust it.These subordinate CAs use the root CA’s public key and bind it to its own identity. In doing so, the subordinate can also issue certificates to users and computers. Planning Server Roles and Server Security • Chapter 3 79 301_BD_w2k3_03.qxd 5/12/04 10:56 AM Page 79 Because of the trust between root and subordinate CAs, if the root CA is compromised, subor- dinate CAs continue trusting it.This compromises all certificates issued by the CAs in the hierarchy. As a security measure, you should disable the root CA’s ability to issue certificates online and allow only child CAs to perform this function. An offline root CA is more difficult to compromise, since physical access to it is required. When certificates are found to be invalid, they should immediately be revoked. After a certifi- cate is revoked, the CRL should be immediately updated and published.The CRL is used to inform the world of certificates that are no longer valid. If the certificate is invalid, the software used to check it often allows the user to decide whether or not to trust the certificate holder. Securing Application and Terminal Servers Application and terminal servers are also configurable server roles that need additional steps to ensure that they are secure. Users are able to access applications across the network and execute them on servers using each of these roles. Because of the importance of many network-accessed applications, and the damage that can be done if they are exploited, it is essential that these roles are protected. Application Servers Application servers provide access to a wide variety of data on the network, and they need to be hardened using the methods discussed earlier. Using NTFS and enabling EFS where appropriate will help secure data. Configuring IPSec for transmission of highly sensitive files may also be appropriate for some application servers. Servers configured in the application server role also have IIS 6.0 installed by default. IIS lets the application server provide Web-based applications to users of the network. Because the application server may have a Web server installed on it, steps need to be taken to ensure the Web server is also secure. Terminal Servers Because terminal servers provide access to applications and data, setting permissions on connections is important so you can control who can access a server and perform specific tasks.This is in addi- tion to the permissions that can be set on files accessed by users in a terminal server session. By lim- iting access in these ways, you can control who is able to use files and applications and what actions they are able to perform.Terminal Server is discussed in more detail later in this book. Custom Security Templates Windows Server 2003 provides several pre-defined security templates you can modify and cus- tomize for your organization’s particular needs.You can create custom security templates in a number of ways.As described earlier, modifying the results of an analysis using Security Configuration and Analysis, and then exporting the changes to a new template file, is one way to create a custom security template. In addition, you can create custom security templates using the Security Templates snap-in. The Security Templates snap-in allows you to modify existing templates and create new ones from scratch. Security templates are discussed in detail in “Security Templates and Software Updates” later in this book. 80 Chapter 3 • Planning Server Roles and Server Security 301_BD_w2k3_03.qxd 5/12/04 10:56 AM Page 80 Security Templates and Software Updates In this chapter: ■ Security Templates ■ Software Updates Introduction In the last chapter, we looked at planning server roles and associated security measures. In this chapter we will examine two of Microsoft’s key security tools for Windows Server 2003, the Security Configuration and Analysis management console and the Software Update Service. The Security Configuration and Analysis management console provides a utility for testing baseline security settings and a method for applying a consistent security config- uration to machines throughout the enterprise.The Software Update Service provides a mechanism to consistently apply hot fixes and updates to all Microsoft systems in your enterprise. When used together, the Security Configuration and Analysis tool and the Software Update Service are intended to reduce administrative overhead while pro- viding consistent application of current security settings to all Microsoft-based machines in your network. With the release of Service Pack 4 (SP 4) for Windows NT 4.0, Microsoft intro- duced a new security configuration tool to ease administration of your Windows NT network.The release of the NT 4.0 Service Pack 4 CD introduced the Security Configuration Manager (SCM).The Security Configuration Manager is a product orig- inally designed for Windows NT 5.0 (now known as Windows 2000). Now, with the release of Windows Server 2003, Microsoft continues to expand on the functionality of the Security Configuration Manager with the Security and Configuration Analysis man- agement console.The Security Configuration and Analysis utility provides a tool for configuring, comparing, and applying security templates. Chapter 4 81 301_BD_w2k3_04.qxd 5/12/04 10:57 AM Page 81 Security Templates A security template is a Windows initialization (.ini) file that lists configuration parameters for various operating system settings for different server types. Using the Security Configuration and Analysis utility, you can analyze the current configuration of your server.This analysis creates a template for the existing system configuration while comparing the system configuration against a preconfigured tem- plate.The security template is divided into the following seven areas: ■ Account Policies ■ Local Policies ■ Event Log ■ Restricted Groups ■ System Services ■ Registry ■ File System Account Policies determine password policy, account lockout policy, and Kerberos policy. Through this portion of the security template you can configure password complexity, password his- tory, and other password characteristics. Also, through the account policy settings, you can configure account lockout threshold and duration. Local Policies determine auditing policy, user rights assignment, and security options.Through Local Policy subcategories, you can configure system access settings, recovery options, system control permissions, account and system manipulation, and event auditing. Event Log configurations modify application, system, and security Event Log settings.Through this category, you can configure event log storage capabilities and features. The Restricted Groups category controls membership of security-sensitive groups.Through this category, group membership settings can be enforced and forced to override administrative changes to account settings that conflict with Restricted Groups membership settings. The System Services category controls startup and permissions for system services.This configu- ration option helps to regulate system services available on the particular system.This carries an ele- vated level of importance for publicly connected servers, such as Web servers and VPN gateways, for example. Publicly connected servers are exposed to malicious attacks from anywhere in the world. It is considered best practice to enable only services that are needed by the server. Maintaining unneeded services increases the potential vulnerabilities on the server. Different services are known to have certain vulnerabilities. For example, IIS has had a long list of buffer overflow vulnerabilities discovered and subsequently patched. If the machine is not being used as a Web server, there is no need to support IIS and maintain its series of patches and updates. The Registry category offers configuration options for permissions for registry keys.This helps to control unwanted modification of registry values by users or programs operating under the context of particular users. 82 Chapter 4 • Security Templates and Software Updates 301_BD_w2k3_04.qxd 5/12/04 10:57 AM Page 82 The File System category provides options to control permissions for folders and files. Figure 4.1 illustrates the Security Configuration and Analysis management console with a domain con- troller DC security template compared against the existing system configuration. In the next section, we will look at the different types of security templates and explore the uses of and differences between each. Types of Security Templates Microsoft offers several preconfigured security templates through the Security Configuration and Analysis utility as well as online.You can apply a preconfigured security template to your system or use it to compare your existing configuration settings to predetermined settings provided by the security template.Templates are available for several configuration scenarios. Microsoft provides tem- plates for the following: ■ Default security (Setup security.inf ) ■ Compatible (Compatws.inf ) ■ Secure (Secure*.inf ) ■ Highly Secure (hisec*.inf ) ■ System root security (Rootsec.inf ) ■ No Terminal Server user SID (Notssid.inf ) The Default security template represents the default settings that are applied during installation of the operating system.This template also applies the default file permissions for the root of the system drive with the post-installation settings.This template was primarily designed for disaster recovery scenarios. The Compatible security template modifies the permissions on files and registry settings to loosen the restrictive standard security settings for user accounts.This template provides limited capabilities for user accounts when compared to Power Users but provides greater freedom and capabilities than a standard user account. Security Templates and Software Updates • Chapter 4 83 Figure 4.1 Security Configuration and Analysis Management Console 301_BD_w2k3_04.qxd 5/12/04 10:57 AM Page 83 The Secure security template increases security by modifying the password, lockout, and audit settings.This template increases security without adversely affecting application compatibility.Also, the Secure security template permits network authentication only through NT LAN Manager ver- sion 2 (NTLMv2). Microsoft network clients typically rely on LAN Manager and NTLM for net- work authentication. Windows for Workgroups, Windows 95, and Windows 98 clients that do not have the Directory Service client pack installed do not have NTLMv2 capabilities. Windows 95 and Windows 98 clients with the Directory Service client pack installed and Windows ME clients have provisions for NTLMv2 authentication. The Highly Secure security template increases the security level provided by the Secure security template.The features modified by this template include the following: ■ LAN Manager and NTLM authentication are refused ■ Domain-to-member and domain-to-domain trust relationships require strong encryption and SMB packet signing ■ All members of the Power Users group are removed ■ Only Domain Admins and the local Administrator account remain members of the local Administrators group The System root security template provides the same level of permissions as the default Windows XP file and folder permissions for the root system drive.This template can be used to reapply the default permissions to the root system drive if those permissions have been inadvertently modified or it can be used to apply the default permissions levels to other drives or volumes. The No Terminal Server user SID security template removes the Terminal Server user SIDs that are used by Terminal Servers running in Application Mode.Terminal Server user SIDs provide access control for users logged in to Terminal Servers running in application mode.The Terminal Server user SIDs control access to the file system and default registry locations. Microsoft recommends running the Terminal Server in Full Security mode instead of removing the Terminal Server user SIDs to secure Terminal Servers.This template is generally used on a system that will not be used as a terminal server. Network Security Settings It was noted in the previous section that the use of Secure and Highly Secure security templates affects the authentication mechanisms used in network communication. Several of the security options under Local Policy affect network security for clients and servers.The Security Options listed under Local Policies provides several network security configuration options: ■ Network security: Do not store LAN Manager hash value on next password change ■ Network security: Force logoff when logon hours expire ■ Network security: LAN Manager authentication level ■ Network security: LDAP client signing requirements 84 Chapter 4 • Security Templates and Software Updates 301_BD_w2k3_04.qxd 5/12/04 10:57 AM Page 84 ■ Network security: Minimum session security for NTLM SSP-based (including secure RPC) clients ■ Network security: Minimum session security for NTLM SSP-based (including secure RPC) servers The Network security: Do not store LAN Manager hash value on next password change security setting controls whether the weak LAN Manager (LM) hash value for the password will be stored in the local database next time the password is changed.The LM value is stored on the local computer in the security database. If the local computer’s security database becomes compromised, the LM value might be used to extract the user’s password.This setting is disabled by default. The Network security: Force logoff when logon hours expire security setting affects users connected to the local computer through a network connection by manipulating the Server Message Block (SMB) communication between the systems.This setting, enabled by default, will disable network connectivity between the user’s PC and the server configured with this security setting. The Network security: LAN Manager authentication level security setting affects the authentication protocols used by clients and servers in a Microsoft network.Table 4.1 illustrates the relationship between security settings, client authentication protocol selection, and server authentication protocol selection. Table 4.1 Relationships between Client and Server Authentication Settings Settings Clients Domain Controllers LM NTLM NTLMv2 LM NTLM NTLMv2 Send LM & NTLM Yes Yes No Accepted Accepted Accepted responses Send LM & NTLM— Yes Yes Yes* Accepted Accepted Accepted use NTLMv2 session security if negotiated Send NTLM No Yes Yes* Accepted Accepted Accepted response only Send NTLMv2 No No Yes Accepted Accepted Accepted response only Send NTLMv2 No No Yes Refused Accepted Accepted response only\ refuse LM Send NTLMv2 No No Yes Refused Refused Accepted response only\ refuse LM & NTLM *If supported by the server Normally, LAN Manager and NTLM authentication are used by Microsoft systems for net- work authentication. Implementing Secure and Highly Secure security templates affects network secu- rity by altering the typical LAN Manager and NTLM authentication request protocols. Security Templates and Software Updates • Chapter 4 85 301_BD_w2k3_04.qxd 5/12/04 10:57 AM Page 85 . clients.This isn’t the case if the rogue DHCP server is running Windows 2000 or Windows Server 2003, because these must be authorized in AD. If the server determines that it is not authorized, the DHCP. connect to a SQL Server database, you also have the option of using Windows authentication or SQL Server authentication. If SQL Server authentication is used, you can enter the username and password. can be authenticated through either Windows authentication or separate accounts created within SQL Server. Regardless of the authentication mode used, like many database applications, SQL Server

Ngày đăng: 04/07/2014, 23:20

Mục lục

  • The Best Damn Windows Server 2003 Book Period

    • Cover

    • Contents

    • Foreword

    • Chapter 1 Overview of Windows Server 2003

      • Introduction

        • Windows XP/Server 2003

        • What's New in Windows Server 2003?

          • New Features

            • New Active Directory Features

            • Improved File and Print Services

            • Revised IIS Architecture

            • Enhanced Clustering Technology

            • New Networking and Communications Features

            • Improved Security

            • Better Storage Management

            • Improved Terminal Services

            • New Media Services

            • XML Web Services

            • The Windows Server 2003 Family

              • Why Four Different Editions?

              • Members of the Family

                • Web Edition

                • Standard Edition

                • Enterprise Edition

                • Datacenter Edition

                • Licensing Issues

                  • Product Activation

Tài liệu cùng người dùng

  • Đang cập nhật ...

Tài liệu liên quan