I'm working on an application that connects to URLs, and it responds differently depending on whether or not an address resolves in DNS. I need to find a way to simulate DNS Hijacking so that I can test that my application handles it correctly.

Anybody know a way to do that?

link|improve this question
Not programming related. – Daniel A. White Aug 29 '10 at 19:09
please describe esactly what you want to do to test. I can think of a few solutions, but I'm not sure that they line up with your thought process. – atk Aug 29 '10 at 19:11
Daniel if the question is reformatted ever so slightly it can easily be programming related. Security is, rather should be, a large piece of the sdlc – Woot4Moo Aug 29 '10 at 19:13
I want to take a computer that's on a network that involves no DNS Hijacking. And I want to somehow modify the computer so that DNS Hijacking does happen. – Marcus Aug 29 '10 at 19:14
feedback

2 Answers

up vote 3 down vote accepted

Set up a DNS Server on a second pc and use this as your referenced DNS. Then you can shutdown it for sometime or modify the answers to try your handling behavior. If you dont have a second machine you can also set it up in a virtual machine.

link|improve this answer
Thanks, this is what I did. I still want to dive in and figure out how to make a wildcard DNS entry that leads the user to a page that depends on what they entered (i.e. how ISPs do it, where it leads to their search engine with the URL as a query). But that's a separate problem (purely a "How do I do this on this server?" problem). – Marcus Aug 30 '10 at 0:35
Actually I do not know how to do this. Maybe you need some kind of open dns service, in which you can specify a handler for unresolved URLs. I never tried this before on Windows Server environment. – JanW Aug 30 '10 at 6:30
feedback

Just add the "hijacked" hosts into your hosts file. In Linux, this should be in /etc/hosts; in Windows, %SYSTEMDIR%\drivers\etc\hosts..

The entries are in the format ip.addr.ess.here hostname1 hostname2 (there should already be entries for localhost, so add others to match your taste)

When you're done, remove (or comment out) from the hosts file again.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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