vote up 1 vote down star
1

I've been looking around at various APIs, and since twitter seems to be a common discussion point, I'll use it as an example.

A lot of APIs are implementing oAuth which is great for allowing the service to authenicate and authorize the application connecting to it, however, from what I have seen there doesnt seem to be a way for the application to verify that Twitter is actually Twitter (and not a man in the middle based attack)? I would expect to see some kind of signature (using a shared / public key) of the response body which I can use to validate that twitter signed it.

Is it just because currently there isnt really a point to a man in the middle attack with twitter tweets since currently, whats the worst that can happen (and why would someone want to give me invalid tweets)

On this point, if you were to sign the response, what method would you use? Im currently considering a HMAC-SHA1 signature of the response body using a shared key.

flag

73% accept rate
Should have specified - I know you can use SSL for transport security, but seems like a lot of overhead when the data is not sensitive... – RM Oct 6 at 1:35
1  
If the data isn't sensitive why do you care where it comes from? It you care, how can you know that once you've verified that the data isn't being sent from somewhere else, or somehow modified? – silky Oct 6 at 1:38
Just because it isnt sensitive doesn't mean I dont want to validate the source, some data just isn't 'secretive', couldnt care who intercepts it, but want to validate that it came fom a proper source. For (a bad) example, weather data, dont care who reads it on the way, but if i use that info to determine if I should automatically turn heating on, I want to know it came from the proper source. As to how to validate it, as per the question, via a signature of some kind, since if you change the data the signature is no longer valid. – RM Oct 6 at 1:47
Validating the source only works once; you receive data often, and as I've said below, you can't know the data comes from the source unless you stay in a validated channel. – silky Oct 6 at 1:51
@silky, can you explain to me why validating only works once? If you sign every response, and it can only be done with the private key, then you know that it came from that source. Or am I missing something? – Michael Hart Oct 6 at 2:36
show 9 more comments

2 Answers

vote up 0 vote down

In the .NET world we use WCF, which has many different security models, including signing (and if desired encrypting) each message/response. This adds up to a non-trivial amount of overhead, but can give you more 'trust' in the security model. You can switch to using binary-serialized data to cut down on the bloat and message size if you desire.

I'm not sure what other Web Service APIs offer in that area, though I'm sure someone else can add further details as needed.

link|flag
Yeah thats the sort of thing i mean (signing, not encryption), but for standard REST or POX services such as Twitter. – RM Oct 6 at 3:29
vote up -1 vote down

This is what the 'trust' part of SSL does.

-- Edit

I note this has been downvoted, but it's important that other readers realise it's due to a personal disagreement, not due to incorrectness.

link|flag
SSL seems like a lot of overhead - especially for a service that is receiving hundreds of thousands of requests... – RM Oct 6 at 1:35
As I've hinted at in the comment in your post; if you don't validate it and use SSL, even if you check, by some scheme, that it's who you think it is as first, if the connection isn't protected from change (i.e. SSL) it doesn't matter; you can't trust what you're receiving. The bottom line for you is obvious: Either you accept the latency with SSL, or you accept that you don't know where the data is coming from. – silky Oct 6 at 1:46
@silky, I think we're looking at two different things here, I want to validate the message, you seem to want to validate the transport mechanism, i.e. if you sign each message you could print it, email it, use UDP do what ever you want with it and integrity can always be maintained. I'm refering to a signing scheme per message, not a once off transport level scheme. (i.e. im refering to HMAC-SH1 hashing en.wikipedia.org/wiki/HMAC-SHA1 or similar) – RM Oct 6 at 3:28
RM: No, we're not, I'm sorry but you just don't understand what it is you're trying to do. I'll leave it to someone else to explain, as for whatever reason, there appears to be a general problem communicating. – silky Oct 6 at 3:44
@RM, I agree with you - you're talking about two different things. SSL is for encryption, which you've clearly indicated you don't need. I say HMAC-SHA1 is a good choice for what you're trying to achieve. – Michael Hart Oct 6 at 3:55
show 3 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.