diff --git a/packages/ida.plugin.dereferencing.vm/ida.plugin.dereferencing.vm.nuspec b/packages/ida.plugin.dereferencing.vm/ida.plugin.dereferencing.vm.nuspec new file mode 100644 index 000000000..a9523c9e7 --- /dev/null +++ b/packages/ida.plugin.dereferencing.vm/ida.plugin.dereferencing.vm.nuspec @@ -0,0 +1,12 @@ + + + + ida.plugin.dereferencing.vm + 0.0.0.20240430 + danigargu + IDA Pro plugin that implements new registers and stack views. + + + + + diff --git a/packages/ida.plugin.dereferencing.vm/tools/chocolateyinstall.ps1 b/packages/ida.plugin.dereferencing.vm/tools/chocolateyinstall.ps1 new file mode 100644 index 000000000..3c99b5991 --- /dev/null +++ b/packages/ida.plugin.dereferencing.vm/tools/chocolateyinstall.ps1 @@ -0,0 +1,8 @@ +$ErrorActionPreference = 'Stop' +Import-Module vm.common -Force -DisableNameChecking + +$pluginName = 'dereferencing.py' +$pluginUrl = 'https://github.com/danigargu/deREferencing/archive/c5c606a9e70bff48214ce5286a37b15752fd8d1b.zip' +$pluginSha256 = '3ddec5c7569bc53883c5feaeb36d1145e2dde1c67491d14929af05938870dc1e' + +VM-Install-IDA-Plugin -pluginName $pluginName -pluginUrl $pluginUrl -pluginSha256 $pluginSha256 diff --git a/packages/ida.plugin.dereferencing.vm/tools/chocolateyuninstall.ps1 b/packages/ida.plugin.dereferencing.vm/tools/chocolateyuninstall.ps1 new file mode 100644 index 000000000..82ca4cab2 --- /dev/null +++ b/packages/ida.plugin.dereferencing.vm/tools/chocolateyuninstall.ps1 @@ -0,0 +1,6 @@ +$ErrorActionPreference = 'Continue' +Import-Module vm.common -Force -DisableNameChecking + +$pluginName = 'dereferencing.py' +VM-Uninstall-IDA-Plugin -pluginName $pluginName +