Skip to content

Commit

Permalink
Add cryptotester.vm
Browse files Browse the repository at this point in the history
Closes #598.
  • Loading branch information
vm-packages committed Sep 7, 2023
1 parent ce6ce24 commit f7f90eb
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
12 changes: 12 additions & 0 deletions packages/cryptotester.vm/cryptotester.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>cryptotester.vm</id>
<version>1.7.0.20230907</version>
<authors>Michael Gillespie (@demonslay335)</authors>
<description>Utility tool for performing cryptanalysis with a focus on ransomware cryptography</description>
<dependencies>
<dependency id="common.vm" />
</dependencies>
</metadata>
</package>
10 changes: 10 additions & 0 deletions packages/cryptotester.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 = '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
7 changes: 7 additions & 0 deletions packages/cryptotester.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 = 'CryptoTester'
$category = 'Utilities'

VM-Uninstall $toolName $category

0 comments on commit f7f90eb

Please sign in to comment.