Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions packages/binwalk.vm/binwalk.vm.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>binwalk.vm</id>
<version>3.1.1</version>
<authors>ReFirmLabs</authors>
<description>Firmware Analysis Tool</description>
<dependencies>
<dependency id="common.vm" version="0.0.0.20250509" />
</dependencies>
<tags>File Information</tags>
</metadata>
</package>
14 changes: 14 additions & 0 deletions packages/binwalk.vm/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
$ErrorActionPreference = 'Stop'
Import-Module vm.common -Force -DisableNameChecking

$toolName = 'binwalk'
$category = VM-Get-Category($MyInvocation.MyCommand.Definition)

# Temporary workaround until official repo publishes a release automatically, replace with official URL when available
# Note: The official binwalk repository does not currently provide a Windows binary.
# This script uses a pre-built binary from a third-party source.
# Replace with https://github.com/ReFirmLabs/binwalk when they provide a Windows binary.
$zipUrl = 'https://github.com/socketz/binwalk/releases/download/v3.1.1/binwalk-Windows-msvc-x86_64.zip'
$zipSha256 = '5418e2d88af47d89b7f5fe47449d47acdf1ded1aabdccc582aabbbca6d39da89'

VM-Install-From-Zip $toolName $category $zipUrl -zipSha256 $zipSha256 -consoleApp $true -innerFolder $false
7 changes: 7 additions & 0 deletions packages/binwalk.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 = 'binwalk'
$category = VM-Get-Category($MyInvocation.MyCommand.Definition)

VM-Uninstall $toolName $category
6 changes: 3 additions & 3 deletions packages/libraries.python3.vm/libraries.python3.vm.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>libraries.python3.vm</id>
<version>0.0.0.20250730</version>
<description>Python 3 libraries useful for common reverse engineering tasks.</description>
<version>0.0.0.20250908</version>
<description>Metapackage to install common Python libraries</description>
<authors>Several, check in pypi.org for every of the libraries</authors>
<dependencies>
<dependency id="common.vm" version="0.0.0.20250206" />
<dependency id="common.vm" version="0.0.0.20250729" />
<dependency id="vcbuildtools.vm" version="0.0.0.20250729" />
<dependency id="python3.vm" />
</dependencies>
Expand Down
1 change: 0 additions & 1 deletion packages/libraries.python3.vm/tools/modules.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
<module name="acefile"/>
<module name="rpyc"/>
<module name="art"/>
<module name="binwalk" url="https://github.com/ReFirmLabs/binwalk/archive/refs/tags/v2.3.3.zip"/>
<module name="capstone"/>
<module name="dissect"/>
<module name="dncil"/>
Expand Down
Loading