-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The FLARE team is working in a new tool and needs the following libraries that are useful in general to develop reverse engineering related tools.
- Loading branch information
Showing
2 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
packages/libraries-extra.python3.vm/libraries-extra.python3.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,13 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd"> | ||
<metadata> | ||
<id>libraries-extra.python3.vm</id> | ||
<version>0.0.0.20241029</version> | ||
<description>Install extra Python useful libraries</description> | ||
<authors>Several, check in pypi.org for every of the libraries</authors> | ||
<dependencies> | ||
<dependency id="common.vm" version="0.0.0.20241029"/> | ||
<dependency id="libraries.python3.vm" /> | ||
</dependencies> | ||
</metadata> | ||
</package> |
9 changes: 9 additions & 0 deletions
9
packages/libraries-extra.python3.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,9 @@ | ||
$ErrorActionPreference = 'Stop' | ||
Import-Module vm.common -Force -DisableNameChecking | ||
|
||
try { | ||
$dependencies = "asciinet,bs4,flare_capa,langchain,langchain_google_genai,langchain_openai,networkx,python-statemachine,requests,tabulate,tenacity" | ||
VM-Pip-Install $dependencies | ||
} catch { | ||
VM-Write-Log-Exception $_ | ||
} |