教材原文段落
cryptography, and time synchronization of systems to issue tickets. RADIUS
and TACACS+ are common authentication, authorization, and accounting
(AAA) protocols. Access control attacks include privilege escalation techniques to gain more
rights and permissions. Passwords are a common authentication mechanism,
and several types of attacks attempt to crack passwords. Password attacks
include dictionary attacks, brute-force attacks, spraying attacks, credential
stuffing attacks, birthday attacks, rainbow table attacks, pass-the-hash
attacks, Kerberos exploitation attacks, and sniffer attacks. Study Essentials
Identify common authorization mechanisms.
Authorization ensures
that the requested activity or object access is possible, given the authenticated
identity's privileges. For example, it ensures that users with appropriate
privileges can access files and other resources. Common authorization
mechanisms include implicit deny, access control lists, access control
matrices, capability lists, constrained interfaces, content-dependent controls,
and context-dependent controls. These mechanisms enforce security
principles such as need to know, the principle of least privilege, and
separation of duties. Describe key concepts of the discretionary access control (DAC)
model.
With the DAC model, all objects have owners, and the owners can
modify permissions. Each object has an access control list defining
permissions, such as read and modify for files. All other models are
nondiscretionary models, and administrators centrally manage
nondiscretionary controls. Describe key concepts of the role-based access control (RBAC)
model. RBAC models use job roles, and users gain privileges when
administrators place their accounts into a role or group. Taking a user out of a
role removes the permissions granted through the role membership. Describe key concepts of the rule-based access control model.
Rule-based access control models use a set of rules, restrictions, or filters to
determine access. A firewall's access control list includes a list of rules that
define what access is allowed and what access is blocked. Describe key concepts of the attribute-based access control (ABAC)
model. An ABAC model is an advanced implementation of a rule-based
中文直译 / 整理
加密和系统的时间同步来发放票据。 RADIUS 和 TACACS+ 是常见的身份验
证、授权和计费(AAA)协议。 访问控制攻击包括权限提升技术,以获取更多权利和权限。 密码是一种常见的
身份验证机制,多种类型的攻击试图破解密码。 密码攻击包括字典攻击、暴力
破解攻击、密码喷洒攻击、凭证填充攻击、生日攻击、彩虹表攻击、传递哈希
攻击、Kerberos利用攻击和嗅探攻击。 学习要点
识别常见的授权机制。 授权确保在给定已验证身份的权限下,所请求的活动或对
象访问是可能的。 例如,它确保具有适当权限的用户可以访问文件和其他资源。 常见的授权机制包括隐式拒绝、访问控制列表、访问控制矩阵、能力列表、受限
接口、内容相关控制和上下文相关控制。 这些机制强制执行安全原则,如按需知
晓、最小权限原则和职责分离。 描述自主访问控制(DAC)模型的关键概念。 在DAC模型中,所有对象都有所
有者,所有者可以修改权限。 每个对象都有一个访问控制列表,定义权限,例
如文件的读取和修改权限。 所有其他模型均为非自主模型,管理员集中管理非
自主控制。 描述基于角色的访问控制(RBAC)模型的关键概念。
RBAC 模型使用职位角色,
当管理员将用户的账户分配到某个角色或组时,用户便获得相应的权限。 将用户
从角色中移除会撤销通过角色成员资格授予的权限。 描述基于规则的访问控制模型的关键概念。 基于规则的访问控制模型使用一
组规则、限制或过滤器来确定访问权限。 防火墙的访问控制列表包含一组规
则,用于定义允许和阻止的访问权限。 描述基于属性的访问控制(ABAC)模型的关键概念。 ABAC模型是基于规则的
小白解释
场景先行:新员工入职后要登录系统。第一步是声明身份,第二步证明身份,第三步决定能访问哪些数据,最后系统要记录他做了什么。IAM 题就是围绕这条链条出题。
这一页真正想让你理解的是:CIA 是目标,DAD 是失败表现,AAA 是访问控制和问责链。
把它放进公司里看,关键不是背定义,而是判断:认证成功不代表什么都能做;离职、调岗、权限漂移都会造成越权。
你作为负责人可以这样想:把识别、认证、授权、审计分开看,再用最小权限和定期复核收口。
本页术语用人话说:
AAA 服务:AAA 常说认证、授权、记账,但完整链条还包括识别和审计。
认证:认证是验证“你是不是你声称的那个人”。
授权:授权是认证之后决定你能访问什么、能做什么。
加密:加密把内容变成未授权者看不懂的形式。
常见误区:不要把 authentication 和 authorization 混成一件事:前者证明你是谁,后者决定你能干什么。
读完后用一句话复述:如果我是IAM 管理员,我会先识别风险,再选择控制,并保留能证明判断合理的证据。
考点提醒
考题会把“DAD、过度保护、真实性、不可否认性与 AAA”包装成一个业务场景:有人要上线系统、处理事故、审供应商、分配权限或选择控制。
先抓题干里的角色和目标:这里更像是IAM 管理员在做判断。
最佳答案通常不是“最强工具”,而是能降低风险、符合职责、成本合理、还能留下证据的动作。
Identification 是声称身份,Authentication 是证明身份,Authorization 是允许做什么。
密码、令牌、生物特征、多因素认证都服务认证。
认证成功不等于什么都能做;权限仍要单独授权。
加密主要保护机密性,也可配合签名、哈希支持完整性和真实性。
看到 SP 800 系列、CSF、RMF 常联想到 NIST。
排除法提醒:不要把 authentication 和 authorization 混成一件事:前者证明你是谁,后者决定你能干什么。