Created
September 17, 2024 21:17
-
-
Save ProfAvery/cf9c8a7d217d25fb1edcdd6df35be90e to your computer and use it in GitHub Desktop.
CPSC 458 - Windows Sandbox configuration for Malware Analysis
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Edit to taste, e.g. <HostFolder>s and <MemoryInMB> --> | |
<Configuration> | |
<vGpu>Disable</vGpu> | |
<Networking>Disable</Networking> | |
<MappedFolders> | |
<MappedFolder> | |
<HostFolder>C:\Development\cpsc458\tools</HostFolder> | |
<SandboxFolder>C:\Users\WDAGUtilityAccount\Desktop\tools</SandboxFolder> | |
<ReadOnly>true</ReadOnly> | |
</MappedFolder> | |
<MappedFolder> | |
<HostFolder>C:\Development\cpsc458\airlock</HostFolder> | |
<SandboxFolder>C:\Users\WDAGUtilityAccount\Desktop\airlock</SandboxFolder> | |
<ReadOnly>false</ReadOnly> | |
</MappedFolder> | |
</MappedFolders> | |
<LogonCommand> | |
<Command>explorer.exe C:\Users\WDAGUtilityAccount\Desktop\tools</Command> | |
</LogonCommand> | |
<AudioInput>Disable</AudioInput> | |
<VideoInput>Disable</VideoInput> | |
<ProtectedClient>Enable</ProtectedClient> | |
<PrinterRedirection>Disable</PrinterRedirection> | |
<ClipboardRedirection>Disable</ClipboardRedirection> | |
<MemoryInMB>2048</MemoryInMB> | |
</Configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment