教材原文段落
Many other attacks make use of cryptographic techniques as
well. For example, Chapter 14 describes the use of cryptographic
techniques in pass-the-hash and Kerberos exploitation, and Chapter 21,
“Malicious Code and Application Attacks,” describes the use of
cryptography in ransomware attacks. Summary
Asymmetric key cryptography, or public key encryption, provides an
extremely flexible infrastructure, facilitating simple, secure communication
between parties that do not necessarily know each other prior to initiating the
communication. It also provides the framework for the digital signing of
messages to ensure nonrepudiation and message integrity.
This chapter explored public key encryption, which provides a scalable
cryptographic architecture for use by large numbers of users. We also
described some popular cryptographic algorithms, and the use of link
encryption and end-to-end encryption. We introduced you to the public key
infrastructure, which uses certificate authorities (CAs) to generate digital
certificates containing the public keys of system users and digital signatures,
which rely on a combination of public key cryptography and hashing
functions. You also learned how to use the PKI to obtain integrity and
nonrepudiation through the use of digital signatures.
You learned how to
ensure consistent security throughout the cryptographic life cycle by adopting
key management practices and other mechanisms. We also looked at some of the common applications of cryptographic
technology in solving everyday problems. You learned how cryptography can
be used to secure email (using PGP and S/MIME), web communications
(using TLS), and both peer-to-peer and gateway-to-gateway networking
(using IPSec). Finally, we covered some of the more common attacks used by malicious
individuals attempting to interfere with or intercept encrypted
communications between two parties.
Such attacks include cryptanalytic,
replay, brute-force, known plaintext, chosen plaintext, chosen ciphertext, on-
中文直译 / 整理
许多其他攻击也利用了加密技术。 例如,第14章描述了加密技术在传递
哈希和Kerberos利用中的应用,而第21章“恶意代码与应用攻击”描述了
加密技术在勒索软件攻击中的应用。 摘要
非对称密钥加密,或公钥加密,提供了一种极为灵活的基础设施,使得尚未相
互认识的各方在开始通信前也能实现简单、安全的通信。 它还为消息的数字签
名提供了框架,以确保不可否认性性和消息完整性。 本章探讨了公钥加密,它为大量用户提供了可扩展的加密架构。 我们还描述了
一些流行的加密算法,以及链路加密和端到端加密的使用。 我们向您介绍了公
钥基础设施(PKI),该系统使用证书颁发机构(CA)生成包含系统用户公钥
和数字签名的数字证书,数字签名依赖于公钥加密与哈希函数的结合。 您还学
习了如何通过数字签名利用PKI实现完整性和不可否认性性。 您了解了如何通过采
用密钥管理实践和其他机制,确保在整个加密生命周期中保持一致的安全性。 我们还研究了加密技术在解决日常问题中的某些常见应用。 您学习了如何使用
加密技术保护电子邮件(使用PGP和S/MIME)、网络通信(使用TLS),以
及点对点和网关到网关的网络(使用IPSec)。
最后,我们介绍了一些恶意人员试图干扰或截获双方加密通信时常用的攻击方
式。 此类攻击包括密码分析、重放、暴力破解、已知明文、选择明文、选择密
文、
小白解释
场景先行:想象公司有一个客户订单系统:客户资料被别人看到是机密性问题,订单金额被偷偷改是完整性问题,系统打不开是可用性问题。教材这一页就是教你把事故先翻译成安全目标。
这一页真正想让你理解的是:完整性不只是防黑客篡改,也包括防授权用户误操作。
把它放进公司里看,关键不是背定义,而是判断:把泄露、篡改、宕机混在一起,就会选错控制措施。
你作为负责人可以这样想:先判断事故破坏了 CIA 哪一项,再选择对应控制:防泄露、防篡改、保可用。
本页术语用人话说:
完整性:完整性保证数据没有被未授权修改,并且仍然正确可信。
不可否认性:不可否认性让行为人事后不能抵赖自己做过某事。
加密:加密把内容变成未授权者看不懂的形式。
密码学:密码学用数学方法保护信息,常用于机密性、完整性、认证和不可否认性。
常见误区:不要把所有安全问题都归成“被黑了”。考试会逼你分清到底是泄露、篡改还是中断。
读完后用一句话复述:如果我是业务系统负责人,我会先识别风险,再选择控制,并保留能证明判断合理的证据。
考点提醒
考题会把“完整性:数据要正确、可信、未被乱改”包装成一个业务场景:有人要上线系统、处理事故、审供应商、分配权限或选择控制。
先抓题干里的角色和目标:这里更像是业务系统负责人在做判断。
最佳答案通常不是“最强工具”,而是能降低风险、符合职责、成本合理、还能留下证据的动作。
哈希、数字签名、变更控制、输入校验常对应完整性。
数字签名、审计日志、交易记录和证书常支持不可否认性。
加密主要保护机密性,也可配合签名、哈希支持完整性和真实性。
加密保护机密性,哈希保护完整性,数字签名支持完整性、真实性和不可否认性。
同一密钥、速度快、大数据加密常对应 symmetric。
排除法提醒:不要把所有安全问题都归成“被黑了”。考试会逼你分清到底是泄露、篡改还是中断。