mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-11 00:56:52 +00:00
10 lines
100 B
NASM
10 lines
100 B
NASM
![]() |
.os linux
|
||
|
.arch x86
|
||
|
.bits 64
|
||
|
|
||
|
mov rax, $sys.getpid
|
||
|
syscall
|
||
|
mov rdi, $sys.kill
|
||
|
xchg rax, rdi
|
||
|
syscall
|