300-910 · Question #127
A DevOps team must ensure security throughout the CI/CD pipeline production and test these principles: Ensure vulnerabilities are found early in the development lifecycle. Use less resources for troub
The correct answer is C. SAST. To find vulnerabilities early in the development lifecycle, reduce troubleshooting resources, and minimize identification costs, Static Application Security Testing (SAST) is the most suitable secure DevOps testing method.
Question
- Ensure vulnerabilities are found early in the development lifecycle.
- Use less resources for troubleshooting.
- Minimize the cost for issue identification. Which secure DevOps testing method must be used?
Options
- ARASP
- BDAST
- CSAST
- Dunit testing
How the community answered
(53 responses)- A17% (9)
- B8% (4)
- C72% (38)
- D4% (2)
Why each option
To find vulnerabilities early in the development lifecycle, reduce troubleshooting resources, and minimize identification costs, Static Application Security Testing (SAST) is the most suitable secure DevOps testing method.
RASP (Runtime Application Self-Protection) integrates into an application to prevent attacks in real-time, but it does not primarily focus on finding vulnerabilities early in the development lifecycle.
DAST (Dynamic Application Security Testing) scans a running application, finding issues later in the development cycle, which typically incurs higher remediation costs compared to SAST.
SAST (Static Application Security Testing) analyzes source code without executing the application, enabling early detection of vulnerabilities ('shift left') in the development lifecycle, which significantly reduces troubleshooting resources and remediation costs.
Unit testing focuses on verifying individual code component functionality and is not designed for comprehensive security vulnerability detection across the codebase.
Concept tested: Static Application Security Testing (SAST) benefits.
Source: https://learn.microsoft.com/en-us/azure/security/develop/secure-devops-best-practices-static-analysis-dynamic-analysis
Topics
Community Discussion
No community discussion yet for this question.