Skip to content

Commit

Permalink
Add ida.plugin.dereferencing.vm using script
Browse files Browse the repository at this point in the history
Use the IDA plugin template in create_package_template.py to
generate `ida.plugin.dereferencing.vm` thank to the new ZIP support:

```
python3 scripts/utils/create_package_template.py --type IDA_PLUGIN --pkg_name "ida.plugin.dereferencing" --version "0.0.0.20240430" --authors "danigargu" --description "IDA Pro plugin that implements new registers and stack views." --tool_name "dereferencing.py" --target_url "https://github.com/danigargu/deREferencing/archive/c5c606a9e70bff48214ce5286a37b15752fd8d1b.zip" --target_hash "3ddec5c7569bc53883c5feaeb36d1145e2dde1c67491d14929af05938870dc1e"
```
  • Loading branch information
Ana06 committed Apr 30, 2024
1 parent 9a59830 commit acc0b76
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
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>ida.plugin.dereferencing.vm</id>
<version>0.0.0.20240430</version>
<authors>danigargu</authors>
<description>IDA Pro plugin that implements new registers and stack views.</description>
<dependencies>
<dependency id="common.vm" version="0.0.0.20240429" />
</dependencies>
</metadata>
</package>
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
$ErrorActionPreference = 'Continue'
Import-Module vm.common -Force -DisableNameChecking

$pluginName = 'dereferencing.py'
VM-Uninstall-IDA-Plugin -pluginName $pluginName

0 comments on commit acc0b76

Please sign in to comment.