Skip to content

Commit

Permalink
Merge pull request #768 from naacbin/aleapp
Browse files Browse the repository at this point in the history
Add ALEAPP
  • Loading branch information
Ana06 authored Dec 13, 2023
2 parents 54b3ab9 + c9b732a commit 0720e78
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
12 changes: 12 additions & 0 deletions packages/aleapp.vm/aleapp.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>aleapp.vm</id>
<version>3.1.9</version>
<authors>Alexis Brignoni</authors>
<description>Android Logs Events And Protobuf Parser.</description>
<dependencies>
<dependency id="common.vm" />
</dependencies>
</metadata>
</package>
10 changes: 10 additions & 0 deletions packages/aleapp.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 = 'aleappGUI'
$category = 'Forensic'

$exeUrl = 'https://github.com/abrignoni/ALEAPP/releases/download/v3.1.9/aleappGUI.exe'
$exeSha256 = 'a5a516bfab416e78b951a8175347916c6c362325d6616c4029af164f420cf5a4'

VM-Install-Single-Exe $toolName -category $category -exeUrl $exeUrl -exeSha256 $exeSha256 -consoleApp $false
7 changes: 7 additions & 0 deletions packages/aleapp.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 = 'aleappGUI'
$category = 'Forensic'

VM-Uninstall $toolName $category

0 comments on commit 0720e78

Please sign in to comment.