A Simple Ransomware Vaccine
We see ransomware delete all shadow copies using vssadmin
pretty often. What if we could just intercept that request and kill the invoking process? Let's try to create a simple vaccine.
We register a debugger for vssadmin.exe
which is our compiled raccine.exe
. Raccine is a binary, that first collects all PIDs of the parent processes and then tries to kill all parent processes. I've whitelisted explorer.exe
in order to avoid unwanted problems with the Windows desktop. I don't know if this was a good idea.
Avantages:
- The method is rather generic
- We don't have to replace a system file (
vssadmin.exe
), which could lead to integrity problems and could break our raccination on each patch day - The changes are easy to undo
- Should work on all Windows versions from Windows 2000 onwards
- No running executable or additional service required (agent-less)
Disadvantages / Blind Spots:
- The legitimate use of
vssadmin.exe
isn't possble anymore - It even kills the processes that tried to invoke
vssadmin.exe
, which could be a backup process - This won't catch methods in which the malicious process isn't one of the processes in the tree that has invoked
vssadmin.exe
(e.g. viawmic
orschtasks
)
In case that the Ransomware that your're currently handling uses a certain process name, e.g. taskdl.exe
, you could just change the .reg
patch to intercept calls to that name and let Raccine kill all parent processes of the invoking process tree.
You won't be able to run vssadmin.exe
on a raccinated machine anymore until your apply the uninstall patch raccine-reg-patch-uninstall.reg
. This could break various backup solutions that run vssadmin.exe
during their work.
If you have a solid security monitoring that logs all process executions, you could check your logs to see if vssadmin.exe
is frequently or sporadically used for legitimate purposes in which case you should refrain from using Raccine.
- Apply Registry Patch
raccine-reg-patch.reg
- Place
raccine.exe
from the release section in thePATH
, e.g. intoC:\Windows
Run raccine.exe
and watch the parent process tree die.
I'd like to extend Raccine but lack the C++ coding skills, especially o the Windows platform.
Since Raccine is registered as a debugger for vssadmin.exe
the actual command line that starts raccine.exe looks like
raccine.exe vssadmin.exe ... [params]
If we were able to process the command line options and apply filters to them, we could provide the following features:
- Only block the execution in cases in which the parameters contains
delete shadows
- Allow all other executions by passing the original parameters to a newly created process of
vssadmin.exe
(transparent pass-through)
We could provide a config file that contains white-listed parents for vssadmin.exe
. If such a parent is detected, it would also pass the parameters to a new process and skip killing the process tree.