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 to get configuration values in laravel?
What does orm stand for?
How facades are different from dependency injection?
Explain how to resolve class instance out of the container in laravel?
Explain facades in laravel?
Is laravel built on symfony?
Define homebrew?
What do you know about service providers in laravel?
Which class is used to handle exceptions?
What is the use of route in laravel?
Explain extending bindings?
What is facade and how it is used in laravel?