sandbox-cli 0.2.27__tar.gz → 0.2.29__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {sandbox_cli-0.2.27 → sandbox_cli-0.2.29}/.gitignore +1 -0
- {sandbox_cli-0.2.27 → sandbox_cli-0.2.29}/PKG-INFO +3 -4
- {sandbox_cli-0.2.27 → sandbox_cli-0.2.29}/README.md +2 -3
- {sandbox_cli-0.2.27 → sandbox_cli-0.2.29}/pyproject.toml +1 -1
- {sandbox_cli-0.2.27 → sandbox_cli-0.2.29}/sandbox_cli/cli/scanner/__init__.py +3 -0
- {sandbox_cli-0.2.27 → sandbox_cli-0.2.29}/sandbox_cli/console.py +0 -1
- {sandbox_cli-0.2.27 → sandbox_cli-0.2.29}/sandbox_cli/utils/compiler/ssh.py +1 -1
- {sandbox_cli-0.2.27 → sandbox_cli-0.2.29}/LICENSE +0 -0
- {sandbox_cli-0.2.27 → sandbox_cli-0.2.29}/NOTICE +0 -0
- {sandbox_cli-0.2.27 → sandbox_cli-0.2.29}/sandbox_cli/__main__.py +0 -0
- {sandbox_cli-0.2.27 → sandbox_cli-0.2.29}/sandbox_cli/cli/__init__.py +0 -0
- {sandbox_cli-0.2.27 → sandbox_cli-0.2.29}/sandbox_cli/cli/downloader.py +0 -0
- {sandbox_cli-0.2.27 → sandbox_cli-0.2.29}/sandbox_cli/cli/images.py +0 -0
- {sandbox_cli-0.2.27 → sandbox_cli-0.2.29}/sandbox_cli/cli/reporter.py +0 -0
- {sandbox_cli-0.2.27 → sandbox_cli-0.2.29}/sandbox_cli/cli/rules/__init__.py +0 -0
- {sandbox_cli-0.2.27 → sandbox_cli-0.2.29}/sandbox_cli/cli/unpack.py +0 -0
- {sandbox_cli-0.2.27 → sandbox_cli-0.2.29}/sandbox_cli/internal/__init__.py +0 -0
- {sandbox_cli-0.2.27 → sandbox_cli-0.2.29}/sandbox_cli/internal/config.py +0 -0
- {sandbox_cli-0.2.27 → sandbox_cli-0.2.29}/sandbox_cli/internal/helpers.py +0 -0
- {sandbox_cli-0.2.27 → sandbox_cli-0.2.29}/sandbox_cli/models/__init__.py +0 -0
- {sandbox_cli-0.2.27 → sandbox_cli-0.2.29}/sandbox_cli/models/detections.py +0 -0
- {sandbox_cli-0.2.27 → sandbox_cli-0.2.29}/sandbox_cli/utils/__init__.py +0 -0
- {sandbox_cli-0.2.27 → sandbox_cli-0.2.29}/sandbox_cli/utils/compiler/__init__.py +0 -0
- {sandbox_cli-0.2.27 → sandbox_cli-0.2.29}/sandbox_cli/utils/compiler/abc.py +0 -0
- {sandbox_cli-0.2.27 → sandbox_cli-0.2.29}/sandbox_cli/utils/compiler/docker.py +0 -0
- {sandbox_cli-0.2.27 → sandbox_cli-0.2.29}/sandbox_cli/utils/downloader/__init__.py +0 -0
- {sandbox_cli-0.2.27 → sandbox_cli-0.2.29}/sandbox_cli/utils/extractors.py +0 -0
- {sandbox_cli-0.2.27 → sandbox_cli-0.2.29}/sandbox_cli/utils/merge_dll_hooks.py +0 -0
- {sandbox_cli-0.2.27 → sandbox_cli-0.2.29}/sandbox_cli/utils/scanner/__init__.py +0 -0
- {sandbox_cli-0.2.27 → sandbox_cli-0.2.29}/sandbox_cli/utils/scanner/advanced.py +0 -0
- {sandbox_cli-0.2.27 → sandbox_cli-0.2.29}/sandbox_cli/utils/scanner/rescan.py +0 -0
- {sandbox_cli-0.2.27 → sandbox_cli-0.2.29}/sandbox_cli/utils/unpack/__init__.py +0 -0
- {sandbox_cli-0.2.27 → sandbox_cli-0.2.29}/sandbox_cli/utils/unpack/plugins/__init__.py +0 -0
- {sandbox_cli-0.2.27 → sandbox_cli-0.2.29}/sandbox_cli/utils/unpack/plugins/abc.py +0 -0
- {sandbox_cli-0.2.27 → sandbox_cli-0.2.29}/sandbox_cli/utils/unpack/plugins/correlation.py +0 -0
- {sandbox_cli-0.2.27 → sandbox_cli-0.2.29}/sandbox_cli/utils/unpack/plugins/sort_by_plugins.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sandbox-cli
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.29
|
|
4
4
|
Summary: Command line tool for interaction with sandboxes
|
|
5
5
|
Project-URL: Homepage, https://github.com/Security-Experts-Community/sandbox-cli
|
|
6
6
|
Project-URL: Documentation, https://security-experts-community.github.io/sandbox-cli
|
|
@@ -55,9 +55,8 @@ pip install sandbox-cli
|
|
|
55
55
|
|
|
56
56
|
NixOS:
|
|
57
57
|
|
|
58
|
-
```
|
|
59
|
-
|
|
60
|
-
TBA: ...
|
|
58
|
+
```sh
|
|
59
|
+
nix shell 'github:Security-Experts-Community/sandbox-cli'
|
|
61
60
|
```
|
|
62
61
|
|
|
63
62
|
### Config
|
|
@@ -153,7 +153,7 @@ class RemoteCompiler(AbstractCompiler):
|
|
|
153
153
|
|
|
154
154
|
rules_dir = rules_dir.expanduser().resolve()
|
|
155
155
|
if not rules_dir.is_dir():
|
|
156
|
-
console.error("Invalid rules directory: {rules_dir}")
|
|
156
|
+
console.error(f"Invalid rules directory: {rules_dir}")
|
|
157
157
|
sys.exit(1)
|
|
158
158
|
|
|
159
159
|
# always take new version of taxonomy
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{sandbox_cli-0.2.27 → sandbox_cli-0.2.29}/sandbox_cli/utils/unpack/plugins/sort_by_plugins.py
RENAMED
|
File without changes
|