pymobiledevice3
pymobiledevice3 copied to clipboard
Pure python3 implementation for working with iDevices (iPhone, etc...).
Is anyone else having `set` work fine, but `clear` not do anything?
**Test environment** - macOS 14.1.1 - iPhone15 pro max, iOS 17.1.1 **Describe the bug** I run this command: `python -m pymobiledevice3 developer dvt core-profile-session save core.trace --rsd xxx xxx` It...
I got everything to work, but after I run the **sudo python3 main.py command** The website doesn't load, and on terminal it says connectionerror even though i have wiifi. anyone...
I have this problem where I keep getting `OSError: [Errno 65] No route to host` when creating tunnels just on intel-based macs, the M1 model doesn't present this problem. Example:...
With the libimobiiledevice toolset I was able to use `idevicedebug` to launch an app on iPhone and it would stream the stdout/stderr back while the app was running and it...
**Is your feature request related to a problem? Please describe.** When trying to mount and device locked via the cli, you get a big traceback, which can be confusing for...
There are some common lockdown errors that would be nice to have a dedicated exception class: https://github.com/doronz88/pymobiledevice3/blob/3a6113091c59c65f4db5d318e126c09f197a994c/pymobiledevice3/lockdown.py#L532 The list is here: https://github.com/libimobiledevice/libimobiledevice/blob/04c023317f616b4b9588cce8c2da3174a7d2086b/src/lockdown.c#L57 Specificly I've encountered the following that would be...
```python async def request_tunnel_establish(self) -> Mapping: stream_id = self._quic.get_next_available_stream_id() # pad the data with random data to force the MTU size correctly self._quic.send_datagram_frame(b'h' * 1024) self._quic.send_stream_data(stream_id, self._encode_cdtunnel_packet( {'type': 'clientHandshakeRequest', 'mtu':...