0

I am looking for a resource that helps learn malware analysis. I know about the practical malware analysis book but i am looking for something other than a book. For example a Site or video tutorials.

2 Answers2

5

The Practical Malware Analysis book itself comes with hands on exercises for each chapter with solutions in the back of the book. It's a great resource that you should probably invest in.

If you're not familiar with reverse engineering topics then I would suggest learning x86 Assembly, Windows Programming, and Windows Internals concepts. Pick a debugger a learn it like the back of your hand:

Pick up a free version of IDA Pro. There are various tutorials on IDA's site.

RoraΖ
  • 12,347
  • 4
  • 51
  • 83
-3

Learn reverse engineering, assembly language x86 and x64 preferably. If you don't have the time and patience to start learning those then you don't have the time and patience required to analyze malware on the lowest level. Programming is your friend so is networking and the security aspect of it especially. Once you get your feet wet in those subjects then start analyzing old malware and by old I mean OLD, progress your way to modern malware and more advanced exploitation techniques, but don't start trying to analyze bleeding edge 0day malware because you'll end up being lost. For the best resources I would suggest getting a book, do a search for reverse engineering tutorials and assembly tutorials, start to follow them and eventually download a book for more advanced topics in those specific subjects.

mcgyver5
  • 6,844
  • 2
  • 26
  • 46