mirror of
https://github.com/Dasharo/subhook.git
synced 2026-03-06 15:04:20 -08:00
25 lines
246 B
NASM
25 lines
246 B
NASM
bits 64
|
|
|
|
extern puts
|
|
global foo
|
|
|
|
section .data
|
|
|
|
message:
|
|
db 'foo() called', 0
|
|
|
|
section .text
|
|
|
|
foo:
|
|
nop
|
|
push rbp
|
|
mov rbp, rsp
|
|
lea rdi, [rel message]
|
|
%ifdef USE_PLT
|
|
call puts wrt ..plt
|
|
%else
|
|
call puts
|
|
%endif
|
|
pop rbp
|
|
ret
|