iOS逆向:【注入原理、iOS逆向分析方法、重签名 二次打包】

2017-10-25
阅读 5 分钟
6.3k
新博客地址前言I、tweaktweak,它是各种破解补丁的统称iOS的tweak大致分为两种:第一种是在cydia上发布的,需要越狱才能安装,大部分是deb格式的安装包.iOS在越狱后,会默认安装一个名叫mobilesubstrate的动态库,它的作用是提供一个系统级的入侵管道,所有的tweak都可以依赖它来进行开发.目前主流的开发工具有theos和iO...

tweak 中常用的方法调用方法和 运行时API

2017-10-24
阅读 1 分钟
3.5k
利用运行时API 进行属性的获取和修改 修改属性 {代码...} 获取属性 {代码...} tweak 如何在其他类调用%new 的创建的类方法 {代码...} {代码...}

WVWebView

2017-10-23
阅读 2 分钟
2k
前言 逆向分析WVWebView的重要突破口: 通过代码分析jsBridgeCallHistory,即js调用app的方法历史: {代码...} {代码...} @property(readonly, nonatomic) NSDictionary *jsBridgeCallHistory; 其中包含了调用历史,从这个地方入手,找到字典中的对象以及方法包括: MoonJSBridge.openWebView {代码...} MtopWVPlugin.se...

com.nablac0d3.SSLKillSwitch2_0.11.deb

2017-10-23
阅读 2 分钟
2.4k
Blackbox tool to disable SSL certificate validation - including certificate pinning - within iOS Apps

Stopping in Code

2017-10-23
阅读 3 分钟
2.8k
you’re going to learn all about breakpoints and how to create them using LLDB.

Hooking & Executing Code --hooking Swift methods

2017-10-23
阅读 7 分钟
5.5k
First off, Swift often uses classes or structs in typical development. This is a unique challenge because dlsym will only give you a C function. You’ll need to augment this function so the Swift method can reference self if you’re grabbing an instance method, or reference the class if you’re call...

Hooking & Executing Code with dlopen & dlsym -- C functions

2017-10-23
阅读 9 分钟
6k
This project is very simple. All it does is display a watermarked image in a UIImageView.