当前位置: 首页 > 工具软件 > Qt-iPhone > 使用案例 >

Qt编写iphone信息读取(验机)工具

寿高阳
2023-12-01

这篇博客是在编写iPhone信息读取工具时查询的资料的罗列,还没整理。
希望能够对有需要的人起到一些帮助;同时假如可以的话,也希望您能够进行一些新的补充。

https://www.jianshu.com/p/a282fbcafaad
https://www.cnblogs.com/xiyuan2016/p/7736973.html
https://blog.csdn.net/babytiger/article/details/121511002

所有系列的apple设备的modelID对应

https://www.theiphonewiki.com/wiki/Models
https://github.com/libimobiledevice/libirecovery/tree/master/src

备份与还原

https://www.digitalforensics.com/blog/logical-acquisition-of-ios-devices-with-libmobiledevice/

idevicebackup2.exe backup C:\Users\Olly\Desktop\iPhone_logical
idevicebackup2.exe unback C:\Users\Olly\Desktop\iPhone_logical

iphone序列号每一个字母的解析

https://www.i4.cn/news_detail_38287.html

直接读取iphone的信息(这个方便):

https://blog.timac.org/2018/1126-deobfuscated-libmobilegestalt-keys-ios-12/
https://pastebin.com/HY122aPR

idevicediagnostics.exe mobilegestalt nfc NFCUniqueChipID green-tea AirplaneMode

获取高版本iphone的出厂设置的可能办法:

https://github.com/freedomtan/iOS-device-tree-dump
https://gist.github.com/freedomtan

主要用libimobiledevice

也可以直接调用iTunes的库
https://blog.csdn.net/Cinnazgc?t=1

用 vcpkg来操作,一步到位
https://github.com/libimobiledevice-win32/libimobiledevice-vs

直接下载编译好的程序
nuget
https://github.com/libimobiledevice-win32/imobiledevice-net/releases

或者用windows版本的派生版本?
https://github.com/storoj/libimobiledevice-win32

https://blog.csdn.net/mijichui2153/article/details/81061067
#ifdef _MSC_VER
#define strcasecmp stricmp
#define strncasecmp strnicmp
#endif

https://www.jianshu.com/p/b23016bb97af

~~获取原始数据的一个可能办法

https://www.digitalforensics.com/blog/logical-acquisition-of-ios-devices-with-libmobiledevice/
https://santoku-linux.com/howto/mobile-forensics/howto-create-a-logical-backup-of-an-ios-device-using-libimobiledevice-on-santoku-linux/~~

获取出厂值

https://blog.csdn.net/lovehuanhuan1314/article/details/109826372
https://blog.csdn.net/lovehuanhuan1314/article/details/119941479?spm=1001.2014.3001.5501
https://www.theiphonewiki.com/wiki/SysCfg

com.apple.mobile.internal SysCfgData

获取摄像头的序列号,电池信息

https://www.anquanke.com/post/id/82810

#注意这个 "AppleH%dCamIn" 和机型有关
idevicediagnostics.exe ioregentry AppleH10CamIn
#电池用 AppleSmartBattery

iPhone12(还是11来着?)之后的机型无法读取SysCfgData的问题

我也不知道怎么读,可能是改了协议。希望有知道的朋友能够告知一下。

 类似资料: