A team is using SonarQube to enforce secure coding standards. Which analysis approach is required to detect vulnerabilities related to improper handling of sensitive information in logs?
Taint analysis tracks data from source to sink to identify leaks.
Why this answer
Data flow analysis (or taint analysis) is required to track whether sensitive data reaches an insecure sink like a log file.