- Home
- All questions
- Question 467
CISSP study material · question 467 of 500
A developer argues that moving all database access into stored procedures removes injection risk. Under what condition does OWASP say a stored procedure can still be injectable?
Show the answer
Answer: A. Where its own code concatenates query text with data or executes constructed statements dynamically.
OWASP notes that even when parameterised, stored procedures can still introduce injection if the procedure language concatenates queries and data or executes hostile data dynamically.
Source: OWASP Top 10 A05:2025 (OWASP) — OWASP Top 10:2025 A05 Injection > How to prevent