what is meant by CSRF Protection in Laravel ?
Answer / sunil kumar
CSRF refers to Cross Site Forgery attacks on web applications. CSRF attacks are the unauthorized activities which the authenticated users of the system perform.
Laravel offers CSRF protection in the following way -
Laravel includes an in built CSRF plug-in, that generates tokens for each active user session. These tokens verify that the operations or requests are sent by the concerned authenticated user.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is namespace in php laravel?
How to start valet?
Explain the difference between laravel and codeigniter?
What does xss stand for?
What is laravel policy?
How to fetch data from database in laravel?
What is a composer, and how can we install laravel by the composer?
How can we use maintenance mode in laravel 5?
What is use in laravel?
How does antiforgerytoken work?
What is route parameters in laravel?
What are contracts?