Question
Which of the following is the main risk associated with
Cross-Site Request Forgery (CSRF) attacks?Solution
Cross-Site Request Forgery (CSRF) attacks occur when an attacker tricks a user into performing unwanted actions on a web application in which they are authenticated. For example, the attacker can craft a malicious request that causes the victim's browser to submit an unauthorized action (such as transferring funds or changing account details) without their knowledge. The key danger is that the victim is still authenticated, and the web application believes the action is legitimate because it comes from the victim's browser. Option B is incorrect because inserting malicious code into a database refers to SQL Injection, not CSRF. Option C is incorrect since data interception during transmission is more related to a Man-in-the-Middle (MitM) attack, not CSRF. Option D is incorrect as overloading the server with traffic is a hallmark of a DDoS attack, not CSRF. Option E is incorrect, though CSRF attacks can sometimes target administrative actions; the main risk is performing unauthorized actions, not specifically gaining admin access.
- What will be the output of the following Java code snippet, which implements a simple ArrayList and performs an insertion and a retrieval? import java.util...
What is 'two-factor authentication' (2FA)?
- Which of the following is NOT a property of database transactions according to the ACID model?
- Which of the following is an example of Polymorphism in Object-Oriented Programming?
Consider a Binary Search Tree (BST) with the following values inserted in sequence: 45, 32, 50, 15, 40, 47, 60. What will be the in-order traversal of t...
Which numerical method is commonly used to find the roots of nonlinear equations in statistical computing?  Â
Which I/O scheduling algorithm prevents starvation of requests?
 The term "FAT" is stands for_____
In terms of processor performance, which factor has the greatest impact on reducing instruction execution time for computationally heavy applications? ...
In which scenario would para virtualization be preferred over full virtualization?Â