OAuth Security Cheatsheet
oauthsecurity.com
OAuth Security Cheatsheet
1–10 of 16 posts
Re: OAuth Security Cheatsheet
#2Re: OAuth Security Cheatsheet
#3btw, linkedin has implemented a number of the counter measures listed in:
* static redirects
* checking that the redirect listed is the same for all calls.
* fast expiration of code.
Re: OAuth Security Cheatsheet
#4It's using free plan on heroku, so if it will be down repo is available at https://github.com/homakov/oauthsecurity
Re: OAuth Security Cheatsheet
#5It's using free plan on heroku, so if it will be down repo is available at https://github.com/homakov/oauthsecurity
@homakov I'd be happy to host this content on the oauth.net website if you'd like.
Re: OAuth Security Cheatsheet
#6It's using free plan on heroku, so if it will be down repo is available at https://github.com/homakov/oauthsecurity
Re: OAuth Security Cheatsheet
#7It's using free plan on heroku, so if it will be down repo is available at https://github.com/homakov/oauthsecurity
Re: OAuth Security Cheatsheet
#8OAuth is basically a complete mess, implementation-wise, and that's really sad since it's such a promising and useful premise.
Re: OAuth Security Cheatsheet
#9The place I work for deals with about 20 different site's oauth processes and it's amazing how widely varied they are. Some of them let you restrict the redirect_uri while others don't, some of them still need you to send a login/password pair for the first request rather than do an oauth flow, but then still use oauth-style tokens all over the place. A couple of them require that the token be passed as a query strin…