CSRF (Cross-Site Request Forgery) ایک لاگ ان شدہ صارف کے براؤزر کو اس سائٹ پر ناپسندیدہ درخواستیں بھیجنے کے لیے فریب دیتا ہے جہاں وہ تصدیق شدہ ہیں — ان کی رضامندی کے بغیر اقدامات (منتقلی، تبدیلیاں) انجام دیتے ہوئے، براؤزر کے خودکار طور پر credentials/cookies بھیجنے کا فائدہ اٹھاتے ہوئے۔
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.
