medium
Single Answer
0Mikaela recently completed a thorough risk analysis and mitigation review of the software developed by her team and identified three persistent issues: Cross-site scripting, SQL injection, and Buffer overflows. What is the most significant deficiency in her team's work identified by these issues?
Answer Options
A
Lack of API security
B
Improper error handling
C
Improper or missing input validation
D
Source code design issues
Correct Answer: C
Explanation
Each of these problems is caused by improper or missing input validation and can be resolved by handling inputs properly. In many cases, this can be done using libraries or methods already built into the language or framework that the developer is using.