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 laravel illuminate?
Explain binding primitives?
What are contracts?
How to create real time sitemap.xml file in laravel?
How do you define middleware?
What is mvc in laravel?
What is response in laravel?
How to retrive all requested data in laravel?
Do you know what is method spoofing in laravel?
What is view laravel?
What is difference between var_dump and print_r?
What is a Retrieving Input ?