From 80195c1f70ff69c2306308616153f74534e751f0 Mon Sep 17 00:00:00 2001 From: vm-packages Date: Mon, 5 Feb 2024 13:24:04 +0000 Subject: [PATCH] Add sclauncher64.vm Closes https://github.com/mandiant/VM-Packages/issues/893. --- packages/sclauncher64.vm/sclauncher64.vm.nuspec | 12 ++++++++++++ packages/sclauncher64.vm/tools/chocolateyinstall.ps1 | 10 ++++++++++ .../sclauncher64.vm/tools/chocolateyuninstall.ps1 | 7 +++++++ 3 files changed, 29 insertions(+) create mode 100644 packages/sclauncher64.vm/sclauncher64.vm.nuspec create mode 100644 packages/sclauncher64.vm/tools/chocolateyinstall.ps1 create mode 100644 packages/sclauncher64.vm/tools/chocolateyuninstall.ps1 diff --git a/packages/sclauncher64.vm/sclauncher64.vm.nuspec b/packages/sclauncher64.vm/sclauncher64.vm.nuspec new file mode 100644 index 000000000..402316fe7 --- /dev/null +++ b/packages/sclauncher64.vm/sclauncher64.vm.nuspec @@ -0,0 +1,12 @@ + + + + sclauncher64.vm + 0.0.3 + Josh Stroschein + A small program to load 64-bit shellcode and allow for execution or debugging. Can also output PE files from shellcode. + + + + + diff --git a/packages/sclauncher64.vm/tools/chocolateyinstall.ps1 b/packages/sclauncher64.vm/tools/chocolateyinstall.ps1 new file mode 100644 index 000000000..0b5c09817 --- /dev/null +++ b/packages/sclauncher64.vm/tools/chocolateyinstall.ps1 @@ -0,0 +1,10 @@ +$ErrorActionPreference = 'Stop' +Import-Module vm.common -Force -DisableNameChecking + +$toolName = 'SCLauncher64' +$category = 'Utilities' + +$exeUrl = 'https://github.com/jstrosch/sclauncher/releases/download/v0.0.3/sclauncher64.exe' +$exeSha256 = '0887c4b93ec9595f69a5d38596553d91a29cac4a299d68f3030127778c614da0' + +VM-Install-Single-Exe $toolName $category $exeUrl -exeSha256 $exeSha256 -consoleApp $true diff --git a/packages/sclauncher64.vm/tools/chocolateyuninstall.ps1 b/packages/sclauncher64.vm/tools/chocolateyuninstall.ps1 new file mode 100644 index 000000000..87e92c091 --- /dev/null +++ b/packages/sclauncher64.vm/tools/chocolateyuninstall.ps1 @@ -0,0 +1,7 @@ +$ErrorActionPreference = 'Continue' +Import-Module vm.common -Force -DisableNameChecking + +$toolName = 'SCLauncher64' +$category = 'Utilities' + +VM-Uninstall $toolName $category