Tag: laravel csrf

CSRF General Topic Laravel

Cross-site request forgeries

When unauthorized commands performs on the behalf of authorized user is called Cross-site request forgeries. Lets test it We have a form where we are accepting a email from authenticated user. Url: https://localhost/csrf_form <!DOCTYPE HTML> <html>  <body> <?php $email=$_POST[’email’]; echo $email; ?> </body> </html>   But what if someone else submit a form who is […]

Back To Top