CCSK · Question #80
Which type of application security testing tests running applications and includes tests such as web vulnerability testing and fuzzing?
The correct answer is E. Dynamic Application Security Testing (DAST). Dynamic Application Security Testing (DAST) operates against running applications to find vulnerabilities through techniques like web scanning and fuzzing, unlike static methods that analyze code without execution.
Question
Which type of application security testing tests running applications and includes tests such as web vulnerability testing and fuzzing?
Options
- ACode Review
- BStatic Application Security Testing (SAST)
- CUnit Testing
- DFunctional Testing
- EDynamic Application Security Testing (DAST)
How the community answered
(31 responses)- A3% (1)
- B3% (1)
- C13% (4)
- D3% (1)
- E77% (24)
Why each option
Dynamic Application Security Testing (DAST) operates against running applications to find vulnerabilities through techniques like web scanning and fuzzing, unlike static methods that analyze code without execution.
Code Review is a manual or automated inspection of source code without executing the application, so it cannot perform runtime tests like fuzzing.
SAST analyzes source code, bytecode, or binaries without running the application, making it the opposite approach to DAST.
Unit Testing validates the correctness of individual code units or functions and is not a security testing methodology.
Functional Testing verifies that application features behave as specified, not that they are free of security vulnerabilities.
DAST tests applications in their running state by simulating external attacks, making it the category that encompasses web vulnerability scanning and fuzzing. Because it interacts with a live application, it can discover runtime issues such as injection flaws and authentication weaknesses that static analysis cannot detect. This distinguishes it from all other listed methods, which either analyze source code or test functionality rather than security.
Concept tested: Dynamic vs. static application security testing methods
Source: https://owasp.org/www-project-web-security-testing-guide/
Topics
Community Discussion
No community discussion yet for this question.