Laravel has a setting to exclude verification tokens, but will not verifying cause any security issues?
天蓬老师
天蓬老师 2017-05-16 16:50:34
0
1
404

Laravel has a setting to exclude verification tokens, which is the following:

class VerifyCsrfToken extends BaseVerifier { protected $except = [ 'stripe/*', ]; }

You can fill in the URL of the non-verified token. Some places cannot be excluded. If not excluded, a token error will be returned. However, will there be any security issues after being excluded?

天蓬老师
天蓬老师

欢迎选择我的课程,让我们一起见证您的进步~~

reply all (1)
巴扎黑

This is used to prevent CSRF attacks. You can search for the specific harm of CSRF attacks by yourself

    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template
    About us Disclaimer Sitemap
    php.cn:Public welfare online PHP training,Help PHP learners grow quickly!