Skip to content

Commit b2efc00

Browse files
author
wutian
committed
Disable PT_DENY_ATTACH and sysctl debugger checking
1 parent 54a02d6 commit b2efc00

File tree

7 files changed

+508
-0
lines changed

7 files changed

+508
-0
lines changed

IPAPatch.xcodeproj/project.pbxproj

+34
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
objects = {
88

99
/* Begin PBXBuildFile section */
10+
C63AC1A51E838BB70094B1C5 /* fishhook.c in Sources */ = {isa = PBXBuildFile; fileRef = C63AC1A21E838BB70094B1C5 /* fishhook.c */; };
11+
C63AC1A61E838BB70094B1C5 /* fishhook.h in Headers */ = {isa = PBXBuildFile; fileRef = C63AC1A31E838BB70094B1C5 /* fishhook.h */; };
12+
C63AC1AA1E8392210094B1C5 /* IPAPatchBypassAntiDebugging.h in Headers */ = {isa = PBXBuildFile; fileRef = C63AC1A81E8392210094B1C5 /* IPAPatchBypassAntiDebugging.h */; };
13+
C63AC1AB1E8392210094B1C5 /* IPAPatchBypassAntiDebugging.m in Sources */ = {isa = PBXBuildFile; fileRef = C63AC1A91E8392210094B1C5 /* IPAPatchBypassAntiDebugging.m */; };
1014
C64288391E7BF9E900C0BBB0 /* ProjectConfigurationWarning.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C64288371E7BF9E900C0BBB0 /* ProjectConfigurationWarning.cpp */; };
1115
C6B263271E7BC9DF009B4DEA /* IPAPatchEntry.h in Headers */ = {isa = PBXBuildFile; fileRef = C6B263251E7BC9DF009B4DEA /* IPAPatchEntry.h */; };
1216
C6B263281E7BC9DF009B4DEA /* IPAPatchEntry.m in Sources */ = {isa = PBXBuildFile; fileRef = C6B263261E7BC9DF009B4DEA /* IPAPatchEntry.m */; };
@@ -25,6 +29,11 @@
2529
/* End PBXContainerItemProxy section */
2630

2731
/* Begin PBXFileReference section */
32+
C63AC1A21E838BB70094B1C5 /* fishhook.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = fishhook.c; sourceTree = "<group>"; };
33+
C63AC1A31E838BB70094B1C5 /* fishhook.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fishhook.h; sourceTree = "<group>"; };
34+
C63AC1A41E838BB70094B1C5 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
35+
C63AC1A81E8392210094B1C5 /* IPAPatchBypassAntiDebugging.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IPAPatchBypassAntiDebugging.h; sourceTree = "<group>"; };
36+
C63AC1A91E8392210094B1C5 /* IPAPatchBypassAntiDebugging.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IPAPatchBypassAntiDebugging.m; sourceTree = "<group>"; };
2837
C64288371E7BF9E900C0BBB0 /* ProjectConfigurationWarning.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ProjectConfigurationWarning.cpp; sourceTree = "<group>"; };
2938
C64288381E7BF9E900C0BBB0 /* ProjectConfigurationWarning.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = ProjectConfigurationWarning.hpp; sourceTree = "<group>"; };
3039
C6B263071E7BC97B009B4DEA /* IPAPatch.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IPAPatch.framework; sourceTree = BUILT_PRODUCTS_DIR; };
@@ -57,6 +66,24 @@
5766
/* End PBXFrameworksBuildPhase section */
5867

5968
/* Begin PBXGroup section */
69+
C63AC1A01E838B8E0094B1C5 /* Vendors */ = {
70+
isa = PBXGroup;
71+
children = (
72+
C63AC1A11E838BB70094B1C5 /* fishhook */,
73+
);
74+
path = Vendors;
75+
sourceTree = "<group>";
76+
};
77+
C63AC1A11E838BB70094B1C5 /* fishhook */ = {
78+
isa = PBXGroup;
79+
children = (
80+
C63AC1A31E838BB70094B1C5 /* fishhook.h */,
81+
C63AC1A21E838BB70094B1C5 /* fishhook.c */,
82+
C63AC1A41E838BB70094B1C5 /* LICENSE */,
83+
);
84+
path = fishhook;
85+
sourceTree = "<group>";
86+
};
6087
C6B262FD1E7BC97B009B4DEA = {
6188
isa = PBXGroup;
6289
children = (
@@ -79,9 +106,12 @@
79106
C6B263091E7BC97B009B4DEA /* IPAPatch */ = {
80107
isa = PBXGroup;
81108
children = (
109+
C63AC1A01E838B8E0094B1C5 /* Vendors */,
82110
C6B2630B1E7BC97B009B4DEA /* Info.plist */,
83111
C6B263251E7BC9DF009B4DEA /* IPAPatchEntry.h */,
84112
C6B263261E7BC9DF009B4DEA /* IPAPatchEntry.m */,
113+
C63AC1A81E8392210094B1C5 /* IPAPatchBypassAntiDebugging.h */,
114+
C63AC1A91E8392210094B1C5 /* IPAPatchBypassAntiDebugging.m */,
85115
);
86116
path = IPAPatch;
87117
sourceTree = "<group>";
@@ -123,6 +153,8 @@
123153
buildActionMask = 2147483647;
124154
files = (
125155
C6B263271E7BC9DF009B4DEA /* IPAPatchEntry.h in Headers */,
156+
C63AC1A61E838BB70094B1C5 /* fishhook.h in Headers */,
157+
C63AC1AA1E8392210094B1C5 /* IPAPatchBypassAntiDebugging.h in Headers */,
126158
);
127159
runOnlyForDeploymentPostprocessing = 0;
128160
};
@@ -244,7 +276,9 @@
244276
isa = PBXSourcesBuildPhase;
245277
buildActionMask = 2147483647;
246278
files = (
279+
C63AC1AB1E8392210094B1C5 /* IPAPatchBypassAntiDebugging.m in Sources */,
247280
C6B263281E7BC9DF009B4DEA /* IPAPatchEntry.m in Sources */,
281+
C63AC1A51E838BB70094B1C5 /* fishhook.c in Sources */,
248282
);
249283
runOnlyForDeploymentPostprocessing = 0;
250284
};
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
//
2+
// IPAPatchBypassAntiDebugging.h
3+
// IPAPatch
4+
//
5+
// Created by wutian on 2017/3/23.
6+
// Copyright © 2017年 Weibo. All rights reserved.
7+
//
8+
9+
#import <Foundation/Foundation.h>
10+
11+
@interface IPAPatchBypassAntiDebugging : NSObject
12+
13+
@end
+127
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,127 @@
1+
//
2+
// IPAPatchBypassAntiDebugging.m
3+
// IPAPatch
4+
//
5+
// Created by wutian on 2017/3/23.
6+
// Copyright © 2017年 Weibo. All rights reserved.
7+
//
8+
9+
#import "IPAPatchBypassAntiDebugging.h"
10+
#import "fishhook.h"
11+
#import <dlfcn.h>
12+
#import <sys/sysctl.h>
13+
14+
#define TESTS_BYPASS 0
15+
16+
// Sources:
17+
// https://www.coredump.gr/articles/ios-anti-debugging-protections-part-1/
18+
// https://www.coredump.gr/articles/ios-anti-debugging-protections-part-2/
19+
// https://www.theiphonewiki.com/wiki/Bugging_Debuggers
20+
21+
// Bypassing PT_DENY_ATTACH technique
22+
23+
static void * (*original_dlsym)(void *, const char *);
24+
25+
int fake_ptrace(int _request, pid_t _pid, caddr_t _addr, int _data)
26+
{
27+
return 0;
28+
}
29+
30+
void * hooked_dlsym(void * __handle, const char * __symbol)
31+
{
32+
if (strcmp(__symbol, "ptrace") == 0) {
33+
return &fake_ptrace;
34+
}
35+
36+
return original_dlsym(__handle, __symbol);
37+
}
38+
39+
static void disable_pt_deny_attach()
40+
{
41+
original_dlsym = dlsym(RTLD_DEFAULT, "dlsym");
42+
rebind_symbols((struct rebinding[1]){{"dlsym", hooked_dlsym}}, 1);
43+
}
44+
45+
// Bypassing sysctl debugger checking technique
46+
47+
static int (*original_sysctl)(int *, u_int, void *, size_t *, void *, size_t);
48+
49+
typedef struct kinfo_proc ipa_kinfo_proc;
50+
51+
int hooked_sysctl(int * arg0, u_int arg1, void * arg2, size_t * arg3, void * arg4, size_t arg5)
52+
{
53+
bool modify_needed = arg1 == 4 && arg0[0] == CTL_KERN && arg0[1] == KERN_PROC && arg0[2] == KERN_PROC_PID && arg2 && arg3 && (*arg3 >= sizeof(struct kinfo_proc));
54+
55+
int ret = original_sysctl(arg0, arg1, arg2, arg3, arg4, arg5);
56+
57+
if (modify_needed) {
58+
ipa_kinfo_proc * pointer = arg2;
59+
ipa_kinfo_proc info = *pointer;
60+
info.kp_proc.p_flag = 0;
61+
*pointer = info;
62+
}
63+
64+
return ret;
65+
}
66+
67+
static void disable_sysctl_debugger_checking()
68+
{
69+
original_sysctl = dlsym(RTLD_DEFAULT, "sysctl");
70+
rebind_symbols((struct rebinding[1]){{"sysctl", hooked_sysctl}}, 1);
71+
}
72+
73+
#if TESTS_BYPASS
74+
// Tests
75+
static void test_aniti_debugger();
76+
#endif
77+
78+
@implementation IPAPatchBypassAntiDebugging
79+
80+
+ (void)load
81+
{
82+
disable_pt_deny_attach();
83+
disable_sysctl_debugger_checking();
84+
85+
#if TESTS_BYPASS
86+
test_aniti_debugger();
87+
#endif
88+
}
89+
90+
@end
91+
92+
#if TESTS_BYPASS
93+
94+
typedef int (*ptrace_ptr_t)(int _request, pid_t _pid, caddr_t _addr, int _data);
95+
96+
#if !defined(PT_DENY_ATTACH)
97+
#define PT_DENY_ATTACH 31
98+
#endif
99+
100+
static void test_aniti_debugger()
101+
{
102+
void* handle = dlopen(0, RTLD_GLOBAL | RTLD_NOW);
103+
ptrace_ptr_t ptrace_ptr = dlsym(handle, "ptrace");
104+
ptrace_ptr(PT_DENY_ATTACH, 0, 0, 0);
105+
dlclose(handle);
106+
107+
int name[4];
108+
struct kinfo_proc info;
109+
size_t info_size = sizeof(info);
110+
111+
info.kp_proc.p_flag = 0;
112+
113+
name[0] = CTL_KERN;
114+
name[1] = KERN_PROC;
115+
name[2] = KERN_PROC_PID;
116+
name[3] = getpid();
117+
118+
if (sysctl(name, 4, &info, &info_size, NULL, 0) == -1) {
119+
perror("sysctl");
120+
exit(-1);
121+
}
122+
bool debugging = ((info.kp_proc.p_flag & P_TRACED) != 0);
123+
124+
NSCAssert(!debugging, @"Debug checking should be disabled");
125+
}
126+
127+
#endif // TESTS_BYPASS

IPAPatch/Vendors/fishhook/LICENSE

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// Copyright (c) 2013, Facebook, Inc.
2+
// All rights reserved.
3+
// Redistribution and use in source and binary forms, with or without
4+
// modification, are permitted provided that the following conditions are met:
5+
// * Redistributions of source code must retain the above copyright notice,
6+
// this list of conditions and the following disclaimer.
7+
// * Redistributions in binary form must reproduce the above copyright notice,
8+
// this list of conditions and the following disclaimer in the documentation
9+
// and/or other materials provided with the distribution.
10+
// * Neither the name Facebook nor the names of its contributors may be used to
11+
// endorse or promote products derived from this software without specific
12+
// prior written permission.
13+
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
14+
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15+
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
16+
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
17+
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18+
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
19+
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
20+
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
21+
// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
22+
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

0 commit comments

Comments
 (0)