The technique of _________ effectively limits SQL injection by stripping out SQL commands from user inputs.
- Code Obfuscation
- Data Encryption
- Input Sanitization
- Output Validation
Input Sanitization is a security technique that involves cleansing user inputs to remove potentially harmful content, such as SQL commands. This helps prevent SQL injection attacks by ensuring that only valid and safe data is processed.
Loading...
Related Quiz
- When retrieving the latest 10 records from a table sorted by date, the combination of Active Record Class methods to use is: ________.
- What is the primary purpose of pagination in a CodeIgniter application?
- In CodeIgniter, joining two tables using Active Record Class is accomplished with the ________ method.
- The CodeIgniter helper function ________ is used to set JSON content type in HTTP headers.
- The ________ method in CodeIgniter 4 Models allows for custom query building.