The SUSE Linux Enterprise Server Security and Hardening Guide deals with the particulars of installation and set up of a secure SUSE Linux Enterprise Server server and additional post-install processes required to further secure and harden that installation. Security and hardening elements and procedures are best applied to a server both during installation and post-installation and aim to improve the fitness of the system for the purposes demanded by its administrator.
This guide supports administrator in making security related choices and decisions. The individual steps and procedures should be seen as proposals, not as strict rules. In many cases, you will have to evaluate the usefulness of measures for your organization yourself.
The objective is to improve the security value of the system. Definitions about the meaning of the term security vary, but we want to settle on one that is both simple and abstract:
A good system does what it is expected to do, and it does it well.
A secure system is a good system that does nothing else.
The focus of this guide lies on doing “nothing else”. The Linux system is constructed in such way that security policies are enforced. These policies consist of the following concepts (fairly generic and incomplete list):
DAC (Discretionary Access Control): File and directory permissions, as
set by chmod and chown.
Privileged ports: TCP and UDP ports 0-1023 as well as raw sockets can
only be used by root.
Other privileged operations: Loading kernel modules, configuring network interfaces, all security relevant settings of the Linux kernel. These are operations that can only be done by the root user, that is the user with the user ID 0, or any other process with the necessary capabilities.
Attacking a system means to attempt to overcome (for example, circumvent or break) these privilege boundaries in a way that the administrator of the system or the programmer of the corresponding subsystem has not taken into account.
A hardened system raises the bar by reducing the area that the system exposes to the attacker (often called attack surface). Besides that a hardened system can also provide measures to reduce the impact of vulnerabilities in the parts of the systems that must be exposed to a potential attacker.
Security is about decisions, and whenever security is in (apparent) opposition to function, these decisions become trade-offs. While it can be argued that all systems should be set up to be as securely as possible, some levels of security and hardening may very well be overkill in some cases. Each system's operational environment has its own security requirements derived from business drivers or regulatory compliance mandates. SUSE Linux Enterprise Server can, for example, be configured to comply with security standards, such as SOX, HIPAA and PCIDSS. It can also be set up to fulfill the requirements from the German Federal Office of Information Security (Bundesamt für Sicherheit in der Informationstechnik) as described in BSI TR-02102-1. An effective business requirements analysis should be performed in order to determine the right level of security and hardening to be applied to a server or defined as part of a baseline server build.
As a final note before we begin: You may encounter individual requirements in regulatory compliance frameworks that may not make sense from a technical perspective, or they do not serve the purpose of improving security. It may be a productive attitude to simply implement what is required, but whenever there is a contradiction to security, an informed discussion in the documentation serves the overall purpose of your regulative compliance framework much more than blindly obeying the specifications. Please feel encouraged to dispute list items that you think are counterproductive.
While in most cases in this document reference will be made to a single server target or host, the scope can generally be applied to more than one machine. We generally assume that the security target can cover one or more systems running SUSE Linux Enterprise Server.
We explicitly do not make any assumptions about the hostility of the network that the systems are connected to, or the cooperative nature of the users that leverage the services provided by the systems.
In turn, this means that you partially define your context on your own when reading through this document. You will need to broaden the meaning of individual portions to adopt it to your environment. In some cases, such as the use case of a server that is exposed to the Internet, this document may even be insufficient or incomplete; however, it may still serve as a good starting point on your journey towards an increased level of confidence that your system will behave like you want it to.
About trust: Trust relationships exist among all systems that participate in networked transactions. In this way, the trust relationship between the people that use the systems is transported across these systems. The chain that is formed by your trust relationships is only as strong as the weakest link. It is good practice to graphically visualize the trust relationships with the services in a schematic overview or map of your network. Generally, it is up to the owner of a resource to enforce the policies imposed on that resource; this would usually be the server that provides the resource. The client that opens a connection to request the resource can only be made responsible for the actions that it performs. This refers to the action of opening the connection to start with, but to nothing else as such.
The case of hostile users is special and unique: The Human Resources department may be able to solve some of your security problems in your computing environment at least as well as some technical measures can. Please make sure that the necessary regulations in your environment fit your needs, and that they back your intentions instead of obstructing them if you need to work around a missing support from your HR department (and your management).
Persons that have administrative privileges on a system are automatically considered trusted.
A Linux system - without any additional security frameworks such as SELinux - is a single level security system: From a security policy perspective there is only the superuser (root) and non-privileged users. System users are non-root user IDs that have access to files specific to their purpose. The separation of administrative duties is complicated by this simplicity. Some tools help: Make use of sudo(8) for administrative tasks, but be aware that once the privilege boundary is crossed, a program running with root privileges does not enforce any file access policies for non-privileged users any more. vi(1) that runs as root can read and write to any file in the system.
Another tool to mitigate the risk of abuse or accidental misuse of administrative privileges is NetIQ's Privileged User Manager product. More information is available here:
Physical security of the server is another assumption made here, where the server is protected from theft and manipulation by unauthorized persons. A common sobering thought amongst security professionals is the “ten-second Denial of Service”: Unplug the wires and reboot the server. Physical security must be ensured and physical access must be controlled. Otherwise, all assumptions about at least the availability of these systems are void.
The use of cryptography to protect the confidentiality of transactions with the services that your system provides is generally encouraged. The need to implement cryptographic enhancements is strongly dependent on the operational environments of all participating systems. Keep in mind that you need to verify all of the possible security benefits that cryptography can provide, for all of your services, and that these benefits are not delivered automatically just by turning on the “encrypt” option of your service (if you can enjoy the idyllic situation where encryption is available as a button to check):
Protection against reading the content of a transaction
Protection against knowing that a transaction exists, and some properties that it may have, such as size, identities of involved parties, their presence, ...
Protection against alteration of content. Be aware that cryptography does not automatically provide this kind of protection.
Protection against identity fraud. Cryptography that does not know about identities of participating entities cannot deliver this value.
Keep in mind that encryption of data for confidentiality purposes can merely reduce the size of the data to protect from the actual size to the size of the key that is used to encrypt the data. This results in a key exchange problem for encrypted transactions, and in a key management problem for encrypted data storage. Since data is (typically, there are exceptions!) processed in clear, you need your vault unlocked while data within is being worked with. The encryption of such data on the file system or block device layer helps against the theft of the system, but it does not help the confidentiality of the data while the system is running.
If you want to implement a consistent security policy covering multiple hosts on a network then organizational procedures must ensure that all those hosts can be trusted and are configured with compatible security configurations enforcing an organization wide security policy. Isolation of groups of systems that maintain data of the same trust domain can provide an adequate means of control; ultimately, the access controls to these systems, both for end users and for other systems, need to be carefully designed, configured, inspected and monitored.
Data can only be trusted to the degree that is associated with the domain it comes from. If data leaves the domain in which security policies can be enforced, it should consequently be associated with the trust of the target domain.
For a review of industry best practices on security, the development of sound security processes, controls, development, reviews, audit practices and incident management, you can review a public RFC (request for comments). RFC 2196 is the ongoing work of the world-wide community and individual security and process experts. You can review it online here: http://www.faqs.org/rfcs/rfc2196.html. An RFC is an open and living document that invites comments and review. Enhancements and improvements are welcome; you will find instructions on where to send those suggestions within the document itself.
This guide provides initial guidance on how to set up and secure a SUSE Linux Enterprise Server installation but it is not intended to be the only information required for a system administrator to learn how to operate Linux securely. Assumptions are made within this guide that the reader has knowledge and understanding of operating security principles in general, and of Linux administrative commands and configuration options in particular.
Part I, “Common Criteria” contains a reference to Common Criteria and SUSE Linux Enterprise Server. Part II, “General System Security and Service Protection Methods” contains more general system security and service protection schemes.
我們提供不同語言的 HTML 和 PDF 版本的書籍。下列使用者和管理員手冊適用於本產品:
列出系統要求,並提供透過 DVD 或 ISO 影像安裝 SUSE Linux Enterprise Server 的分步指南。
顯示如何安裝單個或多個系統,以及如何利用產品內在功能部署基礎結構。從本地安裝或使用網路安裝伺服器,到使用遠端控制、高度自訂及自動安裝技術進行大量部署,有各式各樣的做法供您選擇。
描述系統管理任務,如維護、監控及自訂初始安裝的系統。
概述虛擬化技術,並介紹虛擬化的整合式介面 libvirt,以及關於特定監管程式的詳細資訊。
提供關於如何管理 SUSE Linux Enterprise Server 上儲存裝置的資訊。
AutoYaST 這套系統會利用包含安裝和組態資料的 AutoYaST 設定檔,無需使用者介入即可自動安裝一或多個 SUSE Linux Enterprise 系統。該手冊會指引您完成自動安裝的基本步驟:準備、安裝及設定。
介紹系統安全性的基本概念,涵蓋了本地安全性與網路安全性方面。說明如何使用產品固有的安全軟體 (例如 AppArmor),或者能夠可靠收集關於任何安全相關事件之資訊的稽核系統。
說明安裝和設定安全 SUSE Linux Enterprise Server 的詳情,以及進一步保護和強化該安裝所需的其他安裝後程序。為管理員提供安全性相關的選項和決策。
用於偵測、解決及最佳化問題的管理員指南。其中描述了如何透過監控工具檢查並最佳化系統,以及如何有效管理資源。該指南還概述了常見問題與解決方案,以及其他說明與文件資源。
介紹 SUSE Linux Enterprise Server 的 GNOME 桌面。本指南將引導您使用與設定桌面,並協助您執行主要任務。主要適用對象為希望將 GNOME 做為預設桌面有效利用的終端使用者。
大部分產品手冊的 HTML 版本位於所安裝系統的 /usr/share/doc/manual 目錄下,或桌面系統的說明中心中。http://www.suse.com/doc 中提供了最新的文件更新,您可於此處下載 PDF 或 HTML 版本的產品手冊。
以下為可供使用的數種意見回應管道:
有關適用於產品的服務與支援選項,請參閱 http://www.suse.com/support/。
若要報告產品元件的錯誤,請造訪 http://www.suse.com/mysupport 並登入,然後選取。
我們希望得到您對本手冊以及本產品隨附之其他文件的意見和建議。請使用線上文件每頁底部的「使用者備註」功能,或造訪 http://www.suse.com/doc/feedback.html 在其中輸入您的意見。
如需本產品文件的回饋,您還可以傳送郵件至 doc-team@suse.de。請務必包含文件標題、產品版本以及文件發行日期。若要報告錯誤或對增強功能提出建議,請提供問題的簡短描述,並指出對應的章節編號及頁碼 (或 URL)。
本手冊使用下列印刷慣例:
/etc/passwd:目錄名稱與檔案名稱
placeholder:以實際的值來取代 placeholder
PATH:環境變數 PATH
ls、--help:指令、選項和參數
user:使用者或群組
Alt、Alt–F1:供人按下的按鍵或按鍵組合;顯示的按鍵與鍵盤上一樣為大寫
、 › :功能表項目、按鈕
x86_64 本段落內容僅與 x86_64 架構有關。箭頭標示了文字區塊的開頭與結尾。
POWER, System z
本段落內容僅與 System z 和 POWER 架構相關。箭頭標示了文字區塊的開頭與結尾。
Dancing Penguins (「Penguins」一章,↑另一本手冊):這是對另一本手冊中某一章的參考。