Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
CORS Essentials

You're reading from   CORS Essentials Access web resources on different domains

Arrow left icon
Product type Paperback
Published in May 2017
Publisher
ISBN-13 9781784393779
Length 144 pages
Edition 1st Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
Rajesh Gunasundaram Rajesh Gunasundaram
Author Profile Icon Rajesh Gunasundaram
Rajesh Gunasundaram
Arrow right icon
View More author details
Toc

Table of Contents (10) Chapters Close

Preface 1. Why You Need CORS FREE CHAPTER 2. Creating Proxies for CORS 3. Usability and Security 4. CORS in Popular Content Management Frameworks 5. CORS in Windows 6. CORS in the Cloud 7. CORS in Node.js 8. CORS Best Practices Index

Protecting against cross-site request forgery (CSRF)

A CSRF attack is a malicious action that involves sending a request to any website that is already authenticated by the user. This way, it enables the attacker to perform any functionality in the target website via the browser of the user.

The best practice to prevent cross-site request forgery (CSRF) is to append unpredictable challenge tokens to requests and associate them with the user sessions. The unpredictable challenge tokens should be unique per user session or per request. These unpredictable challenge tokens should be verified to make sure the request is valid and is coming from a valid source. If the unpredictable challenge token is not valid, then the request is coming from a source other than the user, and that needs to be blocked.

Minimizing preflight requests

Preflight requests are sent by browsers in order to make sure that the actual requests are trusted by the servers. It means that the server will respond with the details...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime