Skip to content

Instantly share code, notes, and snippets.

@ooTYoo
ooTYoo / analysis.draft.md
Created March 27, 2021 03:07 — forked from MattPD/analysis.draft.md
Program Analysis Resources (WIP draft)
@ooTYoo
ooTYoo / WM_VK.py
Created August 17, 2019 07:09 — forked from trietptm/WM_VK.py
This IDAPython script adds two enum 'eWINDOWS_MESSAGES' and 'eVIRTUALKEYS'
# (C) 20013 Minh Triet Pham Tran
# Web: https://gist.github.com/trietptm
# This IDAPython script adds two enum 'eWINDOWS_MESSAGES' and 'eVIRTUALKEYS'
# Virtual-Key Codes (Windows): http://msdn.microsoft.com/en-us/library/windows/desktop/dd375731%28v=vs.85%29.aspx
# Window Notifications (Windows): http://msdn.microsoft.com/en-us/library/windows/desktop/ff468922(v=vs.85).aspx
# http://nah6.com/~itsme/cvs-xdadevtools/ida/idcscripts/wm.idc
import idaapi
id = idc.AddEnum(0, "eWINDOWS_MESSAGES", idaapi.hexflag());