Cross-platform, open-source and free idevice management tool written in C++
- Installer (.msi): Download and run the installer. Recommended for most users.
- Portable (.zip): Extract and run
iDescriptor.exe. No installation required. - Choco :
choco install idescriptor --version=0.1.0- Apple Silicon: Download the
.dmgfile for M1/M2/M3/MX Macs.
Open the.dmgand drag iDescriptor to Applications.
After moving the app to Applications, run the code below
xattr -c ~/Applications/iDescriptor.appClick here to learn more about why this is needed.
-
Intel: Download the
.dmgfile for Intel-based Macs.
Open the.dmgand drag iDescriptor to Applications.You shouldn't run into any issues on Intel Macs but if you do, check this out.
- AppImage: Download, unzip, and run.
- Arch Linux: Install from AUR:
sudo pacman -Syu
yay -S idescriptor-gitmake sure to do "sudo pacman -Syu" otherwise it's not going to find libimobiledevice>=1.4.0
Learn more about our roadmap here.
| Feature | Status | Notes |
|---|---|---|
| USB Connection | ✅ Implemented | Fully supported on Windows, macOS, and Linux. |
| Wireless Connection | Currently under development, planned to be released in v0.4.0 |
| Feature | Status | Notes |
|---|---|---|
| AirPlay | ✅ Implemented | Cast your device screen to your computer. |
| Download & Install Apps From Apple Store | ✅ Implemented | Download and install apps directly from the Apple Store. |
| Virtual Location | ✅ Implemented | Simulate GPS location. Requires a mounted Developer Disk Image. ( iOS 6 - iOS 16) |
| iFuse Filesystem Mount | ✅ Implemented | Mount the device's filesystem. (Windows & Linux only) |
| Gallery | ✅ Implemented | - |
| File Explorer | ✅ Implemented | Explore the device's filesystem. |
| Wireless Gallery Import | ✅ Implemented | Import photos wirelessly (requires the Shortcuts app on the iDevice). |
| Cable Info | ✅ Implemented | Check authenticity of connected USB cables and more. |
| Network Device Discovery | ✅ Implemented | Discover and monitor devices on your local network. |
| SSH Terminal (Jailbroken) | ✅ Implemented | Open up a terminal on your iDevice. |
| Query MobileGestalt | ✅ Implemented | Read detailed hardware and software information from the device. |
| Live Screen | ✅ Implemented | View your device's screen in real-time (wired). |
| Developer Disk Images | ✅ Implemented | Manage and mount developer disk images. ( iOS 6 - iOS 16) |
| Feature | Status | Notes |
|---|---|---|
| Restart Device | ✅ Implemented | - |
| Shutdown Device | ✅ Implemented | - |
| Enter Recovery Mode | ✅ Implemented | - |
You need to sign in with your Apple ID to use this feature.
Literally mount your iDevice filesystem and use it as a regular drive , read and write are both allowed. Don't try to import photos or videos because it won't work that way, use the Gallery Import feature for that.
Useful if your device does not support AirPlay
You might get this pop-up on any platform this is because this app uses secure backends to retrieve and store your Apple credentials. You can disable this in settings but it is not recommended and not safe for your Apple account. Also if you leave this enabled and sign in you can use the same credentials in ipatool without signing in again.
- libimobiledevice
- ipatool - We use a modified version here
- QSimpleUpdater - We use a modified version here
- UxPlay (for AirPlay) - We use a modified version here
iDescriptor will check for udev rules but in case it fails, you can manually add the udev rules by doing similar to the following:
@uncore sudo cat /etc/udev/rules.d/99-idevice.rules
SUBSYSTEM=="usb", ATTR{idVendor}=="05ac", MODE="0666"
✘ Sun 6 Jul - 14:29 ~
@uncore sudo groupadd idevice
Sun 6 Jul - 14:30 ~
@uncore sudo usermod -aG idevice $USER
Sun 6 Jul - 14:30 ~
@uncore sudo udevadm control --reload-rules
sudo udevadm triggerContributions are welcome!
We actively develop on dev branch, so please base your pull requests off of that branch.
You can also send a pr to main branch but it should be something related to building, publish to some package manager or documentation.
Planned Features for v0.4.0:
- Migrate to idevice-rs
99% done - Wireless Connection Support
DONE - Install IPA files directly from the app
- Virtual Location Support for iOS 17 and above
- Complete iOS 26 Support
- Migrate to UCRT for better performance and stability
Windows - New UI/UX improvements
- Read gallery from Photos.sqlite (maybe delayed to v0.5.0)
You can always become a sponsor/donate to request/prioritize a feature or speed up the development process!
If you encounter a similar "damaged" error when trying to open the app on macOS, you can resolve this by running the following command in the terminal:
xattr -c ~/Applications/iDescriptor.appYou need to run this because macOS blocks apps that are not signed by an Apple Developer ID. By clearing the extended attributes, you can bypass this security feature.
This not something specific to iDescriptor, for example check this out.
You can be more explicit and only remove the quarantine attribute like so:
xattr -dr com.apple.quarantine /Applications/iDescriptor.app














