CSRF (Cross-Site Request Forgery) एक लॉग-इन उपयोगकर्ता के ब्राउज़र को किसी ऐसी साइट पर अनचाहे अनुरोध करने के लिए धोखा देता है जहाँ वे ऑथेंटिकेटेड हैं — उनकी सहमति के बिना क्रियाएँ (स्थानांतरण, परिवर्तन) करना, ब्राउज़र द्वारा क्रेडेंशियल/कुकीज़ के स्वचालित भेजे जाने का शोषण करना।
CSRF कैसे काम करता है
The attack exploits that browsers AUTO-SEND cookies (incl. session cookies) with requests:
1. a user is LOGGED IN to a site (has a session cookie)
2. the user visits a MALICIOUS page (or clicks a crafted link)
3. that page makes a request to the target site (e.g. a hidden form auto-submitting)
4. the browser AUTOMATICALLY includes the user's session cookie → the site thinks it's
a legitimate request from the user → performs the action (transfer money, change email)
→ the user unknowingly performs an action they didn't intend.
