200-201 · Question #387
How is SQL injection prevented?
The correct answer is A. validate and sanitize user input. SQL injection is a type of injection attack where malicious SQL statements are inserted into an entry field for execution. The primary way to prevent SQL injection is by validating and sanitizing user input. This involves checking the input for malicious content and ensuring it…
Question
How is SQL injection prevented?
Options
- Avalidate and sanitize user input
- Baddress space layout randomization
- Crun the web server as a nonprivileged user
- Dhost profiling
How the community answered
(35 responses)- A91% (32)
- B6% (2)
- D3% (1)
Explanation
SQL injection is a type of injection attack where malicious SQL statements are inserted into an entry field for execution. The primary way to prevent SQL injection is by validating and sanitizing user input. This involves checking the input for malicious content and ensuring it adheres to expected patterns. Prepared statements (parameterized queries) are also highly effective, as they treat user input as data rather than executable code. Implementing these practices ensures that any input received from users does not manipulate SQL queries in a harmful way.
Topics
Community Discussion
No community discussion yet for this question.