Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to make sure my IOS app requires DNSSec when it connects to a given server. How can I make sure the DNS calls are always using this?

share|improve this question
Looks like ios doesn't support dnssec yet. Check developer.apple.com/library/ios/#documentation/… – ott-- Dec 26 '12 at 16:37
Just curious, why do you want this? – Mike Dec 27 '12 at 2:53
@Mike My iOS users use Wifi, and it's easy to get hacked (link) – makerofthings7 Dec 27 '12 at 2:55
I assume you have already set up SSL? Because even if your DNS queries always return a correct response, your session data could still be transparently proxied and modified. – Mike Dec 27 '12 at 3:54
@Mike Yep, I'm aware. Check the links in my profile. DNSSec will allow me to verify keys published in DNS even if a SSL attack is underway – makerofthings7 Dec 27 '12 at 3:58
show 3 more comments

migrated from programmers.stackexchange.com Dec 26 '12 at 14:29

3 Answers

Since DNSSEC is not available at the OS level, I think the best option you have is to secure your app by checking your SSL server cerficiate more carefully than the OS naturally would. See this question for details. I would recommend embedding the CA certificate you expect to receive into your app, and comparing it byte-for-byte with the root of the trust chain.

This is called certificate pinning.

share|improve this answer

You have to incorporate a DNS library to your source code. Try using libunbound. With libunbound you can verify the DNSSEC answer. With that, you can try to use DANE for securing your SSL certificate.

share|improve this answer
But how would you go about using a high-level (for example) HTTP API using this method? Once you send in the URL, it's all over. You can't compare the DNS replies for accuracy. You can't even send in http://<ip-address/ after doing a DNS query, because you'll lose the Host: header. (etc) – Mike Jan 24 at 6:22

DNSSec is on the OS level. The only thing you can control in your app is the method of connection to your server. Just use Secure Sockets Layer - SSL in all your communication.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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