mirror of https://github.com/pwndbg/pwndbg.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
432 B
NASM
40 lines
432 B
NASM
section .text
|
|
global _start
|
|
|
|
_start:
|
|
call function
|
|
mov rax, 2
|
|
mov rbx, 3
|
|
add rax, rbx
|
|
xor rax, rbx
|
|
nop
|
|
jmp exit
|
|
|
|
; make sure the entire function does not fit into the context disasm view
|
|
function:
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
ret
|
|
|
|
exit:
|
|
mov rax, 60
|
|
mov rdi, 0
|
|
syscall
|
|
|