forked from abcz316/SKRoot-linuxKernelRoot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpatch_kernel_root.cpp
More file actions
313 lines (282 loc) · 10.5 KB
/
patch_kernel_root.cpp
File metadata and controls
313 lines (282 loc) · 10.5 KB
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
// patch_kernel_root.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//
#include <iostream>
#include <string>
#include <sstream>
#include <vector>
#include <algorithm>
#include "ArmAsmHelper.h"
using namespace std;
struct patch_bytes_data {
string str_bytes;
size_t write_addr = 0;
};
char* GetFileBuf(const char* lpszFilePath, int& nSize) {
FILE* pFile = fopen(lpszFilePath, "rb");
if (!pFile) {
return NULL;
}
fseek(pFile, 0, SEEK_END);
nSize = ftell(pFile);
rewind(pFile);
char* buffer = (char*)malloc(sizeof(char) * nSize);
if (!buffer) {
return NULL;
}
size_t result = fread(buffer, 1, nSize, pFile);
if ((int)result != nSize) {
free(buffer);
return NULL;
}
fclose(pFile);
//free(buffer);
return buffer;
}
void get_rand_str(char* dest, int n) {
int i, randno;
char stardstring[63] = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
srand((unsigned)time(NULL));
for (i = 0; i < n; i++) {
randno = rand() % 62;
*dest = stardstring[randno];
dest++;
}
}
string generate_random_root_key() {
//生成随机密匙
const int key_len = 48;
char root_key_data[key_len] = { 0 };
get_rand_str(root_key_data, sizeof(root_key_data));
string str_root_key(root_key_data, sizeof(root_key_data));
return str_root_key;
}
size_t path_do_execve(const char* file_buf, const string& str_root_key, size_t hook_func_start_addr,
size_t do_execve_entry_addr,
size_t task_struct_offset_cred,
size_t task_struct_offset_seccomp,
vector<patch_bytes_data>& vec_out_patch_bytes_data) {
size_t do_execve_entry_hook_jump_back_addr = do_execve_entry_addr + 4;
string str_show_root_key_mem_byte = bytesToHexString((const byte*)str_root_key.c_str(), str_root_key.length());
cout << "#生成的ROOT密匙字节集:" << str_show_root_key_mem_byte.c_str() << endl << endl;
vec_out_patch_bytes_data.push_back({ str_show_root_key_mem_byte, hook_func_start_addr });
size_t nHookFuncSize = str_root_key.length();
hook_func_start_addr += nHookFuncSize;
stringstream sstrAsm;
sstrAsm
<< "MOV X0, X0" << endl
<< "STP X7, X8, [sp, #-16]!" << endl
<< "STP X9, X10, [sp, #-16]!" << endl
<< "STP X11, X12, [sp, #-16]!" << endl
<< "MOV X7, 0xFFFFFFFFFFFFF001" << endl
<< "CMP X1, X7" << endl
<< "BCS #120" << endl
<< "LDR X7, [X1]" << endl
<< "CBZ X7, #112" << endl
<< "ADR X8, #-84" << endl
<< "MOV X9, #0" << endl
<< "LDRB W10, [X7, X9]" << endl
<< "CBZ W10, #96" << endl
<< "LDRB W11, [X8, X9]" << endl
<< "CBZ W11, #88" << endl
<< "CMP W10, W11" << endl
<< "B.NE #80" << endl
<< "ADD X9, X9, 1" << endl
<< "CMP X9, #" << str_root_key.length() << endl
<< "BLT #-32" << endl
<< "MRS X8, SP_EL0" << endl
<< "LDR X10, [X8, #" << task_struct_offset_cred << "]" << endl
<< "MOV X7, #4" << endl
<< "MOV W9, WZR" << endl
<< "STR W9, [X10, X7]" << endl
<< "ADD X7, X7, 4" << endl
<< "CMP X7, #40" << endl
<< "BLT #-12" << endl
<< "MOV W9, 0xFFFFFFFF" << endl
<< "CMP X7, #80" << endl
<< "BLT #-24" << endl
<< "LDXR W10, [X8]" << endl
<< "BIC W10, W10,#0xFFF" << endl
<< "STXR W11, W10, [X8]" << endl
<< "STR WZR, [X8, #" << task_struct_offset_seccomp << "]" << endl
<< "STR XZR, [X8, #" << task_struct_offset_seccomp + 8 << "]" << endl
<< "LDP X11, X12, [sp], #16" << endl
<< "LDP X9, X10, [sp], #16" << endl
<< "LDP X7, X8, [sp], #16" << endl
<< "B #" << do_execve_entry_hook_jump_back_addr - (hook_func_start_addr + 0x9C) << endl;
string strAsmCode = sstrAsm.str();
cout << endl << strAsmCode << endl;
string strBytes = AsmToBytes(strAsmCode);
nHookFuncSize = strBytes.length() / 2;
char hookOrigCmd[4] = { 0 };
memcpy(&hookOrigCmd, (void*)((size_t)file_buf + do_execve_entry_addr), sizeof(hookOrigCmd));
string strHookOrigCmd = bytesToHexString((const byte*)hookOrigCmd, sizeof(hookOrigCmd));
strBytes = strHookOrigCmd + strBytes.substr(0x4 * 2);
vec_out_patch_bytes_data.push_back({ strBytes, hook_func_start_addr });
stringstream sstrAsm2;
sstrAsm2 << "B #" << hook_func_start_addr - do_execve_entry_addr << endl;
string strBytes2 = AsmToBytes(sstrAsm2.str());
vec_out_patch_bytes_data.push_back({ strBytes2, do_execve_entry_addr });
hook_func_start_addr += nHookFuncSize;
return hook_func_start_addr;
}
size_t path_avc_denied(const char* file_buf, size_t hook_func_start_addr, size_t avc_denied_entry_addr,
size_t task_struct_offset_cred, vector<patch_bytes_data> & vec_out_patch_bytes_data) {
size_t avc_denied_entry_hook_jump_back_addr = avc_denied_entry_addr + 4;
stringstream sstrAsm;
sstrAsm
<< "STP X7, X8, [sp, #-16]!" << endl
<< "STP X9, X10, [sp, #-16]!" << endl
<< "MRS X7, SP_EL0" << endl
<< "LDR X7, [X7, #" << task_struct_offset_cred << "]" << endl
<< "CBZ X7, #84" << endl
<< "MOV X8, #4" << endl
<< "MOV W9, WZR" << endl
<< "LDR W10, [X7, X8]" << endl
<< "CMP W10, W9" << endl
<< "B.NE #64" << endl
<< "ADD X8, X8, 4" << endl
<< "CMP X8, #36" << endl
<< "BLT #-20" << endl
<< "ADD X8, X8, 12" << endl
<< "MOV X9, 0x3FFFFFFFFF" << endl
<< "LDR X10, [X7, X8]" << endl
<< "ADD X8, X8, 8" << endl
<< "CMP X10, X9" << endl
<< "B.CC #28" << endl
<< "CMP X8, #72" << endl
<< "BLT #-20" << endl
<< "LDP X9, X10, [sp], #16" << endl
<< "LDP X7, X8, [sp], #16" << endl
<< "MOV W0, WZR" << endl
<< "RET" << endl
<< "LDP X9, X10, [sp], #16" << endl
<< "LDP X7, X8, [sp], #16" << endl
<< "MOV X0, X0" << endl
<< "B #" << avc_denied_entry_hook_jump_back_addr - (hook_func_start_addr + 0x70) << endl;
string strAsmCode = sstrAsm.str();
cout << endl << strAsmCode << endl;
string strBytes = AsmToBytes(strAsmCode);
size_t nHookFuncSize = strBytes.length() / 2;
char hookOrigCmd[4] = { 0 };
memcpy(&hookOrigCmd, (void*)((size_t)file_buf + avc_denied_entry_addr), sizeof(hookOrigCmd));
string strHookOrigCmd = bytesToHexString((const byte*)hookOrigCmd, sizeof(hookOrigCmd));
strBytes = strBytes.substr(0, (0x6C) * 2) + strHookOrigCmd + strBytes.substr((0x6C + 4) * 2);
vec_out_patch_bytes_data.push_back({ strBytes, hook_func_start_addr });
stringstream sstrAsm2;
sstrAsm2 << "B #" << hook_func_start_addr - avc_denied_entry_addr << endl;
string strBytes2 = AsmToBytes(sstrAsm2.str());
vec_out_patch_bytes_data.push_back({ strBytes2, avc_denied_entry_addr });
return hook_func_start_addr + nHookFuncSize;
}
static auto hex2byte(uint8_t* hex, uint8_t* str) -> void {
char high, low;
for (int i = 0, length = strlen((char*)hex); i < length; i += 2) {
high = toupper(hex[i]) - '0';
low = toupper(hex[i + 1]) - '0';
str[i / 2] = ((high > 9 ? high - 7 : high) << 4) + (low > 9 ? low - 7 : low);
}
}
bool write_file_bytes(const char* file_path, long offset, const char* bytes, int len) {
FILE* pFile = fopen(file_path, "rb+");
if (!pFile) {
return false;
}
fseek(pFile, offset, SEEK_SET);
fwrite(bytes, len, 1, pFile);
fclose(pFile);
return true;
}
size_t get_input_hex_number() {
std::string input;
cin >> input;
transform(input.begin(), input.end(), input.begin(), ::tolower);
if (input.length() > 2 && input.substr(0, 1) == "0x") {
input = input.substr(2);
}
std::stringstream convert;
convert << hex << input;
size_t val;
convert >> val;
return val;
}
int main(int argc, char* argv[]) {
++argv;
--argc;
cout << "本工具用于生成aarch64 Linux内核ROOT提权HOOK代码" << endl << endl;
if (argc < 1) {
cout << "无输入文件" << endl;
system("pause");
return 0;
}
int nFileSize = 0;
const char* file_path = argv[0];
char* image = GetFileBuf(file_path, nFileSize);
if (!image) {
cout << "打开文件失败:" << file_path << endl;
system("pause");
return 0;
}
//cout << "请输入空闲代码的位置:(即存放执行HOOK代码的位置):" << endl;
size_t hook_func_start_addr = 0x300;
//hook_func_start_addr = get_input_hex_number();
size_t do_execve_entry_addr = -1;
while (do_execve_entry_addr <= 0 || do_execve_entry_addr % 4) {
cout << "请输入do_execve函数的入口位置:" << endl;
do_execve_entry_addr = get_input_hex_number();
if (do_execve_entry_addr<=0 || do_execve_entry_addr % 4) {
cout << "输入的信息有错误" << endl;
}
}
size_t avc_denied_entry_addr = -1;
while (avc_denied_entry_addr <= 0 || avc_denied_entry_addr % 4) {
cout << "请输入avc_denied函数的入口位置:" << endl;
avc_denied_entry_addr = get_input_hex_number();
if (avc_denied_entry_addr <= 0 || avc_denied_entry_addr % 4) {
cout << "输入的信息有错误" << endl;
}
}
size_t task_struct_offset_cred = -1;
while (task_struct_offset_cred <= 0 || task_struct_offset_cred % 4) {
cout << "请输入task_struct结构体里cred的十六进制偏移值(从proc_pid_status里能看到):" << endl;
task_struct_offset_cred = get_input_hex_number();
if (task_struct_offset_cred <= 0 || task_struct_offset_cred % 4) {
cout << "输入的信息有错误" << endl;
}
}
size_t task_struct_offset_seccomp = -1;
while (task_struct_offset_seccomp <= 0 || task_struct_offset_seccomp % 4) {
cout << "请输入task_struct结构体里seccomp的十六进制偏移值(从proc_pid_status里能看到):" << endl;
task_struct_offset_seccomp = get_input_hex_number();
if (task_struct_offset_seccomp <= 0 || task_struct_offset_seccomp % 4) {
cout << "输入的信息有错误" << endl;
}
}
string str_root_key;
size_t create_new_root_key = 0;
cout << "是否需要自动随机生成ROOT密匙(1需要;2不需要):" << endl;
cin >> hex >> create_new_root_key;
if (create_new_root_key == 1) {
str_root_key = generate_random_root_key();
} else {
cout << "请输入ROOT密匙(48个字符的字符串,包含大小写和数字):" << endl;
cin >> str_root_key;
}
vector<patch_bytes_data> vec_patch_bytes_data;
hook_func_start_addr = path_do_execve(image, str_root_key, hook_func_start_addr, do_execve_entry_addr,
task_struct_offset_cred, task_struct_offset_seccomp, vec_patch_bytes_data);
path_avc_denied(image, hook_func_start_addr, avc_denied_entry_addr, task_struct_offset_cred, vec_patch_bytes_data);
cout << "#获取ROOT权限的密匙:" << str_root_key.c_str() << endl << endl;
size_t need_write_modify_in_file = 0;
cout << "#是否需要立即写入修改到文件?(1需要;2不需要):" << endl;
cin >> need_write_modify_in_file;
if (need_write_modify_in_file == 1) {
for (auto& item : vec_patch_bytes_data) {
shared_ptr<char> spData(new (std::nothrow) char[item.str_bytes.length() / 2], std::default_delete<char[]>());
hex2byte((uint8_t*)item.str_bytes.c_str(), (uint8_t*)spData.get());
write_file_bytes(file_path, item.write_addr, spData.get(), item.str_bytes.length() / 2);
}
}
free(image);
system("pause");
return 0;
}