Skip to content

Commit

Permalink
Merge pull request #894 from mandiant/package-sclauncher64
Browse files Browse the repository at this point in the history
🤖 Add sclauncher64.vm
  • Loading branch information
Ana06 authored Feb 5, 2024
2 parents 14dea20 + 80195c1 commit 711c408
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
12 changes: 12 additions & 0 deletions packages/sclauncher64.vm/sclauncher64.vm.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>sclauncher64.vm</id>
<version>0.0.3</version>
<authors>Josh Stroschein</authors>
<description>A small program to load 64-bit shellcode and allow for execution or debugging. Can also output PE files from shellcode.</description>
<dependencies>
<dependency id="common.vm" />
</dependencies>
</metadata>
</package>
10 changes: 10 additions & 0 deletions packages/sclauncher64.vm/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -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
7 changes: 7 additions & 0 deletions packages/sclauncher64.vm/tools/chocolateyuninstall.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
$ErrorActionPreference = 'Continue'
Import-Module vm.common -Force -DisableNameChecking

$toolName = 'SCLauncher64'
$category = 'Utilities'

VM-Uninstall $toolName $category

0 comments on commit 711c408

Please sign in to comment.