Skip to content

Instantly share code, notes, and snippets.

@SilverBut
Last active April 29, 2018 13:29
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SilverBut/93250f147467443d6717c97085d3d872 to your computer and use it in GitHub Desktop.
Save SilverBut/93250f147467443d6717c97085d3d872 to your computer and use it in GitHub Desktop.
[IDAPython Snippets] Some useful functions can be used in IDAPython to do things quickly. #tags: reverse, IDA, IDAPython
# Used to do some memcpy-like jobs
def ip_memcpy(dst, src, n):
idautils.PutDataList(dst, idautils.GetDataList(src, n, 1), 1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment