luoqisheng / fakeapp

A tool for create iOS Fake App project.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

iOS fake app


A tool for creating "iOS Fake App" project. You can Debug & Profile any decrypted iOS app without any jailbreak devices.

Usage

Step 1. Create fakeapp

bin/fakeapp [APPNAME]

Step 2. Prepare Payload

cd [FakeAppDir]
cp [YourDecryptedApp].ipa ./
unzip [YourDecryptedApp].ipa

Or move your [AppName].app to [FakeAppDir]/Payload/.

Step 3. Setup Codesign

Now, open [AppName].xcodeproj and setup your codesign Identity & Provision in Build Settings. You need to setup both [AppName] and PDebug targets;

Step 4. Run & Debug

Just run and enjoy it. You can do any DEBUG actions like Breakpoints Step-in/out LLDB Threads Profile Simulate Location.

PDebug - Code inject

fakeapp already injected an Embed Dynamic Framework named PDebug.framework, You can add some code here and these code will be run with main app.

@implementation PDebugEntry

+(void)load
{
	// add your code here
	NSLog("PDebug injected.");
}

@end

License

The MIT License (MIT)

About

A tool for create iOS Fake App project.


Languages

Language:Shell 93.2%Language:C 5.1%Language:Objective-C 1.7%Language:Makefile 0.0%