300-910 · Question #126
A DevOps team must select a method for the CI/CD pipeline with these characteristics: Ensure security throughout their CI/CD pipeline production Provide security for the testing environment. Discover
The correct answer is C. DAST. Dynamic Application Security Testing (DAST) is the appropriate secure DevOps testing method for discovering runtime and environmental-related security issues by testing the application while it is running.
Question
- Ensure security throughout their CI/CD pipeline production
- Provide security for the testing environment.
- Discover run-time related issues.
- Provide details on environmental related issues. Which secure DevOps testing method must be used?
Exhibit
Options
- ASAST
- Bunit testing
- CDAST
- Dstatic code analysis
How the community answered
(42 responses)- A5% (2)
- B7% (3)
- C71% (30)
- D17% (7)
Why each option
Dynamic Application Security Testing (DAST) is the appropriate secure DevOps testing method for discovering runtime and environmental-related security issues by testing the application while it is running.
SAST (Static Application Security Testing) analyzes source code without executing the application, thus it cannot discover runtime-related issues or environmental problems.
Unit testing focuses on verifying the functionality of individual code components and is not primarily a security testing method designed to find security vulnerabilities or runtime environmental issues.
DAST (Dynamic Application Security Testing) actively scans the running application, simulating attacks from the outside, making it ideal for finding runtime-related issues, environmental issues (like misconfigurations), and vulnerabilities that only manifest when the application is executed and interacted with.
Static code analysis is another name for SAST, which analyzes code without execution, therefore it cannot discover runtime or environmental issues.
Concept tested: Dynamic Application Security Testing (DAST) capabilities.
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.
