SQL ____________ is a technique that prevents SQL injection attacks by escaping special characters.

  • Encoding
  • Escaping
  • Filtering
  • Injection
SQL injection attacks occur when an attacker inserts malicious SQL code into input fields, exploiting vulnerabilities in the application's SQL query construction. Escaping special characters is a technique used to neutralize the effect of these characters, preventing them from being interpreted as part of the SQL query. This helps to ensure the integrity and security of the database.
Add your answer
Loading...

Leave a comment

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