Reverse Engineering

Wsb-Detect – Detect If You Are Running In Windows Sandbox

Wsb-Detect -  Tool To Detect If You Are Running In Windows Sandbox ("WSB")

 

wsb-detect enables you to detect if you are running in Windows Sandbox (“WSB”). The sandbox is used by Windows Defender for dynamic analysis, and commonly manually by security analysts and alike. At the tail end of 2019, Microsoft introduced a new feature named Windows Sandbox (WSB for short). The techniques used to fingerprint WSB are outlined below, in the techniques section. Feel free to submit a pull request if you have any fingerprinting ideas. I’ve been messing around with it now and then, I will have more on Windows Sandbox coming soon.

 

Windows Sandbox allows you to quickly, within 15s, create a disposable Hyper-V based Virtual Machine with all of the qualities a familiar VM would have such as clipboard sharing, mapping directories etc. The sandbox is also the underlay for Microsoft Defender Application Guard (WDAG), for dynamic analysis on Hyper-V enabled hosts and can be enabled on any Windows 10 Pro or Enterprise machine. It’s not particularly interesting, but nonetheless could prove useful in implant development. Thank you to my friend Jonas L for guidance when I was exploring the sandbox internals (more to come on this).

Usage

The detect.h header exports all of the functions which can be combined to detect if

#include <stdio.h>
#include "detect.h"
int main(int argc, char** argv)
{
// example vmsmb & username check
if (wsb_detect_dev() || wsb_detect_username())
{
puts("We're in Windows Sandbox!");
return 0;
}
return 1;
}

Techniques

wsb_detect_time

The image for the sandbox seems to be built on Saturday, ‎December ‎7, ‎2019, ‏‎9:14:52 AM – this is around the time Windows Sandbox was released to the public. This check cross references the creation timestamp on the mountmgr driver.

wsb_detect_username

This method will check if the current username is WDAGUtilityUserAccount, the account used by default in the sandbox.

wsb_detect_suffix

This method will use GetAdaptersAddresses, walk over the list of adapters, and compare the DNS suffix to mshome.net – which is used by default in the sandbox.

wsb_detect_dev

Checks if the raw device .GLOBALROOTdevicevmsmb can be opened, which is used for communication with the host over SMB.

wsb_detect_cmd

On startup, search under the RunOnce key in HKEY_LOCAL_MACHINE for a command which sets the password never to expire.

wsb_detect_office

Checks for the OfficePackagesForWDAG in the current root drive, which seems to be used for Windows Defender Microsoft Office emulation.

wsb_detect_proc

Checks for CExecSvc.exe, which is the container execution service, handling a lot of the heavy lifting.

wsb_detect_genuine

A more generic method when it comes to sandbox detection, however from tests the Windows doesn’t seem to be verified as legitimate in the VMs

Trivia

If you wish to contact me quicker, feel free to contact me on Twitter or e-mail. Also, it’s possible on the host to detect if the sandbox is running, by checking if you can create a mutex named WindowsSandboxMutex. This limits the sandbox to one virtual-machine per host, however, you can release this mutex by simply duplicating the handle and calling ReleaseMutex – viola, you can have multiple instances.

 

 


About the author

Mazen Elzanaty

Add Comment

Click here to post a comment

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

%d bloggers like this: