A common method to prevent stored XSS attacks is to store user input in its ________ form.
- Encoded
- Original
- Encrypted
- Compressed
Storing user input in its encoded form can prevent stored Cross-Site Scripting (XSS) attacks, as the data is less likely to be executed as code.
Loading...
Related Quiz
- What is the actually used PHP version?
- In a PHP switch statement, what does the case keyword represent?
- The value of a class constant in PHP can be changed after it is defined.
- The filter_var() function in PHP with the FILTER_VALIDATE_INT filter is used to check if a variable is an ______.
- The elseif statement in PHP can be used to test multiple conditions.