FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Inject-Hook/classloader.c at master · flycrane/Inject-Hook · GitHub
flycrane
/
Inject-Hook
Public
forked from
zhouat/Inject-Hook
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
Inject-Hook
/
classloader.c
Copy path
More file actions
More file actions
Latest commit
History
History
History
183 lines (154 loc) · 5.33 KB
Breadcrumbs
Inject-Hook
/
classloader.c
Copy path
File metadata and controls
183 lines (154 loc) · 5.33 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
#include
<android/log.h>
#include
<stdio.h>
#include
<jni.h>
#include
<dlfcn.h>
#include
<stdarg.h>
#include
<errno.h>
typedef
int
bool
;
#define
TRUE
1
#define
FALSE
0
#define
LOG_TAG
"hack"
#define
LOGI
(
fmt
,
args
...) __android_log_print(ANDROID_LOG_INFO, LOG_TAG, fmt, ##args)
#define
LOGD
(
fmt
,
args
...) __android_log_print(ANDROID_LOG_DEBUG, LOG_TAG, fmt, ##args)
#define
LOGE
(
fmt
,
args
...) _LOGE(fmt, ##args)
#define
_LOGE
(
fmt
,
args
...) \
do { \
__android_log_print(ANDROID_LOG_ERROR, LOG_TAG, "line:[%d]", __LINE__); \
__android_log_print(ANDROID_LOG_ERROR, LOG_TAG, fmt, ##args); \
} while(0)
#define
MAIN_CLASS
"com/zhouat/hellojni/MainActivity"
static
jclass
myFindClass
(
JNIEnv
*
env
,
const
char
*
className
);
static
bool
g_attach_flag
=
FALSE;
int
test
()
{
JNIEnv
*
env
;
JavaVM
*
jvm
;
void
*
handle
=
dlopen
(
"/system/lib/libandroid_runtime.so"
,
RTLD_NOW
);
if
(
handle
==
NULL
){
const
char
*
dlopen_error
=
dlerror
();
LOGE
(
"cannt load runtime.so:[%s]"
,
dlopen_error
);
return
-1
;
}
void
*
getJNIEnv
=
(
int
(
*
)(
void
))
dlsym
(
handle
,
"_ZN7android14AndroidRuntime9getJNIEnvEv"
);
if
(
getJNIEnv
==
NULL
){
const
char
*
dlsym_error
=
dlerror
();
LOGE
(
"cannt resolve symbol getJNIEnv:[%s]"
,
dlsym_error
);
return
-1
;
}
// get env
env
=
(
void
*
)((
int
(
*
)(
void
))
getJNIEnv
)();
if
(
env
==
NULL
){
LOGE
(
"get env failed"
);
return
-1
;
}
//through env -> get jvm
(
*
env
)
->
GetJavaVM
(
env
,
&
jvm
);
if
(
jvm
==
NULL
){
LOGE
(
"get jvm failed"
);
return
-1
;
}
int
status
=
(
*
jvm
)
->
GetEnv
(
jvm
, (
void
*
*
)
&
env
,
JNI_VERSION_1_6
);
if
(
status
!=
JNI_OK
) {
status
=
(
*
jvm
)
->
AttachCurrentThread
(
jvm
,
&
env
,
NULL
);
if
(
status
<
0
){
LOGE
(
"GetEnv failed"
);
return
-1
;
}
g_attach_flag
=
TRUE;
}
jclass
father
=
(
*
env
)
->
FindClass
(
env
,
MAIN_CLASS
);
if
(
father
==
NULL
){
LOGE
(
"Find Class failed by BootClassLoader\n"
);
if
((
*
env
)
->
ExceptionOccurred
(
env
)){
(
*
env
)
->
ExceptionDescribe
(
env
);
(
*
env
)
->
ExceptionClear
(
env
);
}
father
=
myFindClass
(
env
,
MAIN_CLASS
);
if
(
father
==
NULL
)
{
LOGE
(
"Find Class failed\n"
);
}
}
jmethodID
truthMethod
=
(
*
env
)
->
GetMethodID
(
env
,
father
,
"truth"
,
"()Ljava/lang/String;"
);
jmethodID
fakeMethod
=
(
*
env
)
->
GetMethodID
(
env
,
father
,
"fake"
,
"()Ljava/lang/String;"
);
// jmethodID 是一个ClassObject 的指针类型,
// ClassObject 对象的偏移地址32位处为insns字段。
*
(
int
*
)((
int
)
truthMethod
+
32
)
=
*
(
int
*
)((
int
)
fakeMethod
+
32
);
if
(
g_attach_flag
){
(
*
jvm
)
->
DetachCurrentThread
(
jvm
);
g_attach_flag
=
FALSE;
}
int
result
=
JNI_OK
;
return
( (
result
!=
JNI_OK
) ?
result
:
JNI_VERSION_1_6
);
}
static
jclass
myFindClass
(
JNIEnv
*
env
,
const
char
*
className
){
jclass
AppClassLoader
=
(
*
env
)
->
FindClass
(
env
,
"android/app/ApplicationLoaders"
);
if
(
AppClassLoader
==
NULL
){
LOGE
(
"Exception, no class: [ApplicationLoaders]"
);
return
NULL
;
}
jfieldID
AppFieldLoader
=
(
*
env
)
->
GetStaticFieldID
(
env
,
AppClassLoader
,
"gApplicationLoaders"
,
"Landroid/app/ApplicationLoaders;"
);
if
(
AppFieldLoader
==
NULL
){
LOGE
(
"Exception, no static failed:[gApplicationLoaders]"
);
return
NULL
;
}
jobject
AppObjLoader
=
(
*
env
)
->
GetStaticObjectField
(
env
,
AppClassLoader
,
AppFieldLoader
);
if
(
AppObjLoader
==
NULL
){
LOGE
(
"Exception, [GetStaticObjectField] failed"
);
return
NULL
;
}
jfieldID
mLoaders
=
(
*
env
)
->
GetFieldID
(
env
,
AppClassLoader
,
"mLoaders"
,
"Ljava/util/Map;"
);
if
(
mLoaders
==
NULL
){
LOGE
(
"Exception, [GetFieldID] mLoaders failed"
);
return
NULL
;
}
jobject
ObjLoaders
=
(
*
env
)
->
GetObjectField
(
env
,
AppObjLoader
,
mLoaders
);
if
(
ObjLoaders
==
NULL
){
LOGE
(
"Exception, [GetObjectField] failed"
);
return
NULL
;
}
jclass
HashMapClass
=
(
*
env
)
->
GetObjectClass
(
env
,
ObjLoaders
);
if
(
HashMapClass
==
NULL
){
LOGE
(
"Exception, [GetObjectClass] failed"
);
return
NULL
;
}
jmethodID
methodValues
=
(
*
env
)
->
GetMethodID
(
env
,
HashMapClass
,
"values"
,
"()Ljava/util/Collection;"
);
if
(
methodValues
==
NULL
){
LOGE
(
"Exception, [GetMethodID] failed"
);
return
NULL
;
}
jobject
values
=
(
*
env
)
->
CallObjectMethod
(
env
,
ObjLoaders
,
methodValues
);
if
(
values
==
NULL
){
LOGE
(
"Exception, [CallObjectMethod] failed"
);
return
NULL
;
}
jclass
clazzValues
=
(
*
env
)
->
GetObjectClass
(
env
,
values
);
if
(
clazzValues
==
NULL
){
LOGE
(
"Exception, [GetObjectClass] failed"
);
return
NULL
;
}
jmethodID
methodToArray
=
(
*
env
)
->
GetMethodID
(
env
,
clazzValues
,
"toArray"
,
"()[Ljava/lang/Object;"
);
if
(
methodToArray
==
NULL
){
LOGE
(
"Exception, [GetMethodID failed"
);
return
NULL
;
}
jobjectArray
classLoaders
=
(
jobjectArray
)(
*
env
)
->
CallObjectMethod
(
env
,
values
,
methodToArray
);
if
(
classLoaders
==
NULL
){
LOGE
(
"Exception, [CallObjectMethod] failed"
);
return
NULL
;
}
int
length
=
(
*
env
)
->
GetArrayLength
(
env
,
classLoaders
);
int
i
;
for
(
i
=
0
;
i
<
length
;
++
i
) {
jobject
t_loader
=
(
*
env
)
->
GetObjectArrayElement
(
env
,
classLoaders
,
i
);
jclass
t_class
=
(
*
env
)
->
GetObjectClass
(
env
,
t_loader
);
jmethodID
t_method
=
(
*
env
)
->
GetMethodID
(
env
,
t_class
,
"loadClass"
,
"(Ljava/lang/String;)Ljava/lang/Class;"
);
jstring
param
=
(
*
env
)
->
NewStringUTF
(
env
,
className
);
jclass
ret_class
=
(
jclass
) (
*
env
)
->
CallObjectMethod
(
env
,
t_loader
,
t_method
,
param
);
if
(
ret_class
==
NULL
) {
continue
;
}
return
ret_class
;
}
return
NULL
;
}
Back
|
FazBrowse Home
|
New Git URL