top of page

.png)
// aarch64-linux "email"
// if this assembles, we should talk about a security research role :)
.section .data
msg:
.ascii "let's talk about a security researcher role.\n"
.ascii "you clearly speak ARM64, so this email found the right target.\n"
.ascii "hit reply and let's connect.\n"
.byte 0
msg_end:
.section .text
.global _start
_start:
// x0 = fd (stdout)
mov x0, #1
// x1 = &msg
adr x1, msg
// x2 = len(msg)
sub x2, msg_end, msg
// write(1, msg, len)
mov x8, #64 // __NR_write on aarch64
svc #0
// exit(0)
mov x0, #0
mov x8, #93 // __NR_exit on aarch64
svc #0
bottom of page
