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 |
How do you call artisan command in laravel?
What are the steps Redirecting to Named Routes in Laravel ?
How to create Controller Laravel - File Uploading ?
Why middleware is used in laravel?
Explain Events and Listeners ?
Why do we use laravel?
What is singleton in laravel?
How to use skip() and take() in laravel query?
What is a service provider laravel?
How to create route name in laravel 5?
Explain important directories used in a common laravel application.
What is luman?