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 |
Explain short brief on Facades in Laravel ?
Do you know what is php artisan.
Explain the difference between implicit and explicit route binding in laravel?
Explain me what directories that need to be writable laravel installation?
How to clear complete cache in laravel?
What is a laravel model?
What are route groups?
What are the advantages of queue?
List out some artisan commands?
Explain fluent query builder in laravel.
How to do 301 redirects in laravel?
Explain service container?