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