Posts

Showing posts with the label ransomhub

086. Detecting Ransomware Affiliate's Toolkit: IObit Unlocker

Image
Hello everyone! Let's keep looking inside a ransomware affiliate's toolkit. This time it's  IObit Unlocker . The adversary leverages this tool to unlock files and folders that are locked by other processes. For example, the tool is a part of RansomHub arsenal. As always, we can look at metadata or, if the adversary installed it, look for corresponding folders: event_type: "prorcesscreatewin" AND (proc_file_productname: "IObit Unlocker" OR proc_file_path: "IObit") You can look at the sample yourself and find more detection opportunities, of course! See you tomorrow!

013. It Can Remove Rootkits. And Your EDR!

Image
Hello everyone! Let's talk about about another very curious tool abused by threat actors. For example, it was used by LockBit and RansomHub ransomware affiliates. Guessed it already? Yes, I'm talking about TDSSKiller - a legitimate rootkit removal tool by Kaspersky. Despite the fact it was developed for malware removal, it can also be used by adversary to remove security software.  For example, here's how RansomHub affiliates used it to disable Trend Micro service according to this report : C:\Windows\tdsskiller.exe -dcsvc "TMBMServer" -accepteula By the way, according to VirusTotal, this tool isn't detected by many antivirus engines: Still, we have a few detection and hunting opportunities, for example: Command line parameters typical for the tool:  -dcsvc Metadata indicating the executable is TDSSKiller: "TDSSKiller", "TDSS rootkit removing tool" Do you know any other curious legitimate tools used to disable EDR? See you tomorrow!