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

I doubt this is possible without extensive jail-breaking, but is it at all possible to edit the iPad's (or any iOS device's) hosts file?

share|improve this question
1  
Not without jailbreaking. Once it's jailbroken, it'll be the same as any other Unix/BSD system. I assume, I haven't done it before. – Jasarien Jan 24 '11 at 15:50
3  
Magic! Damn Apple. – Ahmed Nuaman Jan 26 '11 at 15:40
Imagine if any app could change the association between host names and their legitimate IPs. – Jano Aug 2 '11 at 19:20
@jano Presumably that issue now exists with apps on the Mac App Store. It's dealt with by OSX requiring a password before you can edit the hosts file, and also presumably by Apple's app vetting procedure. – Danyal Aytekin Sep 21 '11 at 13:43
1  
@Jano: Microsoft Windows allows this now, and it causes 0 problems. You just need to have Administrator permissions. And there are legitimate reasons for wanting to modify a hosts file (all related to getting to stuff without a DNS server or else dealing with VPN issues). – Josh Nov 14 '11 at 17:21

6 Answers

up vote 24 down vote accepted

No. Apps can only modify files within the documents directory, within their own sandbox. This is for security, and ease of installing/uninstalling. So you could only do this on a jailbroken device.

share|improve this answer
Only in the sandbox, but not only within the documents directory (see iOS Application Programming Guide > Application Runtime > File System). – Jano Aug 2 '11 at 19:17

The previous answer is correct, but if the effect you are looking for is to redirect HTTP traffic for a domain to another IP there is a way.

Since it technically is not answering your question, I have asked and answered the question here:

How can I redirect HTTP requests made from an iPad?

share|improve this answer

I would imagine you could do it by setting up a transparent proxy, using something like charles and re-direct traffic that way

share|improve this answer

Yes, you can edit the iPad hosts file, but you need to be jailbroken. Once you've done that, download Cydia (app market), and get iFile. The hosts file is located within "/etc/hosts".

share|improve this answer

The easiest way to do this is to run an iPad simulator using XCode and then add an entry in the hosts file (/etc/hosts) on the host system to point to your test site.

share|improve this answer
Question is about device not simulator. – Janak Nirmal Oct 26 '12 at 5:18

Ok, found it, kinda scared... This is just a scare tactic? Obviously keep the old host file rename it host.bak

Host Database

localhost is used to configure the loopback interface when the system is booting.  Do not change this entry.

##
127.0.0.1       localhost
255.255.255.255 broadcasthost
::1             localhost 
fe80::1%lo0     localhost"

Maybe add known malware ips to this?

share|improve this answer
2  
This is not what OP asked. – randoms Sep 26 '12 at 7:52

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.