Parameterized queries help prevent _______ attacks by sanitizing user input.

  • Clickjacking
  • Cross-Site Request Forgery (CSRF)
  • Cross-Site Scripting (XSS)
  • SQL Injection
Parameterized queries help prevent SQL Injection attacks by ensuring that user input is treated as data rather than executable SQL code. By using parameterized queries, input is treated as literals and not as part of the SQL statement, reducing the risk of SQL Injection vulnerabilities.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *