Skip to content

Latest commit

 

History

History
12 lines (12 loc) · 338 Bytes

Generic_RE_Algorithm.md

File metadata and controls

12 lines (12 loc) · 338 Bytes
  1. Gather information
  • IAT
  • strings
  • dynamic analysis
  1. Identify function of interest
  2. Identify CALLs
  3. Identify algorithms and data structures
  4. Pseudo-code it!
  • if having trouble, draw the memory and CPU and map what happens at each instruction
  1. Rename function(s), argument(s), variable(s)
  2. Add comments
  3. GOTO 2