According to the security issue referenced in omab/django-social-auth#386 - a state parameter should be required to prevent clickjacking of requests.
In the issue, it mentions that it backends with Oauth2 were fixed. I'm getting security reports that the Twitter login (via python social auth) has a security hole because it is missing the state parameter, presumably because Twitter uses Oauth1 instead of Oauth 2.
According to this https://hackerone.com/reports/13555 , the state parameter should still be present even for Oauth1.
Can we add the state parameter to the Twitter backend, or explain why it is omitted?
According to the security issue referenced in omab/django-social-auth#386 - a
stateparameter should be required to prevent clickjacking of requests.In the issue, it mentions that it backends with Oauth2 were fixed. I'm getting security reports that the Twitter login (via python social auth) has a security hole because it is missing the
stateparameter, presumably because Twitter uses Oauth1 instead of Oauth 2.According to this https://hackerone.com/reports/13555 , the state parameter should still be present even for Oauth1.
Can we add the
stateparameter to the Twitter backend, or explain why it is omitted?