上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 21 下一页
摘要: PT_DENY_ATTACH[1]is an Apple-specific constant that can prevent debuggers (gdb, DTrace, etc.) from debugging your binary in kernel-level. Calling pt... 阅读全文
posted @ 2013-06-27 16:54 Proteas 阅读(662) 评论(0) 推荐(0) 编辑
摘要: 打算安装这个程序,但是听说这个软件在 Mac 上有问题,所以先记录下卸载方法。方法一:双击 pkg 文件后,当看到安装器界面时:按 Command + i 打开安装包的信息窗口:展开后可以看到将要安装的文件列表,然后手动删除。方法二:可以使用 pkgutil 命令:1、执行:pkgutil --pk... 阅读全文
posted @ 2013-06-20 13:34 Proteas 阅读(912) 评论(0) 推荐(0) 编辑
摘要: 在 clang 的扩展下,可以重载 C 函数,例如重载 sin 函数: float __attribute__((overloadable)) sin(float x) { return sinf(x); }double __attribute__((overloadable)) ... 阅读全文
posted @ 2013-06-20 12:10 Proteas 阅读(333) 评论(0) 推荐(0) 编辑
摘要: mov: movesub: subtractcmp: comparecmpls: ls--->lower or same, le--->less or equal, hi--->higherldr: load registerlsl: logical shift leftstr: store reg... 阅读全文
posted @ 2013-06-19 15:50 Proteas 阅读(3650) 评论(0) 推荐(0) 编辑
摘要: iOS Assembly Tutorial: Understanding ARM Do you speak assembly? When you write Objective-C code, it eventually turns into machine code – the raw ... 阅读全文
posted @ 2013-06-16 22:16 Proteas 阅读(510) 评论(0) 推荐(0) 编辑
摘要: 1、Completion Dictionary:代码完成 | http://www.obdev.at/products/completion-dictionary/index.html2、Code Pilot :| http://codepilot.cc/3、Accessorizer:| http:... 阅读全文
posted @ 2013-06-08 14:21 Proteas 阅读(591) 评论(0) 推荐(0) 编辑
摘要: 1、下载安装程序:http://python.org/download/,Python 3.3.2 Mac OS X 64-bit/32-bit x86-64/i386 Installer2、安装3、以超级用户执行如下脚本: #!/bin/bash rm -R /System/Library/F... 阅读全文
posted @ 2013-05-30 16:10 Proteas 阅读(514) 评论(0) 推荐(0) 编辑
摘要: 1、lipo 命令可以查看、提取、合并不同指令架构的静态库。2、nm 命令可以查看静态库中归档了哪些 object(.o)文件,并显示 .o 文件中的符号。3、 阅读全文
posted @ 2013-05-19 11:44 Proteas 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 爱奇艺的 iPad 版客户端,广告时间越来越长了,现在 30s... ...,所以现在猜测下他的客户端。现象: 1、有时客户端没有广告。 2、有时客户端的广告是 15s。正向分析: 1、广告一般都是轮播的。 2、广告的入口地址应该与正常的视频入口地址分开。 3、客户端应该首先判断有没有广告。如果有,再执行相关播放策略。 4、广告播放的控制,是在正常播放视频的开始部分。打算进行的逆向分析... 阅读全文
posted @ 2013-05-12 16:43 Proteas 阅读(283) 评论(0) 推荐(0) 编辑
摘要: 效果图如下: 窗口的配置 从 View 菜单中打开各个子窗口,然后拖动、组合到如上的样子。 主题颜色配置 颜色的配置比较麻烦, 因为 WinDbg 的颜色配置,在本地没有配置文件, 在注册表中的配置信息是用十六进制编码的字符串,不便于超找与编辑。 只能手工修改(或者导入注册表,但是导入注册表容易出... 阅读全文
posted @ 2013-05-11 16:09 Proteas 阅读(1006) 评论(1) 推荐(1) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 21 下一页