博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
微软的STRIDE模型
阅读量:5040 次
发布时间:2019-06-12

本文共 2245 字,大约阅读时间需要 7 分钟。

微软的STRIDE模型:

https://msdn.microsoft.com/en-us/library/ee823878(v=cs.20).aspx

  • Spoofing identity. An example of identity spoofing is illegally accessing and then using another user's authentication information, such as username and password.——认证(密码、SSL、TLS、SSH...)
  • Tampering with data. Data tampering involves the malicious modification of data. Examples include unauthorized changes made to persistent data, such as that held in a database, and the alteration of data as it flows between two computers over an open network, such as the Internet.——完整性(Hash、数字签名、ACL...)
  • Repudiation. Repudiation threats are associated with users who deny performing an action without other parties having any way to prove otherwise—for example, a user performs an illegal operation in a system that lacks the ability to trace the prohibited operations. Nonrepudiation refers to the ability of a system to counter repudiation threats. For example, a user who purchases an item might have to sign for the item upon receipt. The vendor can then use the signed receipt as evidence that the user did receive the package.——防抵赖(认证、审计日志...)
  • Information disclosure. Information disclosure threats involve the exposure of information to individuals who are not supposed to have access to it—for example, the ability of users to read a file that they were not granted access to, or the ability of an intruder to read data in transit between two computers.——机密性(加密、ACL...)
  • Denial of service. Denial of service (DoS) attacks deny service to valid users—for example, by making a Web server temporarily unavailable or unusable. You must protect against certain types of DoS threats simply to improve system availability and reliability.——可用性(负载平衡、过滤、缓存...)
  • Elevation of privilege. In this type of threat, an unprivileged user gains privileged access and thereby has sufficient access to compromise or destroy the entire system. Elevation of privilege threats include those situations in which an attacker has effectively penetrated all system defenses and become part of the trusted system itself, a dangerous situation indeed.——授权(权限最小化、沙箱...)
  S T R I D E
外部交互方 Y   Y      
处理过程 Y Y Y Y Y Y
数据存储   Y Y Y Y  
数据流   Y   Y Y  

数据存储中有日志时,有R抵赖威胁。

 

转载于:https://www.cnblogs.com/cqufengchao/p/6426040.html

你可能感兴趣的文章
输入月份和日期,得出是今年第几天
查看>>
利用mysqldump备份mysql
查看>>
Qt中子窗口全屏显示与退出全屏
查看>>
使用brew安装软件
查看>>
[BZOJ1083] [SCOI2005] 繁忙的都市 (kruskal)
查看>>
吴裕雄 python 机器学习——数据预处理嵌入式特征选择
查看>>
Centos6.4安装JDK
查看>>
201521123069 《Java程序设计》 第4周学习总结
查看>>
线性表的顺序存储——线性表的本质和操作
查看>>
【linux】重置fedora root密码
查看>>
用swing做一个简单的正则验证工具
查看>>
百度坐标(BD-09)、国测局坐标(火星坐标,GCJ-02)和WGS-84坐标互转
查看>>
pig自定义UDF
查看>>
输入名字显示其生日,没有则让输入生日,做记录
查看>>
爬虫综合大作业
查看>>
Kubernetes 运维学习笔记
查看>>
并查集 经典 畅通工程
查看>>
Spark MLlib 之 Naive Bayes
查看>>
php修改SESSION的有效生存时间
查看>>
spring security 11种过滤器介绍
查看>>