Joe a web developer wants to make sure his application is not susceptible to cross-site request forgery attacks. Which of the following is one way to prevent this type of attack?
A. The application should always check the HTTP referrer header
B. The application should always check the HTTP Request header
C. The application should always check the HTTP Host header
D. The application should always use SSL encryption
Answer: D. The application should always use SSL encryption
You might also like to view...
A function-message must be sent from a place where a(n) ____ can appear.
A. property B. control C. value D. object
Putting the keyword const after the function declaration guarantees __________________________
Fill in the blank(s) with the appropriate word(s).
Answer the following statements true (T) or false (F)
1. The last item entered onto a stack is the first item removed from that stack. 2. A queue is similar to a stack in that items are entered and removed in the same order. 3. When an array is used to implement a stack or a queue, the entire array is allocated at once, whether or not it is all needed. 4. Attempting to reference a list node after the node is returned to the heap causes the compiler to generate an error message. 5. When the operator new returns a zero pointer, it means that all of the cells on the heap have been allocated.
____ is the detailed specification of how all the parts of a system will be implemented and coordinated.
A. System detailing B. System design C. Program detailing D. Program design