-
Notifications
You must be signed in to change notification settings - Fork 276
/
main.m
216 lines (158 loc) · 6.41 KB
/
main.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
/*
yololib
Inject dylibs into existing Mach-O binaries
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2004 Sam Hocevar <[email protected]>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO.
*/
#include <stdio.h>
#include <string.h>
#include <mach-o/fat.h>
#include <mach-o/loader.h>
#import <Foundation/Foundation.h>
NSString* DYLIB_PATH;
#define DYLIB_CURRENT_VER 0x10000
#define DYLIB_COMPATIBILITY_VERSION 0x10000
#define ARMV7 9
#define ARMV6 6
unsigned long b_round(
unsigned long v,
unsigned long r)
{
r--;
v += r;
v &= ~(long)r;
return(v);
}
void inject_dylib(FILE* newFile, uint32_t top) {
fseek(newFile, top, SEEK_SET);
struct mach_header mach;
fread(&mach, sizeof(struct mach_header), 1, newFile);
NSData* data = [DYLIB_PATH dataUsingEncoding:NSUTF8StringEncoding];
uint32_t dylib_size = (uint32_t)[data length] + sizeof(struct dylib_command);
dylib_size += sizeof(long) - (dylib_size % sizeof(long)); // load commands like to be aligned by long
mach.ncmds += 1;
uint32_t sizeofcmds = mach.sizeofcmds;
mach.sizeofcmds += dylib_size;
fseek(newFile, -sizeof(struct mach_header), SEEK_CUR);
fwrite(&mach, sizeof(struct mach_header), 1, newFile);
NSLog(@"Patching mach_header..\n");
fseek(newFile, sizeofcmds, SEEK_CUR);
struct dylib_command dyld;
fread(&dyld, sizeof(struct dylib_command), 1, newFile);
NSLog(@"Attaching dylib..\n\n");
dyld.cmd = LC_LOAD_DYLIB;
dyld.cmdsize = dylib_size;
dyld.dylib.compatibility_version = DYLIB_COMPATIBILITY_VERSION;
dyld.dylib.current_version = DYLIB_CURRENT_VER;
dyld.dylib.timestamp = 2;
dyld.dylib.name.offset = sizeof(struct dylib_command);
fseek(newFile, -sizeof(struct dylib_command), SEEK_CUR);
fwrite(&dyld, sizeof(struct dylib_command), 1, newFile);
fwrite([data bytes], [data length], 1, newFile);
}
void inject_dylib_64(FILE* newFile, uint32_t top) {
@autoreleasepool {
fseek(newFile, top, SEEK_SET);
struct mach_header_64 mach;
fread(&mach, sizeof(struct mach_header_64), 1, newFile);
NSData* data = [DYLIB_PATH dataUsingEncoding:NSUTF8StringEncoding];
unsigned long dylib_size = sizeof(struct dylib_command) + b_round(strlen([DYLIB_PATH UTF8String]) + 1, 8);
//round(strlen([DYLIB_PATH UTF8String]) + 1, sizeof(long));
NSLog(@"dylib size wow %lu", dylib_size);
/*uint32_t dylib_size2 = (uint32_t)[data length] + sizeof(struct dylib_command);
dylib_size2 += sizeof(long) - (dylib_size % sizeof(long)); // load commands like to be aligned by long
NSLog(@"dylib size2 wow %u", dylib_size2);
NSLog(@"dylib size2 wow %u", CFSwapInt32(dylib_size2));*/
NSLog(@"mach.ncmds %u", mach.ncmds);
mach.ncmds += 0x1;
NSLog(@"mach.ncmds %u", mach.ncmds);
uint32_t sizeofcmds = mach.sizeofcmds;
mach.sizeofcmds += (dylib_size);
fseek(newFile, -sizeof(struct mach_header_64), SEEK_CUR);
fwrite(&mach, sizeof(struct mach_header_64), 1, newFile);
NSLog(@"Patching mach_header..\n");
fseek(newFile, sizeofcmds, SEEK_CUR);
struct dylib_command dyld;
fread(&dyld, sizeof(struct dylib_command), 1, newFile);
NSLog(@"Attaching dylib..\n\n");
dyld.cmd = LC_LOAD_DYLIB;
dyld.cmdsize = (uint32_t) dylib_size;
dyld.dylib.compatibility_version = DYLIB_COMPATIBILITY_VERSION;
dyld.dylib.current_version = DYLIB_CURRENT_VER;
dyld.dylib.timestamp = 2;
dyld.dylib.name.offset = sizeof(struct dylib_command);
fseek(newFile, -sizeof(struct dylib_command), SEEK_CUR);
fwrite(&dyld, sizeof(struct dylib_command), 1, newFile);
fwrite([data bytes], [data length], 1, newFile);
NSLog(@"size %lu", sizeof(struct dylib_command) + [data length]);
}
}
void inject_file(NSString* file, NSString* _dylib)
{
char buffer[4096], binary[4096], dylib[4096];
strlcpy(binary, [file UTF8String], sizeof(binary));
strlcpy(dylib, [DYLIB_PATH UTF8String], sizeof(dylib));
NSLog(@"dylib path %@", DYLIB_PATH);
FILE *binaryFile = fopen(binary, "r+");
printf("Reading binary: %s\n\n", binary);
fread(&buffer, sizeof(buffer), 1, binaryFile);
struct fat_header* fh = (struct fat_header*) (buffer);
switch (fh->magic) {
case FAT_CIGAM:
case FAT_MAGIC:
{
struct fat_arch* arch = (struct fat_arch*) &fh[1];
NSLog(@"FAT binary!\n");
int i;
for (i = 0; i < CFSwapInt32(fh->nfat_arch); i++) {
NSLog(@"Injecting to arch %i\n", CFSwapInt32(arch->cpusubtype));
if (CFSwapInt32(arch->cputype) == CPU_TYPE_ARM64) {
NSLog(@"64bit arch wow");
inject_dylib_64(binaryFile, CFSwapInt32(arch->offset));
}
else {
inject_dylib(binaryFile, CFSwapInt32(arch->offset));
}
arch++;
}
break;
}
case MH_CIGAM_64:
case MH_MAGIC_64:
{
NSLog(@"Thin 64bit binary!\n");
inject_dylib_64(binaryFile, 0);
break;
}
case MH_CIGAM:
case MH_MAGIC:
{
NSLog(@"Thin 32bit binary!\n");
inject_dylib_64(binaryFile, 0);
break;
}
default:
{
printf("Error: Unknown architecture detected");
exit(1);
}
}
NSLog(@"complete!");
fclose(binaryFile);
}
int main(int argc, const char * argv[])
{
NSString* binary = [NSString stringWithUTF8String:argv[1]];
NSString* dylib = [NSString stringWithUTF8String:argv[2]];
DYLIB_PATH = [NSString stringWithFormat:@"@executable_path/%@", dylib];
NSLog(@"dylib path %@", DYLIB_PATH);
inject_file(binary, DYLIB_PATH);
return 0;
}