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 enable maintenance mode in laravel 5?
What is a pull() ?
Is laravel a programming language?
What is meant by Laravel - Validation ?
What is facade in laravel?
What are Global Middleware and Route Middleware ?
How to check column is exists or not in a table using laravel?
What can I do with laravel?
What is antiforgerytoken used for?
Explain request life cycle of laravel.
Define hashing in laravel.
What are the steps Redirecting to Named Routes in Laravel ?