-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ida.plugin.dereferencing.vm using script
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
Showing
3 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
12 changes: 12 additions & 0 deletions
12
packages/ida.plugin.dereferencing.vm/ida.plugin.dereferencing.vm.nuspec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
8 changes: 8 additions & 0 deletions
8
packages/ida.plugin.dereferencing.vm/tools/chocolateyinstall.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
6 changes: 6 additions & 0 deletions
6
packages/ida.plugin.dereferencing.vm/tools/chocolateyuninstall.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|