Advertisement
Guest User

Untitled

a guest
Sep 26th, 2018
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ReallocAppMemory:
  2.         mov    eax, 64
  3.         mov    ebx, 1
  4.         mov    ecx, [esp + 4]
  5.         int    64
  6.         ret    4
  7. ....................................................        
  8. ; Resize App Memory And Load Headers
  9.         mov    eax, IMAGE_BASE
  10.         add    eax, [SizeOfHeaders]
  11.         push   eax
  12.         call   ReallocAppMemory
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement