Match each vulnerability assessment and security testing method to its corresponding operational characteristic.
- Credentialed Vulnerability ScanningUses administrative credentials to query target systems directly for missing security patches and misconfigurations.
- Static Application Security Testing (SAST)Analyzes application source code or compiled binaries from an internal perspective without executing the code.
- Dynamic Application Security Testing (DAST)Evaluates a running application by sending simulated attacks from an external perspective to discover runtime flaws.
- Passive Network Vulnerability MonitoringInspects mirrored packet flows to identify host OS versions and unencrypted protocols without sending probe traffic.
Answer
Credentialed Scanning pairs with direct host queries using administrative rights; SAST pairs with non-execution analysis of source code; DAST pairs with external black-box testing of running applications; Passive Monitoring pairs with analyzing mirrored packet flows without active probes.
Each security assessment method maps directly to its core function: credentialed scanning uses administrative access for host audits; SAST analyzes uncompiled/static code; DAST tests executing web apps; and passive network monitoring analyzes mirrored traffic safely.
Step-by-Step Solution
Key Concept
Selecting appropriate vulnerability testing methodologies based on execution state, authentication level, and operational impact risk.