0
votes
1answer
29 views

Why won't the Saml2SecurityHandler create a token using ReadToken from a string I've just created using WriteToken?

So I need to serialize a token to send to a service via a queue + NetMessageBinding in Azure. The token comes from ACS and after some jiggery pokery I have the Saml2SecurityToken and I can write it ...
0
votes
1answer
53 views

Storing custom info in UserNamePasswordValidator

I have a WCF service on .NET 4 with a custom UserNamePasswordValidator, secured with SSL and message security. The UserNamePasswordValidator receives the user name and password and passes it to a ...
0
votes
0answers
48 views

How can an app ensure Facebook game data integrity?

I have been developing a couple of Facebook games and I ran into a question: How can I verify that data posted to my server (such as game scores) are actually coming as a result of the user taking ...
0
votes
1answer
93 views

Authentication Token Security

What are the major flaws with authentication following the following logic. User logs into a.example.com and clicks "Login to b.example.com". This link generates a random string and saves it in the ...
1
vote
1answer
133 views

Oauth2 - long lived Tokens vs Reauthentication in a Client Credentials Flow

We've secured our REST server with OAuth2 and implemented the client credentials grant type for several client apps that we control. Now we're faced with the decision to either make the tokens long ...
0
votes
1answer
117 views

Best Practice of saving an access token in iOS

I am currently working on an iPhone-App where i have to store an access-token. Temporarily i am just saving it inside the NSUserdefaults but i dont think it is safest way of persisting sensitive Data ...
1
vote
1answer
122 views

Securely storing an access token

What security measures should I put in place to ensure that, were my database to be compromised, long-life access tokens could not be stolen? A long-life access token is as good as a username and ...
0
votes
0answers
48 views

Contemplating on FYP scope of project [closed]

I'm new here. First of all,im a security system student. I would like to ask about Wireless Router authorization methods. Ive suggested to my lecturer for password generator for router,but my lecturer ...
0
votes
1answer
355 views

prestashop api security

I'm about to build an iOS e-commerce app. This app will query the prestashop webservice api of an existing prestashop installation. I've been playing with the prestashop webservice and it seems to ...
1
vote
1answer
131 views

Designing (OAuth2) access token

We are planning to implement OAuth2 spec and are reviewing the "access token" implementation. Looks like the specification gives a lot of freedom to implementors and we are looking for some best ...
0
votes
1answer
90 views

App security breach - how to invalidate all the tokens for one app?

One of our apps got hacked and some wall posts/photos are posted on behalf of our app. We are suspecting that a hacker has somehow retrieved access_token from our app. What's the best way to plug ...
2
votes
3answers
876 views

Do OAuth2 access tokens for a mobile app have to expire?

The accepted answer here as to why OAuth2 access tokens expire: Many providers support bearer tokens which are very weak security-wise. By making them short-lived and requiring refresh, they limit ...
0
votes
1answer
190 views

Vala alternatives to Gnome Keyring OAuth access token storage?

are there good OAuth access token/secret storage alternatives to Gnome Keyring for Vala? The Gnome Keyring bindings solution is extremely buggy as it yields far too many C-errors to make debugging ...
1
vote
0answers
1k views

How to download a file uploaded to a private Facebook group using Graph API

Facebook now allows us to upload arbitrary types of files to Facebook groups, which is great. I am writing a single-sign-on iOS app, which accesses such a private group the user belongs to, and ...
0
votes
1answer
469 views

one-time login tokens for third-party access to a resource

I've been on a quest through SO and all the sister sites looking for an answer that has led me on rabbit trails covering oAuth, hmac, OTP's, openid, salts, hashes, rainbow tables, blah blah blah, but ...
8
votes
4answers
2k views

What are the security risks in exposing facebook user access token in javascript?

Suppose that my application has an access token to some facebook user. Is there a security risk in exposing this access token in JS Code to some other users which visit my site? If so, what can they ...
1
vote
2answers
447 views

ASP.net - Restrict user login to a specific machine

Please provide your suggestions on how to restrict a user login to a specific machine for an ASP.net Website. In other words, the requirement is deploy a simple yet effective 2 factor authentication. ...
0
votes
1answer
246 views

Secure Token Passing in Ajax in a Highly Cached Environment

Greetings SO Community! I'm trying to think through a security issue with an ajax process in a highly cached environment, and could use some advice. My situation is this: The users of the site are ...
0
votes
4answers
347 views

Length of a security token

I'm using security tokens to create not guessable URLs like this (16 bytes, hex) http://example.com/something/private/b5f8c21a628e12b39786fb8ef9561d31 The token is something like a shared ...
2
votes
1answer
557 views

OAuth token security

As far as I know, the OAuth standard is very lax on how OAuth really should behave, but... I store OAuth access tokens for various OAuth services in a database. If these tokens were compromised, ...
0
votes
1answer
75 views

Access Token Member Ambiguity

According to this article on Access Tokens, a token contains several pieces of information, including: The security identifier (SID) for the user's account An owner SID I would expect the owner ...
7
votes
1answer
475 views

why isn't it possible to steal an access token?

I'm learning OAuth and I have a question in head I can't find an anwser.. I understood request token to authorize or not an application to use the API. But once the user got an access token, what ...
4
votes
2answers
2k views

SINGLE SIGN ON SECURITY THREAT! FACEBOOK access_token broadcast in the open/clear

02/20/2011: It was confirmed by Facebook today that indeed there is one call in which the access_token is broadcast in the open . . . it just happens to be one call I use to make sure that the USER ...