iPhone Hacking - T-Zone on iPhone
Posted by Mr. IT Guy | Filed under Howto, IT in General, Mac OSX
There are two ways to do this, by using the Installer or by modifying 2 text files manually. I have not tried the Installer apps, but a lot of people are saying that it works.
Installer Method
- Add the following repository in your Source: http://limitededitioniphone.com/lei.xml
If you need help on how to add repository, read my other post - Install the T-Mobile -> T-Zone’s Hack
Manual Method
- Create a text file called proxy.pac on your desktop with the following entry:
function FindProxyForURL(url, host) {
if (isInNet(myIpAddress(), "10.0.0.0", "255.0.0.0"))
return "PROXY 216.155.165.50:8080";
else
return "DIRECT";
} - Upload the proxy.pac that you created earlier to the following folder: /var/root OR /private/var/root
- Find the following file and download to desktop or open with vi to modify: /Library/Preferences/SystemConfiguration/preferences.plist
NOTE:This is specifically for 1.1.3 firmware. Other firmware might have different location of preferences.plist. If you can’t find it at that location, you can try the following folder: /private/var/root/Library/Preferences/SystemConfiguration/ - Find the following text string:
<string>ip1</string> - Add the following code right after the next </dict> after the above string:
<key>Proxies</key>
<dict>
<key>ProxyAutoConfigEnable</key>
<integer>1</integer>
<key>ProxyAutoConfigURLString</key>
<string>file:///private/var/root/proxy.pac</string>
</dict>The resulting code around that area should look like:
<dict>
<key>DeviceName</key>
<string>ip1</string>
<key>Hardware</key>
<string>com.apple.CommCenter</string>
<key>Type</key>
<string>com.apple.CommCenter</string>
</dict>
<key>Proxies</key>
<dict>
<key>ProxyAutoConfigEnable</key>
<integer>1</integer>
<key>ProxyAutoConfigURLString</key>
<string>file:///private/var/root/proxy.pac</string>
</dict>
<key>com.apple.CommCenter</key>
<dict>
<key>AllowNetworkAccess</key>
<integer>1</integer>
<key>Available</key>
<integer>1</integer> - Re-upload the file with the same name
- Go to Settings -> General -> Network -> EDGE
- Change the APN to “wap.voicestream.com” (without quotes) and keep the Username and Password blank
- Restart the phone
Leave a Reply
You must be logged in to post a comment.






