diff --git a/packages/cryptotester.vm/cryptotester.vm.nuspec b/packages/cryptotester.vm/cryptotester.vm.nuspec new file mode 100644 index 000000000..700abd873 --- /dev/null +++ b/packages/cryptotester.vm/cryptotester.vm.nuspec @@ -0,0 +1,12 @@ + + + + cryptotester.vm + 1.7.0.20230907 + Michael Gillespie (@demonslay335) + Utility tool for performing cryptanalysis with a focus on ransomware cryptography + + + + + diff --git a/packages/cryptotester.vm/tools/chocolateyinstall.ps1 b/packages/cryptotester.vm/tools/chocolateyinstall.ps1 new file mode 100644 index 000000000..3accb0920 --- /dev/null +++ b/packages/cryptotester.vm/tools/chocolateyinstall.ps1 @@ -0,0 +1,10 @@ +$ErrorActionPreference = 'Stop' +Import-Module vm.common -Force -DisableNameChecking + +$toolName = 'CryptoTester' +$category = 'Utilities' + +$zipUrl = 'https://github.com/Demonslay335/CryptoTester/releases/download/v1.7.0.0/CryptoTester.zip' +$zipSha256 = 'f1f6fe584fe697e3ec414854600781ae1906e7d28d9f370662a144821694539c' + +VM-Install-From-Zip $toolName $category $zipUrl -zipSha256 $zipSha256 -consoleApp $false diff --git a/packages/cryptotester.vm/tools/chocolateyuninstall.ps1 b/packages/cryptotester.vm/tools/chocolateyuninstall.ps1 new file mode 100644 index 000000000..08b71ba66 --- /dev/null +++ b/packages/cryptotester.vm/tools/chocolateyuninstall.ps1 @@ -0,0 +1,7 @@ +$ErrorActionPreference = 'Continue' +Import-Module vm.common -Force -DisableNameChecking + +$toolName = 'CryptoTester' +$category = 'Utilities' + +VM-Uninstall $toolName $category