imk0tter

Untitled

Aug 4th, 2021 (edited)
357
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     global reserve_stack_x64
  2.     section .text    
  3. reserve_stack_x64:
  4.     pop rax
  5.     sub rax,8h
  6.     add rsp,8h
  7.     test rax, rax
  8.     jz  finished
  9.     push rax
  10.     jmp reserve_stack_x64
  11. finished:
  12.     ret
Add Comment
Please, Sign In to add comment