Difference between revisions of "Normal Mode"

From The iPhone Wiki
Jump to: navigation, search
m (Resources: updated usbmux link to point to new page)
(moved usbmux related links to usbmux page)
Line 1: Line 1:
This is the protocol [[iTunes]] uses to talk to the booted iPhone. It uses usbmux to provide TCP like connectivity over a USB port using SSL. There is a pairing process iTunes uses to establish the secure channel. File transfer is provided by [[AFC]].
+
This is the protocol [[iTunes]] uses to talk to the booted iPhone. It uses [[Usbmux | usbmux]] to provide TCP like connectivity over a USB port using SSL. There is a pairing process iTunes uses to establish the secure channel. File transfer is provided by [[AFC]].
   
 
==Device IDs==
 
==Device IDs==
Line 31: Line 31:
   
 
After applying the patch all packets between iPhone and iTunes become plain and clear. Musthave for R&D ppl.
 
After applying the patch all packets between iPhone and iTunes become plain and clear. Musthave for R&D ppl.
==USBMux Protocol==
 
 
===Resources===
 
* [[MobileDevice Library]]
 
* [[Usbmux | usbmux - iPhone Dev Team]]
 
* [http://libimobiledevice.org/docs/html/files.html Protocol Documentation]
 
* [http://libimobiledevice.org/ iFuse]
 
   
 
[[Category:Protocols (S5L)]]
 
[[Category:Protocols (S5L)]]

Revision as of 08:40, 12 October 2011

This is the protocol iTunes uses to talk to the booted iPhone. It uses usbmux to provide TCP like connectivity over a USB port using SSL. There is a pairing process iTunes uses to establish the secure channel. File transfer is provided by AFC.

Device IDs

It appears that it uses different device IDs:

Patch: Disable SSL

There is a way to disable SSL encyption during iTunes communication on jailbroken devices by patching lockdownd binary:

(#) Disable SSL protection
(#) FW 2.1
(#) binary /usr/libexec/lockdownd
-0x1000

Offset 000112F8: 0C 30 98 E5 > 00 30 A0 E3 ; Conn.UseSSL = false

After applying the patch all packets between iPhone and iTunes become plain and clear. Musthave for R&D ppl.