Quantcast
Channel: 睿论坛 - 最新话题
Viewing all 5658 articles
Browse latest View live

请教如何hook来自字符串的Selector

$
0
0

@gemo wrote:

例如,想在tweak中hook并修改如下函数调用的返回结果,不知怎么写,求指点:

NSArray *Arr = [theClass performSelector:NSSelectorFromString(@"something")];

Posts: 5

Participants: 3

Read full topic


威锋网诚招iOS/Android逆向攻城狮

$
0
0

@eyerwang wrote:

职位名称:iOS/Android逆向工程师
工作性质:全职 工作地点:深圳南山

业务介绍:
威锋网国际战队—兔兔助手(tutuapp.com )是全球化的移动应用&游戏分发平台,在全球拥有近2亿用户,支持iOS与Android双平台,支持十多国语言。从2013年开始帮助国内及海外的应用&游戏做全球发布及变现推广。兔兔助手团队高能智勇,全明星阵容期待您的加入。

简历接收邮箱:hedy.huo@office.feng.com、eyer.wang@office.feng.com

岗位描述:
1、负责iOS或Android已有游戏、应用逆向破解工作;
2、有较强的逆向后辅助插件开发能力,完成插件功能开发工作。

岗位要求:
1、熟练阅读汇编代码和C/C++代码,熟悉逆向工程,尤其熟悉动态分析,有较强的逆向分析能力和软件破解经验;
2、熟练使用IDA、Hopper Disassembler、lldb、APKTOOL、Jeb等逆向分析调试工具;
3、熟悉ARM、ARM64指令集、熟悉常见公开加密算法;
4、熟练常见Hook技术;
5、熟悉iOS/Android常用反混淆手段;
6、做过iOS/Android游戏或应用逆向分析 ;
7、会写Tweak和Python辅助分析脚本(iOS逆向);
8、能够逆向分析出游戏、应用中的api接口调用、加密等,满足插件功能开发 ;
9、技术视野广阔,有主导iOS/Android逆向技术方案设计的能力和经验,能够独立承担iOS/Android逆向项目开发工作;
10、有逆向的iOS/Android游戏、应用产品开发经验者优先。

Posts: 1

Participants: 1

Read full topic

Tweak 编译问题: libfakeroot.dylib: mach-o, but wrong architecture

$
0
0

@hawk3 wrote:

需求: tweak 编译问题,求助
**代码: 只用nic.pl新建了一个默认tweak, 什么都没改
操作步骤: make package 会报错:

dyld: could not load inserted library '/usr/local/Cellar/fakeroot/1.22/lib/libfakeroot.dylib' because no suitable image found.  Did find:
	/usr/local/Cellar/fakeroot/1.22/lib/libfakeroot.dylib: mach-o, but wrong architecture
	/usr/local/Cellar/fakeroot/1.22/lib/libfakeroot-0.dylib: mach-o, but wrong architecture

/usr/local/bin/fakeroot: line 181:  3701 Abort trap: 6           FAKEROOTKEY=$FAKEROOTKEY DYLD_INSERT_LIBRARIES="$LIB" "$@"
make: *** [internal-package] Error 134

** 环境: Darwin MacBook pro 16.7.0 Darwin Kernel Version 16.7.0, 应该不是ios sdk的问题,因为我也尝试过用各种版本sdk。fakeroot 直接brew install fakeroot 装的,根据报错信息说arch 不兼容, 相关信息如下:

/usr/local/Cellar/fakeroot/1.22/lib/libfakeroot.dylib: Mach-O 64-bit dynamically linked shared library x86_64

希望有类似问题或者解决过这个问题的朋友帮帮忙, 谢谢!

Posts: 1

Participants: 1

Read full topic

请问有人用过%property吗

iOS逆向实战 – QQ 自动抢红包功能实现

$
0
0

@imooogo wrote:

0x01 准备
本文以 QQ 6.5.9 For iOS, ARMv7 Arch为例,实现1对1聊天类型自动抢红包的功能,其他红包功能均未测试。
本文所使用的软件:

IDA
Reveal
SSH
LLDB
Theos
本文所使用的硬件:

iPhone5
RMBP
0x02 分析调用逻辑
首先通过UI找线索
使用Reveal或者Xcode查看红包在聊天界面的视图结构(图1)

图1: Reveal截图

发现了QQWalletTransferAIOCellView,我们断言在收到红包消息后,会自动创建一个QQWalletTransferAIOCellView视图,所以我们找到它的init方法,对其下断点查找线索。
在IDA中查看QQWalletTransferAIOCellView,找到了initWithFrame:chatViewTable:方法。
在initWithFrame:chatViewTable:处下断点

(lldb)br s -a 0x18B5D36
进入聊天会话列表视图,重新打开包含红包的会话视图,程序断下,查看stack frames。

(lldb) bt
* thread #1: tid = 0x2a924, 0x018b5d36 QQxpstl::map<int, unsigned int>::rotateRight(xpstl::map<int, unsigned int>::RBTree<int, unsigned int>*) + 16600206, queue = 'com.apple.main-thread', stop reason = breakpoint 5.1
* frame #0: 0x018b5d36 QQ
xpstl::map::rotateRight(xpstl::map::RBTree*) + 16600206
frame #1: 0x01d0923a QQxpstl::map<int, unsigned int>::rotateRight(xpstl::map<int, unsigned int>::RBTree<int, unsigned int>*) + 21135762
frame #2: 0x2fe24314 UIKit
-[UITableView _createPreparedCellForGlobalRow:withIndexPath:] + 408
frame #3: 0x2fdcc6cc UIKit-[UITableView _updateVisibleCellsNow:] + 1800
frame #4: 0x2fdcbef0 UIKit
-[UITableView layoutSubviews] + 184
frame #5: 0x2fcf2352 UIKit`-[UIView(CALayerDelegate) layoutSublayersOfLayer:] + 346
在IDA中观察#2 0x018b5d36,发现是QQChatViewTable中的方法
在一般情况下,像QQChatViewTable这种UITableView或其派生类基本都由其dataSource提供数据,所以我要找到QQChatViewTable的dataSource,应该能发现不少线索。

在lldb中

(lldb) po [$r5 dataSource]
<QQChatViewTable: 0x5363800; baseClass = UITableView; frame = (0 0; 320 475); clipsToBounds = YES; gestureRecognizers = ; layer = ; contentOffset: {0, -64}>
发现QQChatViewTable的dataSource正是其本身。
基于此可以推测QQChatViewTable中维护了一个List,或由其他对象维护一个List,这个List中保存了messages信息,找到message信息,就能构建抢红包请求的参数。

延伸:如果按照这条线索去找,我可以假设一个场景,当QQ的异步监听收到消息后,会往list中插入一条数据,往往是addObject获其他方法,理论上我们HOOK这个addObject方法,就能掌握新消息到来的时机。从而进行下一步操作。

首先查看QQChatViewTable.h文件
找到了一个名为lastMessage的方法,IDA goto到这个Offset(0x1D0DD86),通过反汇编窗口看到了正是由QQBaseChatModel *_chatModel.chatMessages管理这个列表。该方法从chatMessages中返回了最后一条结果。

使用lldb查看chatMessages

(lldb) po [[$r5 chatModel] chatMessages]
<__NSArrayM 0x10d2e6c0>(
,
,
,

)
最后一条为QQ红包消息,即:
QQWalletTransferAIOMsgModel

回到QQWalletTransferAIOCellView
通过查看该类的methods,发现有

  • (BOOL)didTouchEnded:(id)arg1 withEvent:(id)arg2; // IMP=0x018b61ed(UIView处理touch事件的标准接口)
    该方法处理了用户点击红包打开的事件。

使用IDA查看该方法
断点调试反复验证执行流程,最终确定在
[QQWallet gotoTenpayView:rootVC:params:completion:]方法处,调用后产生网络请求,接收(处理)红包。

所以我们认为在QQWalletTransferAIOCellView的instance中调用如上方法,就能完成抢红包的功能,那么如何组织该方法的调用参数,下面一个个分析。

  1. gotoTenpayView:(NSString *)viewName
    该View应该是一个Class name,网络请求结束后,初始化?(不确定),默认为“graphb”。这并不是关键参数。

  2. rootVC:(UIViewController *)viewController
    处理UI事件必不可少的组件,注意该VC必须为UINavigationController,或是navigationController不为nil的UIViewController(调用节点+[TenpayPlugin gotoView:rootVC:param:resultTo:handleFun:]中有明确表示)。如果我们想被用户看到抢红包的过程,就使用self.viewController。否则就new一个新的controller,确保controller视图未和我们的window相关联,这样用户就不会看到抢红包的过程。

  3. params:(NSDictionary *)params
    红包请求相关的参数
    构建这个参数,需要在调用[QQWallet gotoTenpayView:rootVC:params:completion:]这里向上追溯,从0x18B6FD0开始
    有以下关键call(参数类型根据IDA的反汇编内容推测):

void (*sub_1BCDCB4)(NSDictionary *dic, id msgModel);
void (*sub_1BCD858)(NSDictionary *dic, id msgModel);
void (*sub_1BCDA28)(NSDictionary *dic, id msgModel);
NSDictionary (sub_1BCD2B4)(NSDictionary *dic, id aioModel, NSString *authkey, NSString *type);
依次调用如上方法,会得到一个params dic,最后将dic中的extra_data.listid修改为json中的billno,添加extra_data.detailinfo={channel:1},得到完全的params参数。

注:aioModel = self.aioModel
msgModel = self.aioModel.msgModel

  1. completion:(_block)cb
    此为调用成功的回调,在oc中直接写一个block即可,block拥有一个参数(失败原因),当接口请求失败后,调用该block。

有了如上参数,就可以调用
[QQWallet gotoTenpayView:rootVC:params:completion:]这个方法来验证结果了。

0x03 功能实现
如果构建调用[QQWallet gotoTenpayView:rootVC:params:completion:]方法的参数无误,抢红包的请求就可以正确的发送到QQ服务器。由于QQ使用异步事件驱动通知UI,所以在收到响应后,UI会自动更新,添加一条“你领取了xxx的红包”消息。

如果在QQWalletTransferAIOCellView的init方法添加HOOK,并延迟(延迟是为了让它完全初始化,也可以做延迟抢红包的功能)调用[QQWallet gotoTenpayView:rootVC:params:completion:]方法,就可以完成当前聊天界面下自动抢红包的功能。

改为全局监听
综上看来QQ对于红包逻辑的封装并没有严格按照MVC这种思路来做,即使是到Network IO层,也需要带入view controller这样的instance,所谓分层不明确,也许是我跟的不够深入,没发现更低层的接口吧(上层调用更低层的接口,需要的步骤也越多。如果Tweak功能复杂,遇到目标APP功能迭代,那么Tweak受影响的可能性也就越大,俗称兼容性)。这导致我们在没有view controller上下文环境中调用[QQWallet gotoTenpayView:rootVC:params:completion:]会很尴尬,好在我们直接new的vc也可以使用,只要确保参数的有效性就可以了。

回顾QQChatViewTable这个类中的_chatModel.chatMessages如果一条新消息到来,必然会更新这个List,并调用reloadData更新UI。数据更新的方式无非两种,一种是在原有List插入新消息,一种是直接覆盖List。经过调试验证,此处为插入方式更新。

插入使用了[NSMutableArray addObject:]方法,直接HOOK此方法并不是太妥当的做法,因为像这样基础的类,有很多地方在调用,直接HOOK会影响APP的性能,而且某些时候由于缺乏上下文参考而难以确定是不是我们想要的时机。

经分析_chatModel.chatMessages中所存放的是QQWalletTransferAIOMsgModel实例,QQWalletTransferAIOMsgModel依赖QQMessageModel创建,因此可以推断QQMessageModel是比较底层的,QQMessageModel中包含了一个名为content的property,该property保存着消息内容主体,所以我们HOOK这个类的setContent方法,相对于HOOK [NSMutableArray addObject:]方法更容易掌握时机。图2描述了几个类的使用情况。

图2: 类图

在setContent:中,将content解析为JSON,判断JSON中的内容是否是红包相关的,如果是就可以直接调用[QQWallet gotoTenpayView:rootVC:params:completion:]方法抢红包。

注:setContent:可能是[QQMessageModel init]创建后的初始化过程的一部分,所以HOOK的逻辑部分也要延迟执行,确保QQMessageModel完全初始化。并且由于QQ内部有很多异步模型,如果不确定是否是线程安全操作的话,那么最好将此部分代码派发到主线程中执行。

在setContent中实现逻辑代码,至此QQ自动抢红包的功能已经实现。

0x04 后续优化
支持其他类型红包、添加全局开关、延迟抢红包等辅助功能。

0x05 附
红包的json content。

Posts: 2

Participants: 2

Read full topic

Http://iosre2.rssing.com/chan-58670222/latest.php 这个网站是什么鬼,为什么盗我的帖子

一般来说,一个app的头文件特别多,你们该怎么逆向某个功能呢?

$
0
0

@albus123456 wrote:

比如吧,像微信这样的app,头文件都有几百上千个,这么多个头文件,到底哪个文件是我们想逆向的功能所在的文件呢?你们有什么快捷的方法吗?

Posts: 1

Participants: 1

Read full topic

Tweak.xm文件过长,可以拆分成几个文件吗?

$
0
0

@deegar wrote:

Tweak.xm文件过长,不太好管理,可以拆分成几个文件吗?如何拆?求大神指点

Posts: 3

Participants: 2

Read full topic


关于微信验证登录的疑问

$
0
0

@CCbird wrote:

改了bundle id 前两个前缀 com.xxx.wechat 也就是xxx里面的内容完全不一样 安装了五六个微信分身结果全部不用验证就可以直接登录之前在这儿设备验证过的一个号码

Posts: 7

Participants: 2

Read full topic

Xcode更新后(更新了ios11sdk),tweak make报错了。。。

$
0
0

@liuxucau wrote:

今天上午更新了一下xcode到最新,貌似更新了ios11的sdk,结果发现电脑中所有的tweak项目make时都报错了,心塞,对ios 逆向了解不多,搞不定了。。。求大神指点,下面是报错日志:

GongFangdeMac:yizhifutweak gongfang$ make
Making all for tweak yiZhiFuTweak...
Preprocessing Tweak.xm...
Compiling Tweak.xm...
In file included from :1:
In file included from /Users/gongfang/Work/workspace/yiZhiFu/yizhifutweak/theos/Prefix.pch:4:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:12:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h:14:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityAdditions.h:10:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h:10:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:11:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h:10:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIColor.h:11:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.h:15:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h:10:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CoreVideo.h:29:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBuffer.h:461:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferIOSurface.h:26:
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceRef.h:15:61: error:
expected ';' after top level declarator
typedef struct CF_BRIDGED_TYPE(id) _IOSurface *IOSurfaceRef IOSFCSWIFT_NAME(IOSurfaceRef);
^
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceRef.h:101:44: error:
expected ';' after top level declarator
extern const CFStringRef kIOSurfaceIsGlobal IOSFC_A...
^
In file included from :1:
In file included from /Users/gongfang/Work/workspace/yiZhiFu/yizhifutweak/theos/Prefix.pch:4:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:12:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h:14:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityAdditions.h:10:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h:10:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:11:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h:10:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIColor.h:11:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.h:15:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h:11:
In file included from /Users/gongfang/Work/workspace/yiZhiFu/yizhifutweak/theos/include/ImageIO/ImageIO.h:5:
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageSource.h:12:33: error:
typedef redefinition with different types ('struct IIO_BRIDGED_TYPE' vs
'struct objc_object *')
typedef struct IIO_BRIDGED_TYPE(id) CGImageSource * CGImageSourceRef;
^
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/usr/include/objc/objc.h:46:29: note:
previous definition is here
typedef struct objc_object *id;
^
In file included from :1:
In file included from /Users/gongfang/Work/workspace/yiZhiFu/yizhifutweak/theos/Prefix.pch:4:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:12:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h:14:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityAdditions.h:10:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h:10:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:11:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h:10:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIColor.h:11:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.h:15:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h:11:
In file included from /Users/gongfang/Work/workspace/yiZhiFu/yizhifutweak/theos/include/ImageIO/ImageIO.h:5:
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageSource.h:12:36: error:
expected ';' after top level declarator
typedef struct IIO_BRIDGED_TYPE(id) CGImageSource * CGImageSourceRef;
^
In file included from :1:
In file included from /Users/gongfang/Work/workspace/yiZhiFu/yizhifutweak/theos/Prefix.pch:4:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h:12:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h:14:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityAdditions.h:10:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h:10:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:11:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h:10:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIColor.h:11:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.h:15:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h:11:
In file included from /Users/gongfang/Work/workspace/yiZhiFu/yizhifutweak/theos/include/ImageIO/ImageIO.h:5:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageSource.h:15:
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageMetadata.h:37:39: error:
typedef redefinition with different types ('const struct IIO_BRIDGED_TYPE' vs
'struct objc_object *')
typedef const struct IIO_BRIDGED_TYPE(id) CGImageMetadata *CGImageMetadataRef;
^
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.0.sdk/usr/include/objc/objc.h:46:29: note:
previous definition is here
typedef struct objc_object *id;
^
In file included from :1:

Posts: 1

Participants: 1

Read full topic

Deb怎么安装后变成app那样啊

$
0
0

@Mr.Z wrote:

看到一些插件 比如ig这样的,安装后会变成app那样,有大神知道咋做的么

Posts: 1

Participants: 1

Read full topic

修复应用弹窗是什么原理?

关于logify.pl报错的问题!!

$
0
0

@jzbb99 wrote:

报错如下:
Can't open ~/Desktop/xxxxxxxxxxxx.h: No such file or directory at /opt/theos/bin/logify.pl line 23.
弄了几天了,不知道啥原因?

Posts: 2

Participants: 2

Read full topic

debugserver为什么一直在Listening to port 1234 for a connection from *

$
0
0

@bianhao0903 wrote:

按照大神书上的教程以及论坛 里更新的教程 安装及调试lldb及debugserver 总是停留在listening to port 1234 for a connection from *..... 不是几分钟 也不是十几分钟,是一直卡在这里,不动,测试机也黑屏。尝试了有几十次了,总是不行,ent.xml下载、ldid替换、debugserver瘦身、debugserver安装都尝试过了很多次,都绝望了。测试机是 iphone4s ,系统iOS8.1 mac 系统 OSX 10.11.6,希望大神们百忙之中抽出时间来帮忙看看,论坛里的其他解决方案我也都看了,都不管用,要不是实在没办法,不发帖麻烦大家。

Posts: 2

Participants: 2

Read full topic

求助:tweak工程编译错误

$
0
0

@mboy1987 wrote:

需求:用theos创建工程并打包

操作步骤:我安装了theos、ldid,用theos创建了工程,也下载了dpkg-deb和libsubstrate.dylib,但是make时始终过不去
报错信息

Makefile里内容
ARCHS = armv7 arm64
TARGET = iphone:latest:8.0
THEOS_DEVICE_IP = 172.20.10.4
export THEOS_DEVICE_PORT = 2222
include $(THEOS)/makefiles/common.mk
TWEAK_NAME = iOSREProject
iOSREProject_FILES = Tweak.xm
iOSREProject_FRAMEWORKS = UIKit
include $(THEOS_MAKE_PATH)/tweak.mk
after-install::
install.exec "killall -9 SpringBoard"

本人逆向小白,望各位不吝赐教

Posts: 3

Participants: 2

Read full topic


有关tweak hook的问题

No matching process were found

有人玩过通过Tweak把百度地图集成到目标APP里面吗,小弟开始已经成功,现在总是报“地图所需资源文件不完整,请根据开发指南正确添加mapapi.bundle文件”

$
0
0

@wylf wrote:

通过iOSOpenDev把百度地图hook进目标程序,开始已经完美的显示地图界面,而上午突然间地图界面就是一片空白了,
在百度开发者平台设置的安全码绝对和目标APP 的 Bundle Identifier 一致。主要这个tweak刚装进去的是可以显示地图界面,只温存了两天,今天上午就不显示了:weary:

而且报警告

: 地图所需资源文件不完整,请根据开发指南正确添加mapapi.bundle文件

我保证我花了一天的时间根据开发指南去添加mapapi.bundle文件,姿势绝对没问题,但是还是报警告。

有大神知道解决办法吗,给小弟一些提示。

Posts: 1

Participants: 1

Read full topic

想WeChat注入自己的Tweak后,进入app一会儿后,请各位大师帮忙指教,谢谢

$
0
0

@755929377 wrote:

Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Notice: This report is abbreviated for syslog inclusion because it could not be saved to disk.
Symbolication may be possible by manually cleaning up and including the Binary Image section of a full report from this same device -- good luck!
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Process: WeChat [1576]
Path: /private/var/containers/Bundle/Application/61E50159-2A61-4F14-A14C-C4A3A4990FE1/WeChat.app/WeChat
OS Version: iPhone OS 11.0 (15A372)
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Subtype: KERN_INVALID_ADDRESS at 0x0000000000000002
VM Region Info: 0x2 is not in any region. Bytes before following region: 4342038526
REGION TYPE START - END [ VSIZE] PRT/MAX SHRMOD REGION DETAIL
UNUSED SPACE AT START
--->
__TEXT 0000000102ce4000-0000000105dbc000 [ 48.8M] r-x/r-x SM=COW ...t.app/WeChat]

Termination Signal: Segmentation fault: 11
Termination Reason: Namespace SIGNAL, Code 0xb
Terminating Process: exc handler [0]
Triggered by Thread: 32
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 0 name: Dispatch queue: com.apple.main-thread
Thread 0:
0 libsystem_kernel.dylib 0x000000018288cbc4 0x18288c000 + 3012
1 libsystem_kernel.dylib 0x000000018288ca3c 0x18288c000 + 2620
2 CoreFoundation 0x0000000182d3bce4 0x182c52000 + 957668
3 CoreFoundation 0x0000000182d398b0 0x182c52000 + 948400
4 CoreFoundation 0x0000000182c5a2d8 0x182c52000 + 33496
5 GraphicsServices 0x0000000184aebf84 0x184ae1000 + 44932
6 UIKit 0x000000018c206880 0x18c193000 + 473216
7 WeChat 0x0000000102db2d58 0x102ce4000 + 847192
8 libdyld.dylib 0x000000018277e56c 0x18277d000 + 5484
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 1 name: Dispatch queue: NSOperationQueue 0x1c4a28080 (QOS: UNSPECIFIED)
Thread 1:
0 libsystem_kernel.dylib 0x000000018288cbc4 0x18288c000 + 3012
1 libsystem_kernel.dylib 0x000000018288ca3c 0x18288c000 + 2620
2 CoreFoundation 0x0000000182d3bce4 0x182c52000 + 957668
3 CoreFoundation 0x0000000182d398b0 0x182c52000 + 948400
4 CoreFoundation 0x0000000182c5a2d8 0x182c52000 + 33496
5 Foundation 0x00000001836826e4 0x183676000 + 50916
6 Foundation 0x00000001836a1afc 0x183676000 + 178940
7 WeChat 0x000000010409d7c0 0x102ce4000 + 20682688
8 WeChat 0x000000010409d670 0x102ce4000 + 20682352
9 Foundation 0x0000000183760004 0x183676000 + 958468
10 libdispatch.dylib 0x0000000182719048 0x182718000 + 4168
11 libdispatch.dylib 0x00000001827213d4 0x182718000 + 37844
12 libdispatch.dylib <\M-b\M^@\M-&>
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 2 name: Dispatch queue: NSOperationQueue 0x1c4a277a0 (QOS: UNSPECIFIED)
Thread 2:
0 libsystem_kernel.dylib 0x000000018288cbc4 0x18288c000 + 3012
1 libsystem_kernel.dylib 0x000000018288ca3c 0x18288c000 + 2620
2 CoreFoundation 0x0000000182d3bce4 0x182c52000 + 957668
3 CoreFoundation 0x0000000182d398b0 0x182c52000 + 948400
4 CoreFoundation 0x0000000182c5a2d8 0x182c52000 + 33496
5 WeChat 0x00000001055b8260 0x102ce4000 + 42812000
6 CoreFoundation 0x0000000182d9b6a0 0x182c52000 + 1349280
7 CoreFoundation 0x0000000182c7a820 0x182c52000 + 165920
8 Foundation 0x000000018375e7a4 0x183676000 + 952228
9 Foundation 0x000000018368e620 0x183676000 + 99872
10 Foundation 0x0000000183760004 0x183676000 + 958468
11 libdispatch.dylib 0x0000000182719048 0x182718000 + 4168
12 libdispatch.dylib <\M-b\M^@\M-&>
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 3:
0 libsystem_kernel.dylib 0x00000001828ad150 0x18288c000 + 135504
1 libsystem_pthread.dylib 0x00000001829c2d40 0x1829be000 + 19776
2 mars 0x00000001077a7b5c 0x107608000 + 1702748
3 mars 0x0000000107611bbc 0x107608000 + 39868
4 mars 0x000000010764e93c 0x107608000 + 289084
5 libsystem_pthread.dylib 0x00000001829c032c 0x1829be000 + 9004
6 libsystem_pthread.dylib 0x00000001829c01f8 0x1829be000 + 8696
7 libsystem_pthread.dylib 0x00000001829bec38 0x1829be000 + 3128
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 4:
0 libsystem_kernel.dylib 0x00000001828ad648 0x18288c000 + 136776
1 libsystem_c.dylib 0x00000001827c6f90 0x1827ba000 + 53136
2 libsystem_c.dylib 0x000000018282ff50 0x1827ba000 + 483152
3 WeChat 0x00000001054e002c 0x102ce4000 + 41926700
4 libsystem_pthread.dylib 0x00000001829c032c 0x1829be000 + 9004
5 libsystem_pthread.dylib 0x00000001829c01f8 0x1829be000 + 8696
6 libsystem_pthread.dylib 0x00000001829bec38 0x1829be000 + 3128
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 5:
0 libsystem_kernel.dylib 0x00000001828ad570 0x18288c000 + 136560
1 WeChat 0x00000001054e00f0 0x102ce4000 + 41926896
2 libsystem_pthread.dylib 0x00000001829c032c 0x1829be000 + 9004
3 libsystem_pthread.dylib 0x00000001829c01f8 0x1829be000 + 8696
4 libsystem_pthread.dylib 0x00000001829bec38 0x1829be000 + 3128
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 6:
0 libsystem_kernel.dylib 0x00000001828ad648 0x18288c000 + 136776
1 libsystem_c.dylib 0x00000001827c6f90 0x1827ba000 + 53136
2 libsystem_c.dylib 0x000000018282ff50 0x1827ba000 + 483152
3 WeChat 0x00000001033826b0 0x102ce4000 + 6940336
4 libsystem_pthread.dylib 0x00000001829c032c 0x1829be000 + 9004
5 libsystem_pthread.dylib 0x00000001829c01f8 0x1829be000 + 8696
6 libsystem_pthread.dylib 0x00000001829bec38 0x1829be000 + 3128
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 7 name: KSCrash Exception Handler (Primary)
Thread 7:
0 libsystem_kernel.dylib 0x000000018288cbc4 0x18288c000 + 3012
1 libsystem_kernel.dylib 0x000000018288ca3c 0x18288c000 + 2620
2 WeChat 0x0000000103381438 0x102ce4000 + 6935608
3 libsystem_pthread.dylib 0x00000001829c032c 0x1829be000 + 9004
4 libsystem_pthread.dylib 0x00000001829c01f8 0x1829be000 + 8696
5 libsystem_pthread.dylib 0x00000001829bec38 0x1829be000 + 3128
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 8:
0 libsystem_kernel.dylib 0x00000001828ad648 0x18288c000 + 136776
1 libsystem_c.dylib 0x00000001827c6f90 0x1827ba000 + 53136
2 libsystem_c.dylib 0x00000001827c6eb0 0x1827ba000 + 52912
3 WeChat 0x000000010567ca48 0x102ce4000 + 43616840
4 Foundation 0x0000000183783860 0x183676000 + 1103968
5 libsystem_pthread.dylib 0x00000001829c032c 0x1829be000 + 9004
6 libsystem_pthread.dylib 0x00000001829c01f8 0x1829be000 + 8696
7 libsystem_pthread.dylib 0x00000001829bec38 0x1829be000 + 3128
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 9 name: com.apple.uikit.eventfetch-thread
Thread 9:
0 libsystem_kernel.dylib 0x000000018288cbc4 0x18288c000 + 3012
1 libsystem_kernel.dylib 0x000000018288ca3c 0x18288c000 + 2620
2 CoreFoundation 0x0000000182d3bce4 0x182c52000 + 957668
3 CoreFoundation 0x0000000182d398b0 0x182c52000 + 948400
4 CoreFoundation 0x0000000182c5a2d8 0x182c52000 + 33496
5 Foundation 0x00000001836826e4 0x183676000 + 50916
6 Foundation 0x00000001836a1afc 0x183676000 + 178940
7 UIKit 0x000000018cd5202c 0x18c193000 + 12316716
8 Foundation 0x0000000183783860 0x183676000 + 1103968
9 libsystem_pthread.dylib 0x00000001829c032c 0x1829be000 + 9004
10 libsystem_pthread.dylib 0x00000001829c01f8 0x1829be000 + 8696
11 libsystem_pthread.dylib 0x00000001829bec38 0x1829be000 + 3128
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 10 name: Dispatch queue: NSOperationQueue 0x1c4a277a0 (QOS: UNSPECIFIED)
Thread 10:
0 libsystem_kernel.dylib 0x000000018288cbc4 0x18288c000 + 3012
1 libsystem_kernel.dylib 0x000000018288ca3c 0x18288c000 + 2620
2 CoreFoundation 0x0000000182d3bce4 0x182c52000 + 957668
3 CoreFoundation 0x0000000182d398b0 0x182c52000 + 948400
4 CoreFoundation 0x0000000182c5a2d8 0x182c52000 + 33496
5 WeChat 0x00000001055b8260 0x102ce4000 + 42812000
6 CoreFoundation 0x0000000182d9b6a0 0x182c52000 + 1349280
7 CoreFoundation 0x0000000182c7a820 0x182c52000 + 165920
8 Foundation 0x000000018375e7a4 0x183676000 + 952228
9 Foundation 0x000000018368e620 0x183676000 + 99872
10 Foundation 0x0000000183760004 0x183676000 + 958468
11 libdispatch.dylib 0x0000000182719048 0x182718000 + 4168
12 libdispatch.dylib <\M-b\M^@\M-&>
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 11 name: Dispatch queue: com.apple.root.background-qos
Thread 11:
0 libsystem_kernel.dylib 0x00000001828ad648 0x18288c000 + 136776
1 libsystem_c.dylib 0x00000001827c6f90 0x1827ba000 + 53136
2 libsystem_c.dylib 0x000000018282ff50 0x1827ba000 + 483152
3 libWeChatPlugIn.dylib 0x0000000107d63340 0x107cf8000 + 439104
4 libdispatch.dylib 0x0000000182719088 0x182718000 + 4232
5 libdispatch.dylib 0x0000000182719048 0x182718000 + 4168
6 libdispatch.dylib 0x0000000182726378 0x182718000 + 58232
7 libdispatch.dylib 0x0000000182725f10 0x182718000 + 57104
8 libsystem_pthread.dylib 0x00000001829bf130 0x1829be000 + 4400
9 libsystem_pthread.dylib 0x00000001829bec30 0x1829be000 + 3120
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 12:
0 libsystem_kernel.dylib 0x00000001828ad648 0x18288c000 + 136776
1 libsystem_c.dylib 0x00000001827c6f90 0x1827ba000 + 53136
2 Foundation 0x0000000183782a14 0x183676000 + 1100308
3 WeChat 0x00000001055fd9dc 0x102ce4000 + 43096540
4 Foundation 0x0000000183783860 0x183676000 + 1103968
5 libsystem_pthread.dylib 0x00000001829c032c 0x1829be000 + 9004
6 libsystem_pthread.dylib 0x00000001829c01f8 0x1829be000 + 8696
7 libsystem_pthread.dylib 0x00000001829bec38 0x1829be000 + 3128
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 13:
0 libsystem_kernel.dylib 0x00000001828ad150 0x18288c000 + 135504
1 libsystem_pthread.dylib 0x00000001829c2d40 0x1829be000 + 19776
2 mars 0x000000010764db18 0x107608000 + 285464
3 mars 0x0000000107626d64 0x107608000 + 126308
4 mars 0x0000000107627b3c 0x107608000 + 129852
5 mars 0x000000010764e93c 0x107608000 + 289084
6 libsystem_pthread.dylib 0x00000001829c032c 0x1829be000 + 9004
7 libsystem_pthread.dylib 0x00000001829c01f8 0x1829be000 + 8696
8 libsystem_pthread.dylib 0x00000001829bec38 0x1829be000 + 3128
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 14 name: mars::stn
Thread 14:
0 libsystem_kernel.dylib 0x00000001828ad150 0x18288c000 + 135504
1 libsystem_pthread.dylib 0x00000001829c2d40 0x1829be000 + 19776
2 mars 0x000000010764db18 0x107608000 + 285464
3 mars 0x0000000107626d64 0x107608000 + 126308
4 mars 0x0000000107627b3c 0x107608000 + 129852
5 mars 0x000000010764e93c 0x107608000 + 289084
6 libsystem_pthread.dylib 0x00000001829c032c 0x1829be000 + 9004
7 libsystem_pthread.dylib 0x00000001829c01f8 0x1829be000 + 8696
8 libsystem_pthread.dylib 0x00000001829bec38 0x1829be000 + 3128
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 15 name: mars::smc
Thread 15:
0 libsystem_kernel.dylib 0x00000001828ad150 0x18288c000 + 135504
1 libsystem_pthread.dylib 0x00000001829c2d40 0x1829be000 + 19776
2 mars 0x000000010764db18 0x107608000 + 285464
3 mars 0x0000000107626d64 0x107608000 + 126308
4 mars 0x00000001076280f4 0x107608000 + 131316
5 mars 0x000000010764e93c 0x107608000 + 289084
6 libsystem_pthread.dylib 0x00000001829c032c 0x1829be000 + 9004
7 libsystem_pthread.dylib 0x00000001829c01f8 0x1829be000 + 8696
8 libsystem_pthread.dylib 0x00000001829bec38 0x1829be000 + 3128
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 16 name: mars::cdn
Thread 16:
0 libsystem_kernel.dylib 0x00000001828ad150 0x18288c000 + 135504
1 libsystem_pthread.dylib 0x00000001829c2d40 0x1829be000 + 19776
2 mars 0x000000010764db18 0x107608000 + 285464
3 mars 0x0000000107626d64 0x107608000 + 126308
4 mars 0x00000001076280f4 0x107608000 + 131316
5 mars 0x000000010764e93c 0x107608000 + 289084
6 libsystem_pthread.dylib 0x00000001829c032c 0x1829be000 + 9004
7 libsystem_pthread.dylib 0x00000001829c01f8 0x1829be000 + 8696
8 libsystem_pthread.dylib 0x00000001829bec38 0x1829be000 + 3128
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 17 name: AVAudioSession Notify Thread
Thread 17:
0 libsystem_kernel.dylib 0x000000018288cbc4 0x18288c000 + 3012
1 libsystem_kernel.dylib 0x000000018288ca3c 0x18288c000 + 2620
2 CoreFoundation 0x0000000182d3bce4 0x182c52000 + 957668
3 CoreFoundation 0x0000000182d398b0 0x182c52000 + 948400
4 CoreFoundation 0x0000000182c5a2d8 0x182c52000 + 33496
5 AVFAudio 0x0000000188523774 0x18849f000 + 542580
6 AVFAudio 0x000000018854e018 0x18849f000 + 716824
7 libsystem_pthread.dylib 0x00000001829c032c 0x1829be000 + 9004
8 libsystem_pthread.dylib 0x00000001829c01f8 0x1829be000 + 8696
9 libsystem_pthread.dylib 0x00000001829bec38 0x1829be000 + 3128
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 18 name: WCDB-checkpoint
Thread 18:
0 libsystem_kernel.dylib 0x00000001828ad150 0x18288c000 + 135504
1 libsystem_pthread.dylib 0x00000001829c2d40 0x1829be000 + 19776
2 libc++.1.dylib 0x000000018222bea4 0x182224000 + 32420
3 WCDB 0x0000000106b7bfb8 0x106b6c000 + 65464
4 WCDB 0x0000000106b7bec8 0x106b6c000 + 65224
5 libsystem_pthread.dylib 0x00000001829c032c 0x1829be000 + 9004
6 libsystem_pthread.dylib 0x00000001829c01f8 0x1829be000 + 8696
7 libsystem_pthread.dylib 0x00000001829bec38 0x1829be000 + 3128
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 19 name: com.apple.CoreMotion.MotionThread
Thread 19:
0 libsystem_kernel.dylib 0x000000018288cbc4 0x18288c000 + 3012
1 libsystem_kernel.dylib 0x000000018288ca3c 0x18288c000 + 2620
2 CoreFoundation 0x0000000182d3bce4 0x182c52000 + 957668
3 CoreFoundation 0x0000000182d398b0 0x182c52000 + 948400
4 CoreFoundation 0x0000000182c5a2d8 0x182c52000 + 33496
5 CoreFoundation 0x0000000182ca912c 0x182c52000 + 356652
6 CoreMotion 0x000000018803e088 0x187fc2000 + 508040
7 libsystem_pthread.dylib 0x00000001829c032c 0x1829be000 + 9004
8 libsystem_pthread.dylib 0x00000001829c01f8 0x1829be000 + 8696
9 libsystem_pthread.dylib 0x00000001829bec38 0x1829be000 + 3128
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 20 name: com.apple.NSURLConnectionLoader
Thread 20:
0 libsystem_kernel.dylib 0x000000018288cbc4 0x18288c000 + 3012
1 libsystem_kernel.dylib 0x000000018288ca3c 0x18288c000 + 2620
2 CoreFoundation 0x0000000182d3bce4 0x182c52000 + 957668
3 CoreFoundation 0x0000000182d398b0 0x182c52000 + 948400
4 CoreFoundation 0x0000000182c5a2d8 0x182c52000 + 33496
5 CFNetwork 0x00000001833c3b40 0x183315000 + 715584
6 Foundation 0x0000000183783860 0x183676000 + 1103968
7 libsystem_pthread.dylib 0x00000001829c032c 0x1829be000 + 9004
8 libsystem_pthread.dylib 0x00000001829c01f8 0x1829be000 + 8696
9 libsystem_pthread.dylib 0x00000001829bec38 0x1829be000 + 3128
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 21:
0 libsystem_kernel.dylib 0x00000001828ad150 0x18288c000 + 135504
1 libsystem_pthread.dylib 0x00000001829c2d40 0x1829be000 + 19776
2 libc++.1.dylib 0x000000018222bea4 0x182224000 + 32420
3 JavaScriptCore 0x0000000189fd8b30 0x189693000 + 9722672
4 JavaScriptCore 0x0000000189fd8a58 0x189693000 + 9722456
5 JavaScriptCore 0x0000000189fd8dbc 0x189693000 + 9723324
6 libsystem_pthread.dylib 0x00000001829c032c 0x1829be000 + 9004
7 libsystem_pthread.dylib 0x00000001829c01f8 0x1829be000 + 8696
8 libsystem_pthread.dylib 0x00000001829bec38 0x1829be000 + 3128
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 22:
0 libsystem_kernel.dylib 0x00000001828addbc 0x18288c000 + 138684
1 libsystem_pthread.dylib 0x00000001829befb0 0x1829be000 + 4016
2 libsystem_pthread.dylib 0x00000001829bec30 0x1829be000 + 3120
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 23:
0 libsystem_kernel.dylib 0x00000001828addbc 0x18288c000 + 138684
1 libsystem_pthread.dylib 0x00000001829befb0 0x1829be000 + 4016
2 libsystem_pthread.dylib 0x00000001829bec30 0x1829be000 + 3120
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 24:
0 libsystem_kernel.dylib 0x00000001828addbc 0x18288c000 + 138684
1 libsystem_pthread.dylib 0x00000001829bf144 0x1829be000 + 4420
2 libsystem_pthread.dylib 0x00000001829bec30 0x1829be000 + 3120
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 25:
0 libsystem_kernel.dylib 0x00000001828addbc 0x18288c000 + 138684
1 libsystem_pthread.dylib 0x00000001829befb0 0x1829be000 + 4016
2 libsystem_pthread.dylib 0x00000001829bec30 0x1829be000 + 3120
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 26 name: Dispatch queue: NSOperationQueue 0x1c4a277a0 (QOS: UNSPECIFIED)
Thread 26:
0 libsystem_kernel.dylib 0x000000018288cbc4 0x18288c000 + 3012
1 libsystem_kernel.dylib 0x000000018288ca3c 0x18288c000 + 2620
2 CoreFoundation 0x0000000182d3bce4 0x182c52000 + 957668
3 CoreFoundation 0x0000000182d398b0 0x182c52000 + 948400
4 CoreFoundation 0x0000000182c5a2d8 0x182c52000 + 33496
5 WeChat 0x00000001055b8260 0x102ce4000 + 42812000
6 CoreFoundation 0x0000000182d9b6a0 0x182c52000 + 1349280
7 CoreFoundation 0x0000000182c7a820 0x182c52000 + 165920
8 Foundation 0x000000018375e7a4 0x183676000 + 952228
9 Foundation 0x000000018368e620 0x183676000 + 99872
10 Foundation 0x0000000183760004 0x183676000 + 958468
11 libdispatch.dylib 0x0000000182719048 0x182718000 + 4168
12 libdispatch.dylib <\M-b\M^@\M-&>
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 27:
0 libsystem_kernel.dylib 0x00000001828addbc 0x18288c000 + 138684
1 libsystem_pthread.dylib 0x00000001829bf144 0x1829be000 + 4420
2 libsystem_pthread.dylib 0x00000001829bec30 0x1829be000 + 3120
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 28:
0 libsystem_kernel.dylib 0x00000001828addbc 0x18288c000 + 138684
1 libsystem_pthread.dylib 0x00000001829bf144 0x1829be000 + 4420
2 libsystem_pthread.dylib 0x00000001829bec30 0x1829be000 + 3120
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 29 name: WebThread
Thread 29:
0 libsystem_kernel.dylib 0x000000018288cbc4 0x18288c000 + 3012
1 libsystem_kernel.dylib 0x000000018288ca3c 0x18288c000 + 2620
2 CoreFoundation 0x0000000182d3bce4 0x182c52000 + 957668
3 CoreFoundation 0x0000000182d398b0 0x182c52000 + 948400
4 CoreFoundation 0x0000000182c5a2d8 0x182c52000 + 33496
5 WebCore 0x000000018aaa9ac4 0x18aa68000 + 268996
6 libsystem_pthread.dylib 0x00000001829c032c 0x1829be000 + 9004
7 libsystem_pthread.dylib 0x00000001829c01f8 0x1829be000 + 8696
8 libsystem_pthread.dylib 0x00000001829bec38 0x1829be000 + 3128
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 30 name: mars::stn::lonklink
Thread 30:
0 libsystem_kernel.dylib 0x00000001828911a0 0x18288c000 + 20896
1 mars 0x000000010763686c 0x107608000 + 190572
2 mars 0x000000010793efec 0x107608000 + 3370988
3 mars 0x000000010793a29c 0x107608000 + 3351196
4 mars 0x000000010764e93c 0x107608000 + 289084
5 libsystem_pthread.dylib 0x00000001829c032c 0x1829be000 + 9004
6 libsystem_pthread.dylib 0x00000001829c01f8 0x1829be000 + 8696
7 libsystem_pthread.dylib 0x00000001829bec38 0x1829be000 + 3128
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 31:
0 libsystem_kernel.dylib 0x00000001828ad150 0x18288c000 + 135504
1 libsystem_pthread.dylib 0x00000001829c2d40 0x1829be000 + 19776
2 WeChat 0x0000000104357d5c 0x102ce4000 + 23543132
3 Foundation 0x0000000183783860 0x183676000 + 1103968
4 libsystem_pthread.dylib 0x00000001829c032c 0x1829be000 + 9004
5 libsystem_pthread.dylib 0x00000001829c01f8 0x1829be000 + 8696
6 libsystem_pthread.dylib 0x00000001829bec38 0x1829be000 + 3128
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 32 name: Dispatch queue: com.apple.root.background-qos
Thread 32 Crashed:
0 libobjc.A.dylib 0x00000001822bc428 0x1822a0000 + 115752
1 libdispatch.dylib 0x0000000182719048 0x182718000 + 4168
2 libdispatch.dylib 0x00000001827213d4 0x182718000 + 37844
3 libdispatch.dylib 0x000000018272aca4 0x182718000 + 76964
4 libdispatch.dylib 0x000000018271ff54 0x182718000 + 32596
5 libdispatch.dylib 0x00000001827261c8 0x182718000 + 57800
6 libdispatch.dylib 0x0000000182725f10 0x182718000 + 57104
7 libsystem_pthread.dylib 0x00000001829bf130 0x1829be000 + 4400
8 libsystem_pthread.dylib 0x00000001829bec30 0x1829be000 + 3120
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 33:
0 libsystem_pthread.dylib 0x00000001829bec2c 0x1829be000 + 3116
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 34:
0 libsystem_kernel.dylib 0x00000001828addbc 0x18288c000 + 138684
1 libsystem_pthread.dylib 0x00000001829bf144 0x1829be000 + 4420
2 libsystem_pthread.dylib 0x00000001829bec30 0x1829be000 + 3120
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 35:
0 libsystem_kernel.dylib 0x00000001828addbc 0x18288c000 + 138684
1 libsystem_pthread.dylib 0x00000001829bf144 0x1829be000 + 4420
2 libsystem_pthread.dylib 0x00000001829bec30 0x1829be000 + 3120
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 36 name: Dispatch queue: NSOperationQueue 0x1c4a277a0 (QOS: UNSPECIFIED)
Thread 36:
0 libsystem_kernel.dylib 0x000000018288cbc4 0x18288c000 + 3012
1 libsystem_kernel.dylib 0x000000018288ca3c 0x18288c000 + 2620
2 CoreFoundation 0x0000000182d3bce4 0x182c52000 + 957668
3 CoreFoundation 0x0000000182d398b0 0x182c52000 + 948400
4 CoreFoundation 0x0000000182c5a2d8 0x182c52000 + 33496
5 WeChat 0x00000001055b8260 0x102ce4000 + 42812000
6 CoreFoundation 0x0000000182d9b6a0 0x182c52000 + 1349280
7 CoreFoundation 0x0000000182c7a820 0x182c52000 + 165920
8 Foundation 0x000000018375e7a4 0x183676000 + 952228
9 Foundation 0x000000018368e620 0x183676000 + 99872
10 Foundation 0x0000000183760004 0x183676000 + 958468
11 libdispatch.dylib 0x0000000182719048 0x182718000 + 4168
12 libdispatch.dylib <\M-b\M^@\M-&>
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 37:
0 libsystem_pthread.dylib 0x00000001829bec2c 0x1829be000 + 3116
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 38:
0 libsystem_pthread.dylib 0x00000001829bec2c 0x1829be000 + 3116
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 39:
0 libsystem_kernel.dylib 0x00000001828addbc 0x18288c000 + 138684
1 libsystem_pthread.dylib 0x00000001829befb0 0x1829be000 + 4016
2 libsystem_pthread.dylib 0x00000001829bec30 0x1829be000 + 3120
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 40:
0 libsystem_pthread.dylib 0x00000001829bec2c 0x1829be000 + 3116
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 41:
0 libsystem_kernel.dylib 0x00000001828ad150 0x18288c000 + 135504
1 libsystem_pthread.dylib 0x00000001829c2d40 0x1829be000 + 19776
2 mars 0x000000010764db18 0x107608000 + 285464
3 mars 0x00000001078f6570 0x107608000 + 3073392
4 mars 0x000000010764e93c 0x107608000 + 289084
5 libsystem_pthread.dylib 0x00000001829c032c 0x1829be000 + 9004
6 libsystem_pthread.dylib 0x00000001829c01f8 0x1829be000 + 8696
7 libsystem_pthread.dylib 0x00000001829bec38 0x1829be000 + 3128
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 42:
0 libsystem_kernel.dylib 0x00000001828ad150 0x18288c000 + 135504
1 libsystem_pthread.dylib 0x00000001829c2d40 0x1829be000 + 19776
2 mars 0x000000010764db18 0x107608000 + 285464
3 mars 0x00000001078fd300 0x107608000 + 3101440
4 mars 0x000000010764e93c 0x107608000 + 289084
5 libsystem_pthread.dylib 0x00000001829c032c 0x1829be000 + 9004
6 libsystem_pthread.dylib 0x00000001829c01f8 0x1829be000 + 8696
7 libsystem_pthread.dylib 0x00000001829bec38 0x1829be000 + 3128
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 43 name: mars::stn::shortlink
Thread 43:
0 libsystem_kernel.dylib 0x00000001828911a0 0x18288c000 + 20896
1 mars 0x000000010763686c 0x107608000 + 190572
2 mars 0x0000000107615828 0x107608000 + 55336
3 mars 0x00000001079afd88 0x107608000 + 3833224
4 mars 0x00000001079ad5d8 0x107608000 + 3823064
5 mars 0x000000010764e93c 0x107608000 + 289084
6 libsystem_pthread.dylib 0x00000001829c032c 0x1829be000 + 9004
7 libsystem_pthread.dylib 0x00000001829c01f8 0x1829be000 + 8696
8 libsystem_pthread.dylib 0x00000001829bec38 0x1829be000 + 3128
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 44:
0 libsystem_kernel.dylib 0x00000001828911a0 0x18288c000 + 20896
1 mars 0x000000010763686c 0x107608000 + 190572
2 mars 0x00000001078a3640 0x107608000 + 2733632
3 mars 0x000000010764e93c 0x107608000 + 289084
4 libsystem_pthread.dylib 0x00000001829c032c 0x1829be000 + 9004
5 libsystem_pthread.dylib 0x00000001829c01f8 0x1829be000 + 8696
6 libsystem_pthread.dylib 0x00000001829bec38 0x1829be000 + 3128
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 45:
0 libsystem_kernel.dylib 0x00000001828911a0 0x18288c000 + 20896
1 mars 0x000000010763686c 0x107608000 + 190572
2 mars 0x00000001078a3640 0x107608000 + 2733632
3 mars 0x000000010764e93c 0x107608000 + 289084
4 libsystem_pthread.dylib 0x00000001829c032c 0x1829be000 + 9004
5 libsystem_pthread.dylib 0x00000001829c01f8 0x1829be000 + 8696
6 libsystem_pthread.dylib 0x00000001829bec38 0x1829be000 + 3128
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 46 name: mars::stn::shortlink
Thread 46:
0 libsystem_kernel.dylib 0x00000001828911a0 0x18288c000 + 20896
1 mars 0x000000010763686c 0x107608000 + 190572
2 mars 0x0000000107615828 0x107608000 + 55336
3 mars 0x00000001079afd88 0x107608000 + 3833224
4 mars 0x00000001079ad5d8 0x107608000 + 3823064
5 mars 0x000000010764e93c 0x107608000 + 289084
6 libsystem_pthread.dylib 0x00000001829c032c 0x1829be000 + 9004
7 libsystem_pthread.dylib 0x00000001829c01f8 0x1829be000 + 8696
8 libsystem_pthread.dylib 0x00000001829bec38 0x1829be000 + 3128
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 47 name: mars::stn::shortlink
Thread 47:
0 libsystem_kernel.dylib 0x00000001828911a0 0x18288c000 + 20896
1 mars 0x000000010763686c 0x107608000 + 190572
2 mars 0x0000000107615828 0x107608000 + 55336
3 mars 0x00000001079afd88 0x107608000 + 3833224
4 mars 0x00000001079ad5d8 0x107608000 + 3823064
5 mars 0x000000010764e93c 0x107608000 + 289084
6 libsystem_pthread.dylib 0x00000001829c032c 0x1829be000 + 9004
7 libsystem_pthread.dylib 0x00000001829c01f8 0x1829be000 + 8696
8 libsystem_pthread.dylib 0x00000001829bec38 0x1829be000 + 3128
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 48 name: mars::stn::shortlink
Thread 48:
0 libsystem_kernel.dylib 0x00000001828911a0 0x18288c000 + 20896
1 mars 0x000000010763686c 0x107608000 + 190572
2 mars 0x0000000107615828 0x107608000 + 55336
3 mars 0x00000001079afd88 0x107608000 + 3833224
4 mars 0x00000001079ad5d8 0x107608000 + 3823064
5 mars 0x000000010764e93c 0x107608000 + 289084
6 libsystem_pthread.dylib 0x00000001829c032c 0x1829be000 + 9004
7 libsystem_pthread.dylib 0x00000001829c01f8 0x1829be000 + 8696
8 libsystem_pthread.dylib 0x00000001829bec38 0x1829be000 + 3128
Sep 27 09:54:27 koukokyaku ReportCrash(CrashReporterSupport)[1577] : Thread 32 crashed with ARM Thread State (64-bit):
x0: 0x0000000000000002 x1: 0x000000018cf0ff46 x2: 0x0000000000000058 x3: 0x0000000107e734c0
x4: 0x0000000000000000 x5: 0x0000000000000000 x6: 0x00000001c464a410 x7: 0x0000000000000000
x8: 0x0000000000000058 x9: 0x00000001b1f19000 x10: 0x000000013e8b2400 x11: 0x0000003f0000007f
x12: 0x000000013e8b2720 x13: 0x000001a1b375bbb1 x14: 0x0000000000000001 x15: 0x0000000000000881
x16: 0x0000000182c58fe4 x17: 0x0000000182c5a7f8 x18: 0x0000000000000000 x19: 0x00000001b3752a80
x20: 0x00000001c0a62940 x21: 0x0000000000000000 x22: 0x0000000000000000 x23: 0x000000016e6b30e0
x24: 0x0000000000000000 x25: 0x0000000000000010 x26: 0x00000001c02c05b0 x27: 0x000000016e6b30e0
x28: 0x00000001c011ddc8 fp: 0x000000016e6b2ca0 lr: 0x0000000182719048
sp: 0x000000016e6b2c90 pc: 0x00000001822bc428 cpsr: 0x20000000
Sep 27 09:54:28 koukokyaku dasd(DuetActivitySchedulerDaemon)[140] : Attempting to suspend based on triggers: ( "com.apple.duetactivityscheduler.nwstatus.cell" )
Sep 27 09:54:28 koukokyaku dasd(DuetActivitySchedulerDaemon)[140] : com.apple.safarishared.WBSParsecDSession.autoFillDataUpdate:19708A:[
{name: DeviceActivityPolicy, policyWeight: 10.000, response: {Decision: Can Proceed, Score: 0.05}}
] sumScores:27.520000, denominator:37.020000, FinalDecision: Can Proceed FinalScore: 0.743382}
Sep 27 09:54:28 koukokyaku dasd(DuetActivitySchedulerDaemon)[140] : Ignoring trigger com.apple.duetactivityscheduler.nwstatus.cell because conditions are deteriorating
Sep 27 09:54:28 koukokyaku dasd(DuetActivitySchedulerDaemon)[140] : Evaluating 0 activities based on triggers
Sep 27 09:54:28 koukokyaku CommCenter(libATCommandStudioDynamic.dylib)[80] : QMI: Svc=0x03(NAS) Ind MsgId=0x0051 Bin=['01 1F 00 80 03 04 04 9E 3A 51 00 13 00 14 06 00 C9 F9 AE FF 16 01 A2 01 00 64 A4 03 00 01 64 00']
Sep 27 09:54:28 koukokyaku assertiond[66] : [WeChat:1576] Port death watcher fired.
Sep 27 09:54:28 koukokyaku assertiond[66] : Server invalidated
Sep 27 09:54:28 koukokyaku assertiond[66] : Client relinquished
Sep 27 09:54:28 koukokyaku assertiond[66] : [WeChat:1576] Ignoring assertion remove, because we are terminated or pending termination
Sep 27 09:54:28 koukokyaku assertiond[66] : Process exited:
Sep 27 09:54:28 koukokyaku assertiond[66] : [WeChat:1576] Invalidating...
Sep 27 09:54:28 koukokyaku assertiond[66] : [WeChat:1576] dump all assertions HWM:3 (CPUMON check): {
[active]
}
Sep 27 09:54:28 koukokyaku assertiond[66] : [WeChat:1576] Got exit context:
Sep 27 09:54:28 koukokyaku assertiond[66] : [WeChat:1576] Terminating because the job-submitter has disconnected.
Sep 27 09:54:28 koukokyaku assertiond[66] : Deleted job with label: UIKitApplication:cn.com.ZHLife[0xb912][66]
Sep 27 09:54:28 koukokyaku assertiond[66] : [WeChat:1576] Deleted launchd job with label: UIKitApplication:cn.com.ZHLife[0xb912][66]
Sep 27 09:54:28 koukokyaku assertiond[66] : [WeChat:1576] Invalidation complete.
Sep 27 09:54:28 koukokyaku assertiond[66] : [WeChat:1576] Removing client:
Sep 27 09:54:28 koukokyaku assertiond[66] : Checking for deferred bootstrap request for cn.com.ZHLife
Sep 27 09:54:28 koukokyaku assertiond[66] : [WeChat:1576] No clients remain.
Sep 27 09:54:28 koukokyaku assertiond[66] : -[BKAssertion dealloc] - <0x153d92550>
Sep 27 09:54:28 koukokyaku SpringBoard(FrontBoard)[55] : crashed.
Sep 27 09:54:28 koukokyaku SpringBoard[55] : Process exited: ->
Sep 27 09:54:28 koukokyaku SpringBoard[55] : lock/volume priority is:volume
Sep 27 09:54:28 koukokyaku SpringBoard[55] : lock/volume priority is:volume
Sep 27 09:54:28 koukokyaku SpringBoard[55] : Application process state changed for cn.com.ZHLife: (null)
Sep 27 09:54:28 koukokyaku SpringBoard(FrontBoard)[55] : [FBProcessManager] Removing:
Sep 27 09:54:28 koukokyaku SpringBoard[55] : Running for transition request:
{
applicationContext = entities = {
SBLayoutRolePrimary = ;
};
}
Sep 27 09:54:28 koukokyaku SpringBoard(WiFiPicker)[55] : WIFI PICKER [cn.com.ZHLife]: isProcessLaunch: 0, isForegroundActivation: 0, isForegroundDeactivation: 1
Sep 27 09:54:28 koukokyaku SpringBoard[55] : Not animating wallpaper orientation to portrait (1) in 0.00 because it's already in that orientation
Sep 27 09:54:28 koukokyaku SpringBoard[55] : - _setIdleTimerWithDescriptor: reason:"SBAppDidEnterBackground"]
Sep 27 09:54:28 koukokyaku SpringBoard[55] : 0x1c1671640 reconfigured attention timeouts:{
132 = "SBAttentionAwareIdleTimerTimeoutContext - expectation: quickWarn";
130 = "SBAttentionAwareIdleTimerTimeoutContext - expectation: warn";
150 = "SBAttentionAwareIdleTimerTimeoutContext - expectation: expiration";
}, configuration generation: 4067
Sep 27 09:54:28 koukokyaku SpringBoard[55] : attention client RESUME (identifier: com.apple.springboard.attention-0x1c1671640 samplingInterval: 0.00000 samplingDelay: 0.00000 attentionLostTimeouts: 282.00000, 280.00000, 300.00000 mask Button|Keyboard|Digitizer|GameController|MesaTouch)
Sep 27 09:54:28 koukokyaku SpringBoard[55] : setting configuration: (identifier: com.apple.springboard.attention-0x1c1671640 samplingInterval: 0.00000 samplingDelay: 0.00000 attentionLostTimeouts: 132.00000, 130.00000, 150.00000 mask Button|Keyboard|Digitizer|GameController|MesaTouch)
Sep 27 09:54:28 koukokyaku SpringBoard(FrontBoard)[55] : Added:
Sep 27 09:54:28 koukokyaku SpringBoard(FrontBoard)[55] : [cn.com.ZHLife] Setting deactivation reasons to: 'appSwitcher' for reason: updateAllScenesForBand - Assertion added.
Sep 27 09:54:28 koukokyaku SpringBoard[55] : Force wallpaper rotation with alternate orientation source: ActiveOrientation
Sep 27 09:54:28 koukokyaku SpringBoard[55] : Not animating wallpaper orientation to portrait (1) in 0.00 because it's already in that orientation
Sep 27 09:54:28 koukokyaku backboardd(AttentionAwareness)[60] : RemoteClient.m:255 : 52534.09703: Info: reset attention lost timeout for at 52534.09693
Sep 27 09:54:28 koukokyaku backboardd(AttentionAwareness)[60] : Scheduler.m:142 : 52534.09707: Info: 1 clients:
Sep 27 09:54:28 koukokyaku backboardd(AttentionAwareness)[60] : RemoteClient.m:255 : 52534.09919: Info: reset attention lost timeout for at 52534.09918
Sep 27 09:54:28 koukokyaku backboardd(AttentionAwareness)[60] : RemoteClient.m:141 : 52534.09924: Info: updated config , old config
Sep 27 09:54:28 koukokyaku SpringBoard[55] : - _setIdleTimerWithDescriptor: reason:"SBWorkspaceActiveProviderChanged:SBAppDidEnterForeground"]
Sep 27 09:54:28 koukokyaku SpringBoard[55] : attention client SUSPEND (identifier: com.apple.springboard.attention-0x1c1671640 samplingInterval: 0.00000 samplingDelay: 0.00000 attentionLostTimeouts: 132.00000, 130.00000, 150.00000 mask Button|Keyboard|Digitizer|GameController|MesaTouch)
Sep 27 09:54:28 koukokyaku SpringBoard[55] : SB orientation locked: YES; user lock: YES, was stale: NO, orientation: overrides: NO,
Sep 27 09:54:28 koukokyaku SpringBoard(FrontBoard)[55] : Removed:
Sep 27 09:54:29 koukokyaku SpringBoard(FrontBoard)[55] : [cn.com.ZHLife] Setting deactivation reasons to: '(none)' for reason: updateAllScenesForBand - Assertion removed.
Sep 27 09:54:29 koukokyaku mediaserverd(CoreMedia)[27] : -CMSessionMgr- CMSessionMgrHandleApplicationStateChange: CMSession: Client cn.com.ZHLife with pid '1576' is now Terminated. Background entitlement: NO
Sep 27 09:54:28 koukokyaku backboardd(AttentionAwareness)[60] : Scheduler.m:169 : 52534.11165: Info: 0 clients:
Sep 27 09:54:29 koukokyaku CommCenter[80] : #I BundleID: is no longer a foreground app
Sep 27 09:54:29 koukokyaku CommCenter[80] : #I FBSDisplayLayoutUpdateHandler: update start
Sep 27 09:54:29 koukokyaku CommCenter[80] : #I ActivationObserver: notifyAboutFrontAppChange : app: ; pid: 0; net: 0
Sep 27 09:54:29 koukokyaku CommCenter[80] : #I FBSDisplayLayoutUpdateHandler: 5. app got notification state: new counter=1042
Sep 27 09:54:29 koukokyaku sharingd[61] : SystemUI changed: 0x0 -> 0x10
Sep 27 09:54:29 koukokyaku SpringBoard[55] : Front display did change: (null)
Sep 27 09:54:29 koukokyaku SpringBoard[55] : lock/volume priority is:volume
Sep 27 09:54:29 koukokyaku SpringBoard[55] : Root transaction complete:
Sep 27 09:54:29 koukokyaku CommCenter[80] : #I SIM has not requested to be notified on entering idle screen, not processing
Sep 27 09:54:29 koukokyaku SpringBoard[55] : - _setIdleTimerWithDescriptor: reason:"SBWorkspaceActiveProviderChanged:SBApplicationSceneDestroyed"]
Sep 27 09:54:29 koukokyaku SpringBoard[55] : attention client RESUME (identifier: com.apple.springboard.attention-0x1c1671640 samplingInterval: 0.00000 samplingDelay: 0.00000 attentionLostTimeouts: 132.00000, 130.00000, 150.00000 mask Button|Keyboard|Digitizer|GameController|MesaTouch)
Sep 27 09:54:29 koukokyaku SpringBoard[55] : 0x1c1671640 reconfigured attention timeouts:{
132 = "SBAttentionAwareIdleTimerTimeoutContext - expectation: quickWarn";
130 = "SBAttentionAwareIdleTimerTimeoutContext - expectation: warn";
150 = "SBAttentionAwareIdleTimerTimeoutContext - expectation: expiration";
}, configuration generation: 4068
Sep 27 09:54:29 koukokyaku backboardd(AttentionAwareness)[60] : RemoteClient.m:255 : 52534.13489: Info: reset attention lost timeout for at 52534.13476
Sep 27 09:54:29 koukokyaku backboardd(AttentionAwareness)[60] : Scheduler.m:142 : 52534.13496: Info: 1 clients:
Sep 27 09:54:29 koukokyaku backboardd(AttentionAwareness)[60] : RemoteClient.m:255 : 52534.13561: Info: reset attention lost timeout for at 52534.13560
Sep 27 09:54:29 koukokyaku backboardd(AttentionAwareness)[60] : RemoteClient.m:141 : 52534.13576: Info: updated config , old config
Sep 27 09:54:29 koukokyaku SpringBoard[55] : setting configuration: (identifier: com.apple.springboard.attention-0x1c1671640 samplingInterval: 0.00000 samplingDelay: 0.00000 attentionLostTimeouts: 132.00000, 130.00000, 150.00000 mask Button|Keyboard|Digitizer|GameController|MesaTouch)
Sep 27 09:54:29 koukokyaku dasd(DuetActivitySchedulerDaemon)[140] : Trigger: is now []
Sep 27 09:54:29 koukokyaku dasd(DuetActivitySchedulerDaemon)[140] : Foreground app changed\M-b\M^@\M^T-
Sep 27 09:54:29 koukokyaku CommCenter[80] : #I BundleID: is no longer a foreground app
Sep 27 09:54:29 koukokyaku symptomsd(SymptomEvaluator)[155] : 1576 cn.com.ZHLife: Terminated (most elevated: Terminated)
Sep 27 09:54:29 koukokyaku symptomsd(SymptomEvaluator)[155] : Entry, display name cn.com.ZHLife uuid (null) pid 1576 isFront 0
Sep 27 09:54:29 koukokyaku symptomsd(SymptomEvaluator)[155] : Continue with bundle name cn.com.ZHLife, is front 0
Sep 27 09:54:29 koukokyaku symptomsd(SymptomEvaluator)[155] : cn.com.ZHLife: Foreground: false
Sep 27 09:54:29 koukokyaku symptomsd(SymptomEvaluator)[155] : call _saveAndUnloadSelectState
Sep 27 09:54:29 koukokyaku wcd[54] : BKSApplicationStateTerminated for bundleID: cn.com.ZHLife
Sep 27 09:54:29 koukokyaku symptomsd(SymptomEvaluator)[155] : NBSM Current state: normal, changed: systemForeground to 0 for net type 0
Sep 27 09:54:29 koukokyaku symptomsd(SymptomEvaluator)[155] : NBSM Eligible to go to broken
Sep 27 09:54:29 koukokyaku symptomsd(SymptomEvaluator)[155] : NBSM Current state: normal, changed: systemForeground to 0 for net type 0, eligible for broken but constraints unsatisfied (0,0)
Sep 27 09:54:29 koukokyaku dasd(DuetActivitySchedulerDaemon)[140] : Submit activity: in group: com.apple.backgroundAppRefresh with capacity: 3
Sep 27 09:54:29 koukokyaku wcd[54] : removing client: cn.com.ZHLife from list of clients {"com.alipay.iphoneclient" = "(NO,NO), clientCurrentPairingID: (null)>";"com.netease.news" = "(NO,NO), clientCurrentPairingID: (null)>";"com.tencent.xin" = "(NO,NO), clientCurrentPairingID: (null)>";}
Sep 27 09:54:29 koukokyaku wcd[54] : cn.com.ZHLife
Sep 27 09:54:29 koukokyaku wcd[54] : cn.com.ZHLife, numMonitored: 0
Sep 27 09:54:29 koukokyaku wcd[54] : removed cn.com.ZHLife
Sep 27 09:54:29 koukokyaku dasd(DuetActivitySchedulerDaemon)[140] : Submitted Activity: com.apple.fetch.cn.com.ZHLife:79D9B2
Sep 27 09:54:29 koukokyaku dasd(DuetActivitySchedulerDaemon)[140] : Adding a launch request (com.apple.das.launchreason.fetch) for application by activity
Sep 27 09:54:29 koukokyaku dasd(DuetActivitySchedulerDaemon)[140] : Launch requests for : (null)
Sep 27 09:54:29 koukokyaku dasd(DuetActivitySchedulerDaemon)[140] : Activity : Optimal Score 0.8487 at (Valid Until: )
Sep 27 09:54:29 koukokyaku sharingd(WirelessProximity)[61] : Nearby stop advertising of type: 16
Sep 27 09:54:29 koukokyaku sharingd(WirelessProximity)[61] : Nearby start advertising with data: Advertising request of type 16, priority 1, UseFG 432 (270.00 ms), data <0b10c126 75>, connectable 1, options {
} priority 0 mode 432 options (null)
Sep 27 09:54:29 koukokyaku wirelessproxd[59] : Stop advertising for process sharingd (61) of type 16
Sep 27 09:54:29 koukokyaku wirelessproxd[59] : Nothing left to advertise, stopping
Sep 27 09:54:29 koukokyaku bluetoothd[78] : Received XPC message "CBMsgIdStopAdvertising" from session "com.apple.wirelessproxd-peripheral-59-2"
Sep 27 09:54:29 koukokyaku bluetoothd[78] : Received 'stop advertising' request from session "com.apple.wirelessproxd-peripheral-59-2"
Sep 27 09:54:29 koukokyaku bluetoothd[78] : Sending XPC message "CBMsgIdAdvertisingStopped" to session "com.apple.wirelessproxd-peripheral-59-2"
Sep 27 09:54:29 koukokyaku bluetoothd[78] : Received XPC message "CBMsgIdStopAdvertising" from session "com.apple.wirelessproxd-peripheral-59-3"
Sep 27 09:54:29 koukokyaku bluetoothd[78] : Sending XPC message "CBMsgIdAdvertisingStopped" to session "com.apple.wirelessproxd-peripheral-59-3"
Sep 27 09:54:29 koukokyaku wirelessproxd[59] : Start advertising for process sharingd (61) of type 16 with advertising interval 432 (270.00 ms)
Sep 27 09:54:29 koukokyaku wirelessproxd[59] : Adding data of type: 16, advData: <0b10c126 75> advInterval: 432
Sep 27 09:54:29 koukokyaku wirelessproxd[59] : Current advertisement packet: <10050b10 c12675>
Sep 27 09:54:29 koukokyaku wirelessproxd[59] : AdvertisingRulesiOS: current advertisers: [number of indexes: 1 (in 1 ranges), indexes: (16)]
Sep 27 09:54:29 koukokyaku bluetoothd[78] : Sending 'advertising status changed' event to local device listeners
Sep 27 09:54:29 koukokyaku wirelessproxd[59] : advertisingRulesiOS - advertising packets: (
{
kCBAdvDataAppleMfgData = <0aff4c00 10050b10 c12675>;
kCBAdvDataIsConnectable = 1;
kCBAdvOptionAdvertisingInterval = 432;
kCBMsgArgIsPrivilegedDaemon = 1;
}
)
Sep 27 09:54:29 koukokyaku wirelessproxd[59] : Requesting to start advertising for clients 16 with (
{
kCBAdvDataAppleMfgData = <0aff4c00 10050b10 c12675>;
kCBAdvDataIsConnectable = 1;
kCBAdvOptionAdvertisingInterval = 432;
kCBMsgArgIsPrivilegedDaemon = 1;
}
)
Sep 27 09:54:29 koukokyaku bluetoothd[78] : Received XPC message "CBMsgIdStopAdvertising" from session "com.apple.wirelessproxd-peripheral-59-2"
Sep 27 09:54:29 koukokyaku bluetoothd[78] : Sending XPC message "CBMsgIdAdvertisingStopped" to session "com.apple.wirelessproxd-peripheral-59-2"
Sep 27 09:54:29 koukokyaku bluetoothd[78] : Received XPC message "CBMsgIdStopAdvertising" from session "com.apple.wirelessproxd-peripheral-59-3"
Sep 27 09:54:29 koukokyaku bluetoothd[78] : Sending XPC message "CBMsgIdAdvertisingStopped" to session "com.apple.wirelessproxd-peripheral-59-3"
Sep 27 09:54:29 koukokyaku bluetoothd[78] : Received XPC message "CBMsgIdStartAdvertising" from session "com.apple.wirelessproxd-peripheral-59-2"
Sep 27 09:54:29 koukokyaku bluetoothd[78] : Received 'start advertising' request from session "com.apple.wirelessproxd-peripheral-59-2", with manufacturer data [ 0A FF 4C 00 10 05 0B 10 C1 26 75 ], interval 1B0, no name
Sep 27 09:54:29 koukokyaku bluetoothd[78] : Sending XPC message "CBMsgIdAdvertisingStarted" to session "com.apple.wirelessproxd-peripheral-59-2"
Sep 27 09:54:29 koukokyaku wirelessproxd[59] : Started to advertise for type 16 with error (null)
Sep 27 09:54:29 koukokyaku bluetoothd[78] : Sending 'advertising status changed' event to local device listeners
Sep 27 09:54:29 koukokyaku analyticsd[90] : [] no observers; dropped.
Sep 27 09:54:29 koukokyaku analyticsd[90] : [] no observers; dropped.
Sep 27 09:54:29 koukokyaku analyticsd[90] : [] no observers; dropped.
Sep 27 09:54:29 koukokyaku analyticsd[90] : [] no observers; dropped.
Sep 27 09:54:29 koukokyaku CommCenter(libATCommandStudioDynamic.dylib)[80] : QMI: Svc=0x03(NAS) Ind MsgId=0x0051 Bin=['01 1F 00 80 03 04 04 9F 3A 51 00 13 00 14 06 00 C8 F9 AC FF 08 01 A2 01 00 64 A4 03 00 01 64 00']
Sep 27 09:54:29 koukokyaku CommCenter(libATCommandStudioDynamic.dylib)[80] : QMI: Svc=0xe2(BSP) Req MsgId=0xe002 Bin=[]
Sep 27 09:54:30 koukokyaku CommCenter(libATCommandStudioDynamic.dylib)[80] : QMI: Svc=0xe2(BSP) Resp MsgId=0xe002 Bin=[]
Sep 27 09:54:30 koukokyaku CommCenter(libATCommandStudioDynamic.dylib)[80] : QMI: Svc=0x03(NAS) Ind MsgId=0x0051 Bin=['01 1F 00 80 03 04 04 A0 3A 51 00 13 00 14 06 00 C9 F8 AD FF 0E 01 A2 01 00 64 A4 03 00 01 64 00']
Sep 27 09:54:31 koukokyaku backboardd(IOKit)[60] : iohideventsystem_client_dispatch_properties_changed:0x10004003
Sep 27 09:54:31 koukokyaku dasd(DuetActivitySchedulerDaemon)[140] : Attempting to suspend based on triggers: ( "com.apple.das.apppolicy.appchanged" )
Sep 27 09:54:31 koukokyaku dasd(DuetActivitySchedulerDaemon)[140] : com.apple.safarishared.WBSParsecDSession.autoFillDataUpdate:19708A:[
{name: DeviceActivityPolicy, policyWeight: 10.000, response: {Decision: Can Proceed, Score: 0.05}}
] sumScores:27.520000, denominator:37.020000, FinalDecision: Can Proceed FinalScore: 0.743382}
Sep 27 09:54:31 koukokyaku dasd(DuetActivitySchedulerDaemon)[140] : Ignoring trigger com.apple.das.apppolicy.appchanged because conditions are deteriorating
Sep 27 09:54:31 koukokyaku dasd(DuetActivitySchedulerDaemon)[140] : Evaluating 0 activities based on triggers
Sep 27 09:54:31 koukokyaku CommCenter(libATCommandStudioDynamic.dylib)[80] : QMI: Svc=0x03(NAS) Ind MsgId=0x0051 Bin=['01 1F 00 80 03 04 04 A1 3A 51 00 13 00 14 06 00 C8 F8 AC FF E0 00 A2 01 00 64 A4 03 00 01 64 00']
Sep 27 09:54:32 koukokyaku CommCenter(libATCommandStudioDynamic.dylib)[80] : QMI: Svc=0xe2(BSP) Req MsgId=0xe002 Bin=[]
Sep 27 09:54:32 koukokyaku CommCenter(libATCommandStudioDynamic.dylib)[80] : QMI: Svc=0xe2(BSP) Resp MsgId=0xe002 Bin=[]
Sep 27 09:54:32 koukokyaku CommCenter(libATCommandStudioDynamic.dylib)[80] : QMI: Svc=0x03(NAS) Ind MsgId=0x0051 Bin=['01 1F 00 80 03 04 04 A2 3A 51 00 13 00 14 06 00 C8 F9 AD FF 08 01 A2 01 00 64 A4 03 00 01 64 00']
Sep 27 09:54:33 koukokyaku CommCenter(libATCommandStudioDynamic.dylib)[80] : QMI: Svc=0x03(NAS) Ind MsgId=0x0051 Bin=['01 1F 00 80 03 04 04 A3 3A 51 00 13 00 14 06 00 C8 F8 AC FF 08 01 A2 01 00 64 A4 03 00 01 64 00']
Sep 27 09:54:33 koukokyaku itunesstored(CFNetwork)[124] : TIC TCP Conn Cancel [385:0x108340cc0]
Sep 27 09:54:33 koukokyaku itunesstored(CFNetwork)[124] : TIC TCP Conn Cancel [384:0x109b84690]
Sep 27 09:54:33 koukokyaku kernel[0] : EXC_RESOURCE -> coreduetd[1571] exceeded mem limit: ActiveSoft 25 MB (non-fatal)
Sep 27 09:54:33 koukokyaku ReportCrash(CrashReporterSupport)[1577] : cr_update:
Sep 27 09:54:33 koukokyaku ReportCrash(CrashReporterSupport)[1577] : cr_update:
Sep 27 09:54:33 koukokyaku ReportCrash[1577] : Formulating report for corpse[1571] coreduetd
Sep 27 09:54:33 koukokyaku ReportCrash(CrashReporterSupport)[1577] : report not saved because it is non-actionable (ie: extension hangs or internal-only)
Sep 27 09:54:34 koukokyaku sharingd(WirelessProximity)[61] : Nearby stop advertising of type: 16
Sep 27 09:54:34 koukokyaku sharingd(WirelessProximity)[61] : Nearby start advertising with data: Advertising request of type 16, priority 1, UseFG 432 (270.00 ms), data <0b10c126 75>, connectable 1, options {
} priority 0 mode 432 options (null)
Sep 27 09:54:34 koukokyaku wirelessproxd[59] : Stop advertising for process sharingd (61) of type 16
Sep 27 09:54:34 koukokyaku wirelessproxd[59] : Nothing left to advertise, stopping
Sep 27 09:54:34 koukokyaku wirelessproxd[59] : Start advertising for process sharingd (61) of type 16 with advertising interval 432 (270.00 ms)
Sep 27 09:54:34 koukokyaku wirelessproxd[59] : Adding data of type: 16, advData: <0b10c126 75> advInterval: 432
Sep 27 09:54:34 koukokyaku wirelessproxd[59] : Current advertisement packet: <10050b10 c12675>
Sep 27 09:54:34 koukokyaku wirelessproxd[59] : AdvertisingRulesiOS: current advertisers: [number of indexes: 1 (in 1 ranges), indexes: (16)]
Sep 27 09:54:34 koukokyaku wirelessproxd[59] : advertisingRulesiOS - advertising packets: (
{
kCBAdvDataAppleMfgData = <0aff4c00 10050b10 c12675>;
kCBAdvDataIsConnectable = 1;
kCBAdvOptionAdvertisingInterval = 432;
kCBMsgArgIsPrivilegedDaemon = 1;
}
)
Sep 27 09:54:34 koukokyaku wirelessproxd[59] : Requesting to start advertising for clients 16 with (
{
kCBAdvDataAppleMfgData = <0aff4c00 10050b10 c12675>;
kCBAdvDataIsConnectable = 1;
kCBAdvOptionAdvertisingInterval = 432;
kCBMsgArgIsPrivilegedDaemon = 1;
}
)
Sep 27 09:54:34 koukokyaku bluetoothd[78] : Received XPC message "CBMsgIdStopAdvertising" from session "com.apple.wirelessproxd-peripheral-59-2"
Sep 27 09:54:34 koukokyaku bluetoothd[78] : Received 'stop advertising' request from session "com.apple.wirelessproxd-peripheral-59-2"
Sep 27 09:54:34 koukokyaku bluetoothd[78] : Sending XPC message "CBMsgIdAdvertisingStopped" to session "com.apple.wirelessproxd-peripheral-59-2"
Sep 27 09:54:34 koukokyaku bluetoothd[78] : Received XPC message "CBMsgIdStopAdvertising" from session "com.apple.wirelessproxd-peripheral-59-3"
Sep 27 09:54:34 koukokyaku bluetoothd[78] : Sending XPC message "CBMsgIdAdvertisingStopped" to session "com.apple.wirelessproxd-peripheral-59-3"
Sep 27 09:54:34 koukokyaku bluetoothd[78] : Received XPC message "CBMsgIdStopAdvertising" from session "com.apple.wirelessproxd-peripheral-59-2"
Sep 27 09:54:34 koukokyaku bluetoothd[78] : Sending XPC message "CBMsgIdAdvertisingStopped" to session "com.apple.wirelessproxd-peripheral-59-2"
Sep 27 09:54:34 koukokyaku bluetoothd[78] : Received XPC message "CBMsgIdStopAdvertising" from session "com.apple.wirelessproxd-peripheral-59-3"
Sep 27 09:54:34 koukokyaku bluetoothd[78] : Sending XPC message "CBMsgIdAdvertisingStopped" to session "com.apple.wirelessproxd-peripheral-59-3"
Sep 27 09:54:34 koukokyaku bluetoothd[78] : Received XPC message "CBMsgIdStartAdvertising" from session "com.apple.wirelessproxd-peripheral-59-2"
Sep 27 09:54:34 koukokyaku bluetoothd[78] : Received 'start advertising' request from session "com.apple.wirelessproxd-peripheral-59-2", with manufacturer data [ 0A FF 4C 00 10 05 0B 10 C1 26 75 ], interval 1B0, no name
Sep 27 09:54:34 koukokyaku bluetoothd[78] : Sending XPC message "CBMsgIdAdvertisingStarted" to session "com.apple.wirelessproxd-peripheral-59-2"
Sep 27 09:54:34 koukokyaku bluetoothd[78] : Sending 'advertising status changed' event to local device listeners
Sep 27 09:54:34 koukokyaku wirelessproxd[59] : Started to advertise for type 16 with error (null)
Sep 27 09:54:34 koukokyaku bluetoothd[78] : Sending 'advertising status changed' event to local device listeners
Sep 27 09:54:34 koukokyaku analyticsd[90] : [] no observers; dropped.
Sep 27 09:54:34 koukokyaku analyticsd[90] : [] no observers; dropped.
Sep 27 09:54:34 koukokyaku analyticsd[90] : [] no observers; dropped.
Sep 27 09:54:34 koukokyaku analyticsd[90] : [] no observers; dropped.
Sep 27 09:54:34 koukokyaku CommCenter(libATCommandStudioDynamic.dylib)[80] : QMI: Svc=0xe2(BSP) Req MsgId=0xe002 Bin=[]
Sep 27 09:54:34 koukokyaku CommCenter(libATCommandStudioDynamic.dylib)[80] : QMI: Svc=0xe2(BSP) Resp MsgId=0xe002 Bin=[]
Sep 27 09:54:34 koukokyaku CommCenter(libATCommandStudioDynamic.dylib)[80] : QMI: Svc=0x03(NAS) Ind MsgId=0x0051 Bin=['01 1F 00 80 03 04 04 A4 3A 51 00 13 00 14 06 00 C8 F8 AC FF FC 00 A2 01 00 64 A4 03 00 01 64 00']
Sep 27 09:54:35 koukokyaku CommCenter(libATCommandStudioDynamic.dylib)[80] : QMI: Svc=0xe7(ELQM) Ind MsgId=0x0002 Bin=[]
Sep 27 09:54:35 koukokyaku CommCenter(libATCommandStudioDynamic.dylib)[80] : QMI: Svc=0xe2(BSP) Ind MsgId=0xe006 Bin=[]
Sep 27 09:54:35 koukokyaku CommCenter(libBasebandManager.dylib)[80] : #I Sending to at 1506477275883
Sep 27 09:54:35 koukokyaku CommCenter[80] : #I received event kEventCTCellularTrasmitState
Sep 27 09:54:35 koukokyaku CommCenter[80] : #I contents
Sep 27 09:54:35 koukokyaku CommCenter(libBasebandManager.dylib)[80] : #I
Sep 27 09:54:35 koukokyaku locationd[63] : {"msg":"kCLConnectionMessageOnBodyDetection", "event":"activity", "this":"0x13091f600", "registrationRequired":0, "registrationReceived":0}
Sep 27 09:54:35 koukokyaku locationd[63] : Client /System/Library/Frameworks/CoreTelephony.framework/Support/CommCenter (0x13091f600) is unsubscribing to notification kCLConnectionMessageOnBodyDetection
Sep 27 09:54:35 koukokyaku locationd[63] : #Warning Location connection invalid!
Sep 27 09:54:35 koukokyaku locationd[63] : {"msg":"CLConnection::handleDisconnection", "event":"activity"}
Sep 27 09:54:35 koukokyaku locationd[63] : Client /System/Library/Frameworks/CoreTelephony.framework/Support/CommCenter disconnected
Sep 27 09:54:35 koukokyaku symptomsd(SymptomEvaluator)[155] : eLQM: Updated cell states (payload = <02020000 00>): (LQM = 100, RRC = 0, INTF = 1)
Sep 27 09:54:35 koukokyaku symptomsd(SymptomEvaluator)[155] : eLQM: Posting RRC change notification with label = kNotificationCellLinkStateChange, state = 0, bitmask = 2, info = {
Detail = 0;
State = 0;
}
Sep 27 09:54:35 koukokyaku symptomsd(SymptomEvaluator)[155] : RRC State change
Sep 27 09:54:35 koukokyaku symptomsd(SymptomEvaluator)[155] : 0x104f5eed0 foreground: 0 primary: 0 for noi: NOI: v:0 type:Cell, isAny:no, isBuiltin:yes, loi:0, flags:0
Sep 27 09:54:35 koukokyaku symptomsd(SymptomEvaluator)[155] : 0x104f4a840 foreground: 0 primary: 0 for noi: NOI: v:0 type:Cell, isAny:yes, isBuiltin:no, loi:-1, flags:0
Sep 27 09:54:35 koukokyaku symptomsd(SymptomEvaluator)[155] : 0x104cbefc0 observed discretionaryTrafficInvited of object NOI: v:0 type:Cell, isAny:yes, isBuiltin:no, loi:-1, flags:0, partial update to pid: 1571, change: {
kind = 1;
new = 0;
}
Sep 27 09:54:35 koukokyaku symptomsd(SymptomEvaluator)[155] : 0x104ca48e0 (voided)
Sep 27 09:54:35 koukokyaku locationd[63] : {"msg":"state transition", "event":"state_transition", "state":"DaemonClient", "id":"0x13091f600", "property":"lifecycle", "old":"0x13091f600", "new":"0x0"}
Sep 27 09:54:35 koukokyaku symptomsd(SymptomEvaluator)[155] : RRC Update to OFF. mach time: 1260984292392 <0x104f4a840> (NOI: v:0 type:Cell, isAny:yes, isBuiltin:no, loi:-1, flags:0)
Sep 27 09:54:35 koukokyaku symptomsd(SymptomEvaluator)[155] : _lastDisconnectTimestamp: 1260984292392
Sep 27 09:54:35 koukokyaku symptomsd(SymptomEvaluator)[155] : 0x104f4a840 foreground: 0 primary: 0 for noi: NOI: v:0 type:Cell, isAny:yes, isBuiltin:no, loi:-1, flags:0
Sep 27 09:54:35 koukokyaku symptomsd(SymptomEvaluator)[155] : AWD RRC Metric: noi.isAny with no foregroundActivity flag became OFF (plugged in)
Sep 27 09:54:35 koukokyaku symptomsd(SymptomEvaluator)[155] : 0x104f3f140 foreground: 0 primary: 0 for noi: NOI: v:0 type:Cell, isAny:yes, isBuiltin:no, loi:-1, flags:1
Sep 27 09:54:35 koukokyaku symptomsd(SymptomEvaluator)[155] : New RRC 0 when previous 1 from pdp_ip0, epoch interface pdp_ip0
Sep 27 09:54:35 koukokyaku dasd(DuetActivitySchedulerDaemon)[140] : Trigger: is now []
Sep 27 09:54:35 koukokyaku symptomsd(SymptomEvaluator)[155] : RRC ioctl sets 0 for interface pdp_ip0
Sep 27 09:54:35 koukokyaku backboardd(IOKit)[60] : iohideventsystem_client_dispatch_properties_changed:0x10004003
Sep 27 09:54:35 koukokyaku CommCenter(libATCommandStudioDynamic.dylib)[80] : QMI: Svc=0x03(NAS) Ind MsgId=0x555b Bin=[]
Sep 27 09:54:35 koukokyaku CommCenter(libATCommandStudioDynamic.dylib)[80] : QMI: Svc=0x01(WDS) Ind MsgId=0x0001 Bin=['01 10 00 80 01 0B 04 34 03 01 00 04 00 18 01 00 01']
Sep 27 09:54:35 koukokyaku CommCenter(libCommCenterMCommandDrivers.dylib)[80] : #I EventReportInd, dormancy status: kDormant
Sep 27 09:54:35 koukokyaku CommCenter[80] : #I DormancyStatus event, success:true, status:kDormant
Sep 27 09:54:35 koukokyaku CommCenter(libATCommandStudioDynamic.dylib)[80] : QMI: Svc=0x01(WDS) Ind MsgId=0x0001 Bin=['01 10 00 80 01 01 04 E5 02 01 00 04 00 18 01 00 01']
Sep 27 09:54:35 koukokyaku CommCenter(libCommCenterMCommandDrivers.dylib)[80] : #I handleWdsEventReportInd_sync: Received WDS Set Event Report Indications
Sep 27 09:54:35 koukokyaku CommCenter(libCommCenterMCommandDrivers.dylib)[80] : #I processWdsTlvDormancyStatus: Dormancy status: kDormancyStatusDormant
Sep 27 09:54:35 koukokyaku CommCenter[80] : #I setDormancy: from false to true
Sep 27 09:54:35 koukokyaku CommCenter(libATCommandStudioDynamic.dylib)[80] : QMI: Svc=0x01(WDS) Req MsgId=0x0044 Bin=[]
Sep 27 09:54:35 koukokyaku CommCenter(libATCommandStudioDynamic.dylib)[80] : QMI: Svc=0x03(NAS) Ind MsgId=0x555b Bin=[]
Sep 27 09:54:35 koukokyaku CommCenter[80] : #N Add Frequency List Failed
Sep 27 09:54:35 koukokyaku CommCenter(libATCommandStudioDynamic.dylib)[80] : QMI: Svc=0x03(NAS) Ind MsgId=0x555b Bin=[]
Sep 27 09:54:35 koukokyaku CommCenter(libATCommandStudioDynamic.dylib)[80] : QMI: Svc=0x01(WDS) Resp MsgId=0x0044 Bin=[]
Sep 27 09:54:35 koukokyaku CommCenter(libCommCenterMCommandDrivers.dylib)[80] : #I sendWdsGetCurrentDataBearerTechReq_sync_block_invoke: Data Bearer Technology status: current network (2) rat mask (32) service option mask (0)
Sep 27 09:54:35 koukokyaku CommCenter[80] : #I notifyDataBearer: dataMode kDataWirelessTechnologyLTE; fDormancy true; sending kRadioTransmitDCH(TxOff)
Sep 27 09:54:35 koukokyaku CommCenter(PersistentConnection)[80] : Interface manager: WWAN radio power level notification; DCH status changed to inactive
Sep 27 09:54:35 koukokyaku CommCenter[80] : #N Add Frequency List Failed
Sep 27 09:54:35 koukokyaku locationd(PersistentConnection)[63] : Interface manager: WWAN radio power level notification; DCH status changed to inactive
Sep 27 09:54:35 koukokyaku locationd(PersistentConnection)[63] : WWAN: isInterfaceUsable? YES reachable YES linkQuality 100 isNetworkCaptive? NO
Sep 27 09:54:35 koukokyaku locationd(PersistentConnection)[63] : calculating _earlyFireDate. powerStateDetectionSupported = YES = (detectionSupported(YES) && (wwanIsUp(YES) || ! internetReachable(YES)))
Sep 27 09:54:35 koukokyaku locationd(PersistentConnection)[63] : Device is plugged in, overriding earlyFireProportion to be 1.0
Sep 27 09:54:35 koukokyaku locationd(PersistentConnection)[63] : Calculated minimum fire date 2017-09-27 12:11:48 +0800 with fire date [2017-09-27 12:11:48 +0800], start date [2017-09-27 07:11:48 +0800], minimum early fire proportion 0.9, power state detection supported: yes, in high power state: no
Sep 27 09:54:35 koukokyaku nanoregistryd(PersistentConnection)[99] : Interface manager: WWAN radio power level notification; DCH status changed to inactive
Sep 27 09:54:35 koukokyaku identityservicesd(PersistentConnection)[49] : Interface manager: WWAN radio power level notification; DCH status changed to inactive
Sep 27 09:54:35 koukokyaku identityservicesd(PersistentConnection)[49] : WWAN: isInterfaceUsable? YES reachable YES linkQuality 100 isNetworkCaptive? NO
Sep 27 09:54:35 koukokyaku identityservicesd(PersistentConnection)[49] : calculating _earlyFireDate. powerStateDetectionSupported = YES = (detectionSupported(YES) && (wwanIsUp(YES) || ! internetReachable(YES)))
Sep 27 09:54:35 koukokyaku identityservicesd(PersistentConnection)[49] : Device is plugged in, overriding earlyFireProportion to be 1.0
Sep 27 09:54:35 koukokyaku identityservicesd(PersistentConnection)[49] : Calculated minimum fire date 2017-10-21 22:45:15 +0800 with fire date [2017-10-21 22:45:15 +0800], start date [2017-09-26 19:33:42 +0800], minimum early fire proportion 1, power state detection supported: yes, in high power state: no
Sep 27 09:54:35 koukokyaku fmflocatord(PersistentConnection)[150] : Interface manager: WWAN radio power level notification; DCH status changed to inactive
Sep 27 09:54:35 koukokyaku SpringBoard(PersistentConnection)[55] : Interface manager: WWAN radio power level notification; DCH status changed to inactive
Sep 27 09:54:35 koukokyaku imagent(PersistentConnection)[65] : Interface manager: WWAN radio power level notification; DCH status changed to inactive
Sep 27 09:54:35 koukokyaku UserEventAgent(PersistentConnection)[23] : Interface manager: WWAN radio power level notification; DCH status changed to inactive
Sep 27 09:54:35 koukokyaku UserEventAgent(PersistentConnection)[23] : WWAN: isInterfaceUsable? YES reachable YES linkQuality 100 isNetworkCaptive? NO
Sep 27 09:54:35 koukokyaku UserEventAgent(PersistentConnection)[23] : calculating _earlyFireDate. powerStateDetectionSupported = YES = (detectionSupported(YES) && (wwanIsUp(YES) || ! internetReachable(YES)))
Sep 27 09:54:35 koukokyaku UserEventAgent(PersistentConnection)[23] : Device is plugged in, overriding earlyFireProportion to be 1.0
Sep 27 09:54:35 koukokyaku UserEventAgent(PersistentConnection)[23] : Forcing timer alignment to fire date [2017-09-27 12:54:03 +0800]
Sep 27 09:54:35 koukokyaku UserEventAgent(PersistentConnection)[23] : Calculated minimum fire date 2017-09-27 12:54:03 +0800 with fire date [2017-09-28 07:01:24 +0800], start date [2017-09-27 07:01:24 +0800], minimum early fire proportion 0, power state detection supported: yes, in high power state: no
Sep 27 09:54:35 koukokyaku apsd[100] : interface radio hotness changed to NO
Sep 27 09:54:35 koukokyaku apsd[100] : interface radio hotness changed to NO
Sep 27 09:54:35 koukokyaku apsd[100] : isPowerEfficientToSendFilter changed to NO
Sep 27 09:54:35 koukokyaku apsd(PersistentConnection)[100] : Interface manager: WWAN radio power level notification; DCH status changed to inactive
Sep 27 09:54:35 koukokyaku apsd(PersistentConnection)[100] : WWAN: isInterfaceUsable? YES reachable YES linkQuality 100 isNetworkCaptive? NO
Sep 27 09:54:35 koukokyaku apsd(PersistentConnection)[100] : calculating _earlyFireDate. powerStateDetectionSupported = YES = (detectionSupported(YES) && (wwanIsUp(YES) || ! internetReachable(YES)))
Sep 27 09:54:35 koukokyaku locationd(PersistentConnection)[63] : WWAN: isInterfaceUsable? YES reachable YES linkQuality 100 isNetworkCaptive? NO
Sep 27 09:54:35 koukokyaku locationd(PersistentConnection)[63] : calculating _earlyFireDate. powerStateDetectionSupported = YES = (detectionSupported(YES) && (wwanIsUp(YES) || ! internetReachable(YES)))
Sep 27 09:54:35 koukokyaku locationd(PersistentConnection)[63] : Device is plugged in, overriding earlyFireProportion to be 1.0
Sep 27 09:54:35 koukokyaku sharingd(PersistentConnection)[61] : Interface manager: WWAN radio power level notification; DCH status changed to inactive
Sep 27 09:54:35 koukokyaku sharingd(PersistentConnection)[61] : WWAN: isInterfaceUsable? YES reachable YES linkQuality 100 isNetworkCaptive? NO
Sep 27 09:54:35 koukokyaku sharingd(PersistentConnection)[61] : calculating _earlyFireDate. powerStateDetectionSupported = YES = (detectionSupported(YES) && (wwanIsUp(YES) || ! internetReachable(YES)))
Sep 27 09:54:35 koukokyaku sharingd(PersistentConnection)[61] : Device is plugged in, overriding earlyFireProportion to be 1.0
Sep 27 09:54:35 koukokyaku sharingd(PersistentConnection)[61] : Calculated minimum fire date 2017-09-28 01:10:19 +0800 with fire date [2017-09-28 01:10:19 +0800], start date [2017-09-27 08:37:19 +0800], minimum early fire proportion 1, power state detection supported: yes, in high power state: no
Sep 27 09:54:35 koukokyaku locationd(PersistentConnection)[63] : Calculated minimum fire date 2017-09-27 18:01:56 +0800 with fire date [2017-09-27 20:25:56 +0800], start date [2017-09-26 20:25:56 +0800], minimum early fire proportion 0.9, power state detection supported: yes, in high power state: no
Sep 27 09:54:35 koukokyaku UserEventAgent(PersistentConnection)[23] : WWAN: isInterfaceUsable? YES reachable YES linkQuality 100 isNetworkCaptive? NO
Sep 27 09:54:35 koukokyaku locationd(PersistentConnection)[63] : WWAN: isInterfaceUsable? YES reachable YES linkQuality 100 isNetworkCaptive? NO
Sep 27 09:54:35 koukokyaku UserEventAgent(PersistentConnection)[23] : calculating _earlyFireDate. powerStateDetectionSupported = YES = (detectionSupported(YES) && (wwanIsUp(YES) || ! internetReachable(YES)))
Sep 27 09:54:35 koukokyaku locationd(PersistentConnection)[63] : calculating _earlyFireDate. powerStateDetectionSupported = YES = (detectionSupported(YES) && (wwanIsUp(YES) || ! internetReachable(YES)))
Sep 27 09:54:35 koukokyaku UserEventAgent(PersistentConnection)[23] : Device is plugged in, overriding earlyFireProportion to be 1.0
Sep 27 09:54:35 koukokyaku locationd(PersistentConnection)[63] : Device is plugged in, overriding earlyFireProportion to be 1.0
Sep 27 09:54:35 koukokyaku UserEventAgent(PersistentConnection)[23] : Calculated minimum fire date 2017-09-27 10:52:26 +0800 with fire date [2017-09-27 10:52:26 +0800], start date [2017-09-27 09:52:26 +0800], minimum early fire proportion 0.45, power state detection supported: yes, in high power state: no
Sep 27 09:54:35 koukokyaku locationd(PersistentConnection)[63] : Calculated minimum fire date 2017-09-27 10:53:53 +0800 with fire date [2017-09-27 10:53:53 +0800], start date [2017-09-27 09:53:53 +0800], minimum early fire proportion 0.75, power state detection supported: yes, in high power state: no
Sep 27 09:54:35 koukokyaku apsd(PersistentConnection)[100] : Device is plugged in, overriding earlyFireProportion to be 1.0
Sep 27 09:54:35 koukokyaku locationd(PersistentConnection)[63] : WWAN: isInterfaceUsable? YES reachable YES linkQuality 100 isNetworkCaptive? NO
Sep 27 09:54:35 koukokyaku apsd(PersistentConnection)[100] : Calculated minimum fire date 2017-09-27 10:02:49 +0800 with fire date [2017-09-27 10:02:49 +0800], start date [2017-09-27 09:52:29 +0800], minimum early fire proportion 0, power state detection supported: yes, in high power state: no
Sep 27 09:54:35 koukokyaku locationd(PersistentConnection)[63] : calculating _earlyFireDate. powerStateDetectionSupported = YES = (detectionSupported(YES) && (wwanIsUp(YES) || ! internetReachable(YES)))
Sep 27 09:54:35 koukokyaku locationd(PersistentConnection)[63] : Device is plugged in, overriding earlyFireProportion to be 1.0
Sep 27 09:54:35 koukokyaku locationd(PersistentConnection)[63] : Calculated minimum fire date 2017-09-27 18:07:14 +0800 with fire date [2017-09-27 19:19:14 +0800], start date [2017-09-27 07:19:14 +0800], minimum early fire proportion 0.9, power state detection supported: yes, in high power state: no
Sep 27 09:54:35 koukokyaku locationd(PersistentConnection)[63] : WWAN: isInterfaceUsable? YES reachable YES linkQuality 100 isNetworkCaptive? NO
Sep 27 09:54:35 koukokyaku locationd(PersistentConnection)[63] : calculating _earlyFireDate. powerStateDetectionSupported = YES = (detectionSupported(YES) && (wwanIsUp(YES) || ! internetReachable(YES)))
Sep 27 09:54:35 koukokyaku locationd(PersistentConnection)[63] : Device is plugged in, overriding earlyFireProportion to be 1.0
Sep 27 09:54:35 koukokyaku locationd(PersistentConnection)[63] : Calculated minimum fire date 2017-09-27 12:47:03 +0800 with fire date [2017-09-27 12:47:03 +0800], start date [2017-09-27 09:46:43 +0800], minimum early fire proportion 0.9, power state detection supported: yes, in high power state: no
Sep 27 09:54:35 koukokyaku locationd(PersistentConnection)[63] : WWAN: isInterfaceUsable? YES reachable YES linkQuality 100 isNetworkCaptive? NO
Sep 27 09:54:35 koukokyaku locationd(PersistentConnection)[63] : calculating _earlyFireDate. powerStateDetectionSupported = YES = (detectionSupported(YES) && (wwanIsUp(YES) || ! internetReachable(YES)))
Sep 27 09:54:35 koukokyaku locationd(PersistentConnection)[63] : Device is plugged in, overriding earlyFireProportion to be 1.0
Sep 27 09:54:35 koukokyaku locationd(PersistentConnection)[63] : Calculated minimum fire date 2017-09-27 09:58:53 +0800 with fire date [2017-09-27 09:58:53 +0800], start date [2017-09-27 09:53:53 +0800], minimum early fire proportion 0.9, power state detection supported: yes, in high power state: no
Sep 27 09:54:35 koukokyaku locationd(PersistentConnection)[63] : WWAN: isInterfaceUsable? YES reachable YES linkQuality 100 isNetworkCaptive? NO
Sep 27 09:54:35 koukokyaku locationd(PersistentConnection)[63] : calculating _earlyFireDate. powerStateDetectionSupported = YES = (detectionSupported(YES) && (wwanIsUp(YES) || ! internetReachable(YES)))
Sep 27 09:54:35 koukokyaku locationd(PersistentConnection)[63] : Device is plugged in, overriding earlyFireProportion to be 1.0
Sep 27 09:54:35 koukokyaku locationd(PersistentConnection)[63] : Calculated minimum fire date 2017-09-27 23:31:14 +0800 with fire date [2017-09-28 01:19:14 +0800], start date [2017-09-27 07:19:14 +0800], minimum early fire proportion 0.9, power state detection supported: yes, in high power state: no
Sep 27 09:54:35 koukokyaku locationd(PersistentConnection)[63] : WWAN: isInterfaceUsable? YES reachable YES linkQuality 100 isNetworkCaptive? NO
Sep 27 09:54:35 koukokyaku locationd(PersistentConnection)[63] : calculating _earlyFireDate. powerStateDetectionSupported = YES = (detectionSupported(YES) && (wwanIsUp(YES) || ! internetReachable(YES)))
Sep 27 09:54:35 koukokyaku locationd(PersistentConnection)[63] : Device is plugged in, overriding earlyFireProportion to be 1.0
Sep 27 09:54:35 koukokyaku locationd(PersistentConnection)[63] : Calculated minimum fire date 2017-09-30 10:50:05 +0800 with fire date [2017-09-30 22:50:05 +0800], start date [2017-09-25 22:50:05 +0800], minimum early fire proportion 0.9, power state detection supported: yes, in high power state: no
Sep 27 09:54:35 koukokyaku locationd(PersistentConnection)[63] : WWAN: isInterfaceUsable? YES reachable YES linkQuality 100 isNetworkCaptive? NO
Sep 27 09:54:35 koukokyaku locationd(PersistentConnection)[63] : calculating _earlyFireDate. powerStateDetectionSupported = YES = (detectionSupported(YES) && (wwanIsUp(YES) || ! internetReachable(YES)))
Sep 27 09:54:35 koukokyaku locationd(PersistentConnection)[63] : Device is plugged in, overriding earlyFireProportion to be 1.0
Sep 27 09:54:35 koukokyaku locationd(PersistentConnection)[63] : Calculated minimum fire date 2017-09-27 12:47:03 +0800 with fire date [2017-09-27 12:47:03 +0800], start date [2017-09-27 09:46:43 +0800], minimum early fire proportion 0.9, power state detection supported: yes, in high power state: no
Sep 27 09:54:36 koukokyaku coreduetd(CoreData)[1571] : debug: CoreData+CloudKit: -PFCloudKitOptionsValidator validateOptions:andStoreOptions:error:: Validating options: containerIdentifier:com.apple.knowledgestore2 initializeSchema:NO ckAssetThresholdBytes:20480 operationMemoryThresholdBytes: useEncryptedStorage:YES containerOptions:
storeOptions: {
NSInferMappingModelAutomaticallyOption = 1;
NSMigratePersistentStoresAutomaticallyOption = 1;
NSPersistentHistoryTrackingKey = {
};
NSPersistentStoreFileProtectionKey = NSFileProtectionCompleteUntilFirstUserAuthentication;
NSPersistentStoreMirroringOptionsKey = {
NSPersistentStoreMirroringDelegateOptionKey = "";
};
NSReadOnlyPersistentStoreOption = 0;
}
Sep 27 09:54:36 koukokyaku tccd[109] : PID[108] is checking access for target PID[1571]
Sep 27 09:54:36 koukokyaku tccd[109] : Granting PID[1571] access to via entitlement 'com.apple.private.tcc.allow'
Sep 27 09:54:36 koukokyaku cloudd(CloudKitDaemon)[108] : Creating a new client context 0x103ca3090
Sep 27 09:54:36 koukokyaku coreduetd(CoreData)[1571] : error: CoreData+CloudKit: -[NSCloudKitMirroringDelegate _setUpCloudKitIntegration]blockinvoke(271): : Failed to set up CloudKit integration for store: (URL: file:///var/mobile/Library/CoreDuet/Knowledge/knowledge-syncC.db)
Error Domain=NSCloudKitMirroringDelegateErrorDomain Code=1 "Unable to initialize without an iCloud account (CKAccountStatusNoAccount)." UserInfo={NSLocalizedFailureReason=Unable to initialize without an iCloud account (CKAccountStatusNoAccount).}
Sep 27 09:54:36 koukokyaku coreduetd(CoreData)[1571] : error: CoreData+CloudKit: -NSCloudKitMirroringDelegate recoverFromError:: - Attempting recovery from error: Error Domain=NSCloudKitMirroringDelegateErrorDomain Code=1 "Unable to initialize without an iCloud account (CKAccountStatusNoAccount)." UserInfo={NSLocalizedFailureReason=Unable to initialize without an iCloud account (CKAccountStatusNoAccount).}
Sep 27 09:54:36 koukokyaku coreduetd(CoreData)[1571] : error: CoreData+CloudKit: -[NSCloudKitMirroringDelegate recoverFromError:]blockinvoke(822): - Failed to recover from error: Error Domain=NSCloudKitMirroringDelegateErrorDomain Code=1 "Unable to initialize without an iCloud account (CKAccountStatusNoAccount)." UserInfo={NSLocalizedFailureReason=Unable to initialize without an iCloud account (CKAccountStatusNoAccount).}
Recovery encountered the following error: (null)
Sep 27 09:54:36 koukokyaku kernel[0] : EXC_RESOURCE -> coreduetd[1571] exceeded mem limit: InactiveHard 10 MB (fatal)
Sep 27 09:54:36 koukokyaku kernel[0] : 52541.503 memorystatus: killing_specific_process pid 1571 [coreduetd] (per-process-limit 0) - memorystatus_available_pages: 34231
Sep 27 09:54:36 koukokyaku mediaserverd(AudioToolbox)[27] : 105: { "action":"client_died", "session":{"ID":"0x1d400","PID":1571,"name":"coreduetd"}, "details":null }
Sep 27 09:54:36 koukokyaku mediaserverd(libAudioStatistics.dylib)[27] : CAReportingClient.mm:264:-[CAReportingClient destroyReporterWithID:]: removing 1769979 from client and server
Sep 27 09:54:36 koukokyaku mediaserverd(AudioToolbox)[27] : 4174: { "action":"destroy_session", "session":{"ID":"0x1d3fe","PID":1571,"name":"coreduetd","type":"Fig"}, "details":null }
Sep 27 09:54:36 koukokyaku mediaserverd(libAudioStatistics.dylib)[27] : CAReportingClient.mm:264:-[CAReportingClient destroyReporterWithID:]: removing 1769978 from client and server
Sep 27 09:54:36 koukokyaku mediaserverd(AudioToolbox)[27] : 203: destroying 1769979
Sep 27 09:54:36 koukokyaku mediaserverd(AudioToolbox)[27] : 203: destroying 1769978
Sep 27 09:54:36 koukokyaku apsd[100] : peer(1571) received XPC_ERROR_CONNECTION_INVALID
Sep 27 09:54:36 koukokyaku bluetoothd[78] : Sending 'session detached' event for session "com.apple.coreduetd-1571-44919"
Sep 27 09:54:36 koukokyaku SpringBoard(FrontBoard)[55] : [FBProcessManager] Removing:
Sep 27 09:54:36 koukokyaku callservicesd(CallKit)[122] : Connection invalidated for call controller host connection:
Sep 27 09:54:36 koukokyaku locationd[63] : #Warning Location connection invalid!
Sep 27 09:54:36 koukokyaku locationd[63] : {"msg":"CLConnection::handleDisconnection", "event":"activity"}
Sep 27 09:54:36 koukokyaku locationd[63] : Client com.apple.locationd disconnected
Sep 27 09:54:36 koukokyaku locationd[63] : {"msg":"state transition", "event":"state_transition", "state":"DaemonClient", "id":"0x130986600", "property":"lifecycle", "old":"0x130986600", "new":"0x0"}
Sep 27 09:54:36 koukokyaku locationd[63] : #Warning Location connection invalid!
Sep 27 09:54:36 koukokyaku CommCenter[80] : #I Client (0x101a35f80) disconnected, new client list size 2
Sep 27 09:54:36 koukokyaku CommCenter[80] : #I CTServerConnection from pid 1571 has closed (conn=0x101fc0520)
Sep 27 09:54:36 koukokyaku locationd[63] : {"msg":"CLConnection::handleDisconnection", "event":"activity"}
Sep 27 09:54:36 koukokyaku locationd[63] : Client /System/Library/LocationBundles/TimeZone.bundle disconnected
Sep 27 09:54:36 koukokyaku mediaremoted[29] : Client invalidated.
Sep 27 09:54:36 koukokyaku mediaremoted[29] : Removing client
Sep 27 09:54:36 koukokyaku identityservicesd(IMFoundation)[49] : Message from client: 0x11fda2070
Sep 27 09:54:36 koukokyaku identityservicesd[49] : peer(1571) received XPC_ERROR_CONNECTION_INVALID
Sep 27 09:54:36 koukokyaku identityservicesd[49] : localObjectDiedNotification:
Sep 27 09:54:36 koukokyaku identityservicesd[49] : Removing listener ID: com.apple.coreduetd
Sep 27 09:54:36 koukokyaku identityservicesd[49] : Cleaning up session(s) for client ID: com.apple.coreduetd because it died
Sep 27 09:54:36 koukokyaku identityservicesd[49] : Device : utun cleaning up device connection for clientID: com.apple.coreduetd
Sep 27 09:54:36 koukokyaku UserEventAgent(MemoryMonitor)[23] : kernel jetsam snapshot note received
Sep 27 09:54:36 koukokyaku locationd[63] : {"msg":"state transition", "event":"state_transition", "state":"DaemonClient", "id":"0x1309cb000", "property":"lifecycle", "old":"0x1309cb000", "new":"0x0"}
Sep 27 09:54:36 koukokyaku ReportCrash(CrashReporterSupport)[254] : Report of type '298(298)' not saved because the limit of 25 logs has been reached
Sep 27 09:54:36 koukokyaku ReportCrash(CrashReporterSupport)[1577] : cr_update:
Sep 27 09:54:36 koukokyaku ReportCrash(CrashReporterSupport)[1577] : cr_update:
Sep 27 09:54:36 koukokyaku symptomsd(SymptomEvaluator)[155] : 0x104c3f7e0 for pid: 1571, client event: 0
Sep 27 09:54:36 koukokyaku symptomsd(SymptomEvaluator)[155] : 0x104c3f7e0 for pid: 1571, client event: 0
Sep 27 09:54:36 koukokyaku SpringBoard(BatteryCenter)[55] : Power sources changed
Sep 27 09:54:36 koukokyaku SpringBoard(BatteryCenter)[55] : Query power sources
Sep 27 09:54:36 koukokyaku SpringBoard(BatteryCenter)[55] : Got a list of 1 sources
Sep 27 09:54:36 koukokyaku SpringBoard(BatteryCenter)[55] : Found 1 power sources
Sep 27 09:54:36 koukokyaku SpringBoard(BatteryCenter)[55] : Found power source: {
"Battery Provides Time Remaining" = 1;
BatteryHealth = Good;
"Current Capacity" = 76;
"Is Charging" = 1;
"Is Finishing Charge" = 0;
"Is Present" = 1;
"Max Capacity" = 100;
Name = "InternalBattery-0";
"Power Source ID" = 2359395;
"Power Source State" = "AC Power";
"Raw External Connected" = 1;
"Show Charging UI" = 1;
"Time to Empty" = 0;
"Time to Full Charge" = 0;
"Transport Type" = Internal;
Type = InternalBattery;
}
Sep 27 09:54:36 koukokyaku SpringBoard(BatteryCenter)[55] : Found device:
Sep 27 09:54:36 koukokyaku powerd[36] : Posted notifications for loss of power source id 5063
Sep 27 09:54:36 koukokyaku symptomsd(SymptomEvaluator)[155] : 0x104c3f7e0 for pid: 1571, client event: 0
Sep 27 09:54:36 koukokyaku trustd[112] : could not disable pinning: not an internal release
Sep 27 09:54:36 koukokyaku ReportCrash[1577] : Formulating report for corpse[1571] coreduetd
Sep 27 09:54:36 koukokyaku ReportCrash(CrashReporterSupport)[1577] : report not saved because it is non-actionable (ie: extension hangs or internal-only)
Sep 27 09:54:38 koukokyaku syncdefaultsd(ApplePushService)[1565] : setting delegate (null)
Sep 27 09:54:38 koukokyaku syncdefaultsd(ApplePushService)[1565] : setEnabledTopics ignoredTopics opportunisticTopics sendToDaemon: YES
Sep 27 09:54:38 koukokyaku syncdefaultsd(ApplePushService)[1565] : _setEnableStatusNotifications NO sendToDaemon YES
Sep 27 09:54:38 koukokyaku syncdefaultsd(ApplePushService)[1565] : _shutdownFromDealloc
Sep 27 09:54:38 koukokyaku syncdefaultsd(ApplePushService)[1565] : _cancelConnection called
Sep 27 09:54:38 koukokyaku apsd[100] : peer(1565) received XPC_ERROR_CONNECTION_INVALID
Sep 27 09:54:38 koukokyaku syncdefaultsd(ApplePushService)[1565] : Connection Invalid for service com.apple.apsd
Sep 27 09:54:38 koukokyaku CommCenter(libATCommandStudioDynamic.dylib)[80] : QMI: Svc=0x03(NAS) Ind MsgId=0x555b Bin=[]
Sep 27 09:54:38 koukokyaku CommCenter(libATCommandStudioDynamic.dylib)[80] : QMI: Svc=0x03(NAS) Ind MsgId=0x5556 Bin=[]
Sep 27 09:54:38 koukokyaku CommCenter(libATCommandStudioDynamic.dylib)[80] : QMI: Svc=0x03(NAS) Ind MsgId=0x555b Bin=[]
Sep 27 09:54:38 koukokyaku CommCenter(libATCommandStudioDynamic.dylib)[80] : QMI: Svc=0x03(NAS) Ind MsgId=0x0024 Bin=[]
Sep 27 09:54:38 koukokyaku CommCenter(libATCommandStudioDynamic.dylib)[80] : QMI: Svc=0x03(NAS) Ind MsgId=0x0024 Bin=[]
Sep 27 09:54:38 koukokyaku CommCenter(libATCommandStudioDynamic.dylib)[80] : QMI: Svc=0x03(NAS) Ind MsgId=0x004e Bin=[]
Sep 27 09:54:38 koukokyaku CommCenter(libATCommandStudioDynamic.dylib)[80] : QMI: Svc=0x03(NAS) Ind MsgId=0x0061 Bin=[]

Posts: 2

Participants: 2

Read full topic

MSHook的原理是这样写的吗

$
0
0

@leaveMeAlone wrote:

void MyHookMessageEx(Class aClass ,SEL oldSEL ,IMP imp1 ,IMP* imp2)
{
Method oldMethod = class_getInstanceMethod(aClass, oldSEL);
*imp2 = method_getImplementation(oldMethod);
method_setImplementation(oldMethod, imp1);
}
为什么这样写的不起作用呢

Posts: 1

Participants: 1

Read full topic

Viewing all 5658 articles
Browse latest View live