Skip to content

Commit

Permalink
Add pycdas.vm
Browse files Browse the repository at this point in the history
Add Python byte-code disassembler https://github.com/zrax/pycdc.
  • Loading branch information
Ana06 committed Jan 10, 2025
1 parent 1d80ce4 commit 90ff123
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
12 changes: 12 additions & 0 deletions packages/pycdas.vm/pycdas.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>pycdas.vm</id>
<version>0.0.0.20250110</version>
<authors>Michael Hansen, Darryl Pogue</authors>
<description>Python byte-code disassembler</description>
<dependencies>
<dependency id="common.vm" version="0.0.0.20240509" />
</dependencies>
</metadata>
</package>
10 changes: 10 additions & 0 deletions packages/pycdas.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 = 'pycdas'
$category = 'Python'

$exeUrl = 'https://github.com/extremecoders-re/decompyle-builds/releases/download/build-16-Oct-2024-5e1c403/pycdas.exe'
$exeSha256 = 'b4a2c51ba859282c12ef505419c8897606345e23a97c72612b1ffaf4c12ac72d'

VM-Install-Single-Exe $toolName $category $exeUrl -exeSha256 $exeSha256 -consoleApp $true -arguments "--help"
7 changes: 7 additions & 0 deletions packages/pycdas.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 = 'pycdas'
$category = 'Python'

VM-Uninstall $toolName $category

0 comments on commit 90ff123

Please sign in to comment.