Skip to content

Instantly share code, notes, and snippets.

@x0rz
Created April 14, 2016 13:56
Show Gist options
  • Star 77 You must be signed in to star a gist
  • Fork 14 You must be signed in to fork a gist
  • Save x0rz/e8b36fee33b87aa7e4e5dfd4c0cfc1a6 to your computer and use it in GitHub Desktop.
Save x0rz/e8b36fee33b87aa7e4e5dfd4c0cfc1a6 to your computer and use it in GitHub Desktop.
# Simulate fake processes of analysis sandbox/VM that some malware will try to evade
# This just spawn ping.exe with different names (wireshark.exe, vboxtray.exe, ...)
# It's just a PoC and it's ugly as f*ck but hey, if it works...
# Usage: .\fake_sandbox.ps1 -action {start,stop}
param([Parameter(Mandatory=$true)][string]$action)
$fakeProcesses = @("wireshark.exe", "vmacthlp.exe", "VBoxService.exe",
"VBoxTray.exe", "procmon.exe", "ollydbg.exe", "vmware-tray.exe",
"idag.exe", "ImmunityDebugger.exe")
if ($action -ceq "start") {
# We will store our renamed binaries into a temp folder
$tmpdir = [System.Guid]::NewGuid().ToString()
$binloc = Join-path $env:temp $tmpdir
# Creating temp folder
New-Item -Type Directory -Path $binloc
$oldpwd = $pwd
Set-Location $binloc
foreach ($proc in $fakeProcesses) {
# Copy ping.exe and rename binary to fake one
Copy-Item c:\windows\system32\ping.exe "$binloc\$proc"
# Start infinite ping process (localhost) - that's kind of ugly
Start-Process ".\$proc" -WindowStyle Hidden -ArgumentList "-t -4 127.0.0.1"
write-host "[+] Process $proc spawned"
}
Set-Location $oldpwd
}
elseif ($action -ceq "stop") {
foreach ($proc in $fakeProcesses) {
Stop-Process -processname "$proc".Split(".")[0]
write-host "[+] Killed $proc"
}
}
else {
write-host "Bad usage: need '-action start' or '-action stop' parameter"
}
@NuclearPhoenixx
Copy link

NuclearPhoenixx commented Sep 4, 2016

Hi, I created a GitHub Repo for this script. I added the suggestion by @ichttt and created an installer for autostart, etc.

Come round and make some improvements if you like 📦 : https://github.com/phoenix1747/fake-sandbox

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment