Last active
April 29, 2018 13:29
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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