Files
nexus/wiki/concepts/SAST.md
2026-04-16 17:30:41 +08:00

26 lines
735 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
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]]