Auto-sync: 2026-04-16 17:30

This commit is contained in:
2026-04-16 17:30:41 +08:00
parent b2250c60b2
commit c999498de4
662 changed files with 3797 additions and 21340 deletions

26
wiki/concepts/SAST.md Normal file
View File

@@ -0,0 +1,26 @@
---
title: "SAST静态应用安全测试"
type: concept
tags: [安全, 测试, 代码分析]
sources: [what-is-devsecops-best-practices-benefits-and-tools]
last_updated: 2026-04-16
---
## Definition
SASTStatic Application Security Testing是一种静态代码分析技术在不运行应用程序的情况下分析源代码以识别安全漏洞。
## Characteristics
- 在开发早期(编码阶段)使用
- 无需执行代码
- 可检测 SQL 注入、跨站脚本、缓冲区溢出等常见漏洞
- 集成到 IDE 和 CI/CD 流水线
## Tools
- SonarQube
- Checkmarx
- Fortify
## Connections
- [[DevSecOps]] ← uses ← [[SAST]]
- [[CI-CD-流水线]] ← integrates ← [[SAST]]
- [[SDLC]] ← embeds ← [[SAST]]