I am new to malware analysis and I have following questions regarding dynamic malware analysis:

  1. How to solve multiple path problem in dynamic analysis(any tools available)?
  2. what else I need to consider during dynamic malware analysis (some good practices or things to take note).

Thank you.

link|improve this question

50% accept rate
feedback

2 Answers

  1. Make your snadbox (environment in which you can run a malware safely) eg. wine installed Linux with netcat listening ports(nc -l 9999 > port9999log.txt)
  2. Try Using Olleydbg and Olleydump
  3. Unpack simple UPX packed malwares..
link|improve this answer
feedback

To answer your 1 query, I would suggest to read the article "Exploring Multiple Execution Paths for Malware Analysis" by Kirda et al link. Be prepare to spend enough time in reading this paper.

Regarding 2nd question, I would say that it all depends on your granularity (level of monitoring). Based on this, you may choose to use debuggers or dynamic instrumentation frameworks to monitor your application. Beside this, you may also like to decide what you want to monitor e.g. calls to certain APIs, access to file system, self-modifying code patterns etc; basically, anything that may indicate a behavior which a malware likely to show off.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.