diff --git a/packages/blobrunner.vm/blobrunner.vm.nuspec b/packages/blobrunner.vm/blobrunner.vm.nuspec new file mode 100644 index 000000000..5873cc7b2 --- /dev/null +++ b/packages/blobrunner.vm/blobrunner.vm.nuspec @@ -0,0 +1,12 @@ + + + + blobrunner.vm + 0.0.5 + OALabs + BlobRunner is a simple tool to quickly debug shellcode extracted during malware analysis. + + + + + diff --git a/packages/blobrunner.vm/tools/chocolateyinstall.ps1 b/packages/blobrunner.vm/tools/chocolateyinstall.ps1 new file mode 100644 index 000000000..0fbc0d2db --- /dev/null +++ b/packages/blobrunner.vm/tools/chocolateyinstall.ps1 @@ -0,0 +1,10 @@ +$ErrorActionPreference = 'Stop' +Import-Module vm.common -Force -DisableNameChecking + +$toolName = 'blobrunner' +$category = 'Utilities' + +$zipUrl = 'https://github.com/OALabs/BlobRunner/releases/download/v0.0.5/blobrunner.zip' +$zipSha256 = '369ed39086e40fe9ae5404b52cafe0a9b747abb11f2d33d73e5a51097d0ae2a4' + +VM-Install-From-Zip $toolName $category $zipUrl -zipSha256 $zipSha256 -consoleApp $true -innerFolder $false diff --git a/packages/blobrunner.vm/tools/chocolateyuninstall.ps1 b/packages/blobrunner.vm/tools/chocolateyuninstall.ps1 new file mode 100644 index 000000000..86f67fbe3 --- /dev/null +++ b/packages/blobrunner.vm/tools/chocolateyuninstall.ps1 @@ -0,0 +1,7 @@ +$ErrorActionPreference = 'Continue' +Import-Module vm.common -Force -DisableNameChecking + +$toolName = 'blobrunner' +$category = 'Utilities' + +VM-Uninstall $toolName $category