Which of the following prevents XSS attacks?
A. access checks
B. input validation
C. fuzzing
D. strong authentication
B
Explanation: Proper validation of all input should be performed to prevent this type of attack. This involves identifying all user-supplied input and testing all output.
Computer Science & Information Technology
You might also like to view...
You cannot run a Make Table query if a table with that name already exists in the database
Indicate whether the statement is true or false
Computer Science & Information Technology
Answer the following questions true (T) or false (F)
1. In a sorting an array, the items in the array are rearranged so that for all j and k, if j < k, then array[j]<=array[k] 2. In the definition, double d[10] = {0.0}; only d[0] is initialized to zero, the rest are uninitialized, just like x in the definition double x;
Computer Science & Information Technology