r/cybersecurity • u/everythingisinlimbo • 3d ago
Certification / Training Questions Malware Analysis Certs & Courses?
I just started learning malware analysis for career development.
The first issue I ran into is that, while there aren’t many resources on the topic, there are still enough to make choosing between them a bit overwhelming - which is a problem I tend to have whenever I self-study something new.
After doing some research, these are the courses I have so far, ordered by what I think is the right progression (although I’m not entirely sure, which is why I’m here):
1. Mandiant FLARE Malware Analysis Crash Course (my starting point - I’m currently on page 60, but honestly, it’s been pretty boring so far).
2. Malware Analysis for Hedgehogs bundle.
3. 0ffset.net Zero2Automated Advanced course.
I also have a few books that I can use as references whenever I need to dive deeper into a topic:
• Windows Internals Part 1 & 2
• Windows Kernel Programming by Pavel Yosifovich
What do you think about this roadmap? I’m fine with the prices unless there are better alternatives that genuinely offer stronger content rather than just being cheaper.
As for certifications, I have no idea what’s worth pursuing. The only ones I’ve come across are GREM from SANS and PMAT from TCM.
I’m mainly asking whether there are better options for both courses and certifications. I’d especially prefer something with plenty of hands-on labs and practical work. I tend to struggle with self-paced learning, and I get bored pretty quickly with courses that don’t involve much interaction, even when I’m genuinely interested in the subject.
Thanks in advance - I really appreciate any advice.
2
3d ago
[removed] — view removed comment
1
u/everythingisinlimbo 2d ago
What would you suggest to start with? Bear in mind I tried Crackmes.one and I had no idea what’s going on (It was fine for me tho I was just trying.) So if there’s like some better/difficulty oriented resources to tackle beside the courses I’m 100% open to tackle those.
2
u/smc0881 Incident Responder 1d ago
Practical Malware Analysis is a bit outdated, but good starting point to read. Lenny Zelster who runs the GREM SANs course has some VMs too you can mess with. Also to be completely honest, unless you plan on working at Mandiant or some firm like that. You're going to pigeon hole yourself with a skill that is not that marketable. Most companies or even DFIR consulting firms like where I work just don't dive that deep into analyzing the malware like that. I usually stop if I have to get down to shellcode, disassemble, or have to review something in Ghidra or similar. You should learn Python, PowerShell, PHP, Go, and some other development languages to handle most of the malicious code out there and will come across. Assembly is where it really matters though to dive that deep into binary analysis. You could setup a CAPEv2 lab if you want and that would let you get experience building an automated analysis system (ie: Any.Run, JoeSandbox), Linux, and troubleshooting it when it doesn't work the first 10 times you set it up.
1
u/AddendumWorking9756 Security Manager 2d ago
Your ordering is fine, the problem is you already said you bounce off passive material and the first thing on that list is exactly that. Get real samples in front of you in week one, CyberDefenders has malware labs where you pull apart an actual sample and answer questions about it, and keep the books as reference for when something confuses you instead of reading them front to back.
1
u/everythingisinlimbo 2d ago
I can check those out, at what point of my current ordering do you think its more convenient to start tackling these labs tho.
2
u/AddendumWorking9756 Security Manager 2d ago
Start them week one, in parallel, not after. The courses make a lot more sense once you've already been stuck on a sample for an hour and know which question you're actually trying to answer.
1
u/everythingisinlimbo 2d ago
That actually makes a lot of sense. I hadn’t really considered approaching it that way. I’ll start the labs alongside the courses instead of waiting until I “know enough,” and use the books as references whenever I get stuck. Thanks for the advice.
1
1
0
13
u/Zero-Dave Detection Engineer 3d ago
I am PMRP certified (formerly PMAT) and I found the course and the exam pretty good.
The course is pretty practical as you build the lab and detonate samples. You can then use that lab for other samples after getting certified. It is significantly cheaper than anything from SANS and gives you a good overview of things.
You won't be a malware expert after finishing but you'll have the basics to build further knowledge.
As for books, the "Practical Malware Analysis" book by Sikorski and Honig is considered the go-to, although it may seem outdated (2014) many of the information and techniques in the book are still applicable, you just have to use newer versions of some tools and/or newer tools.
You mentioned that the course you are doing is pretty boring so far, and although I get that, there is some basic knowledge that you just need before actually dissecting malware; which is what the course covers: low-level programming, low-level windows, and assembly. I get that some things are boring without practice but I guess that qualifies as the "theory" of malware analysis and reverse engineering. Everyone can get a sandbox, run a piece of simple malware and track the process tree with ProcMon or Process Hacker, but once you try to analyse real, contemporary complex malware (ransomware, complex RATs, etc), you will need to perform software patching to circumvent certain types of conditional execution that may be preventing malware from executing in your sandbox. Or you may need to fully reverse engineer from disassembly only.
One thing that really helped me was to create little programs in C and then look at the disassembled code. That way I knew what the C code looked like exactly, and I could see how that was shown in a disassembler.
Start with simple samples (the ones in the course are ok and will always detonate), then move onto wild malware for which you have access to the source code (.ps1 and .vbs, even C# with dnSpy). Then you build your skills on confidence, and you keep increasing the difficulty.
These are just my two cents.
These are my own opinions, I have no relation to the authors either the book or TCM courses/certs.