Safely Extracting Archives
Today, as happens from time to time, I found myself with a RAR file whose provenance I strongly suspected. Archives are always suspicious, since you never know what lay dormant on the system that created them, but this one was particularly suspect. I didn’t want to use WinRAR, in case the extraction process was booby-trapped, so this was my thought process:
- I shouldn’t use WinRAR.
- Maybe I could use a different program.
- But who knows whether a different program will be able to avoid triggering any malicious code?
- I should try Windows Sandbox. (This was the point at which I looked up and started installing Windows Sandbox.)
- Hold on, I have VirtualBox. I could use a Linux virtual machine to extract it much more safely.
- Wait, don’t I use Docker all the time?
So that was how I ended up creating a new Docker Machine, er,
machine specifically for extracting archives, mounted my folders to it, and then, within that
VM, ran Alpine Linux in Docker with those same folders mounted there, and finally installed
and used unrar
to extract the files.
Speaking of Docker Machine, I’ve been using it since before I upgraded to Windows 10 a few years ago, as the native version wasn’t available for Windows 7. Now that I’m on 10, I am happy to report that I’m still using Machine because Docker for Windows requires Hyper-V, which has too high a performance cost associated with it and prevents you from using regular virtualization software like VirtualBox. I’ve heard that this is no longer the case, so maybe I’ll try it again at some point.