sandbox-cli 0.2.30__tar.gz → 0.2.31__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.30 → sandbox_cli-0.2.31}/PKG-INFO +3 -3
- {sandbox_cli-0.2.30 → sandbox_cli-0.2.31}/pyproject.toml +3 -3
- {sandbox_cli-0.2.30 → sandbox_cli-0.2.31}/sandbox_cli/cli/scanner/__init__.py +4 -4
- {sandbox_cli-0.2.30 → sandbox_cli-0.2.31}/sandbox_cli/utils/scanner/advanced.py +4 -4
- {sandbox_cli-0.2.30 → sandbox_cli-0.2.31}/.gitignore +0 -0
- {sandbox_cli-0.2.30 → sandbox_cli-0.2.31}/LICENSE +0 -0
- {sandbox_cli-0.2.30 → sandbox_cli-0.2.31}/NOTICE +0 -0
- {sandbox_cli-0.2.30 → sandbox_cli-0.2.31}/README.md +0 -0
- {sandbox_cli-0.2.30 → sandbox_cli-0.2.31}/sandbox_cli/__main__.py +0 -0
- {sandbox_cli-0.2.30 → sandbox_cli-0.2.31}/sandbox_cli/cli/__init__.py +0 -0
- {sandbox_cli-0.2.30 → sandbox_cli-0.2.31}/sandbox_cli/cli/downloader.py +0 -0
- {sandbox_cli-0.2.30 → sandbox_cli-0.2.31}/sandbox_cli/cli/images.py +0 -0
- {sandbox_cli-0.2.30 → sandbox_cli-0.2.31}/sandbox_cli/cli/reporter.py +0 -0
- {sandbox_cli-0.2.30 → sandbox_cli-0.2.31}/sandbox_cli/cli/rules/__init__.py +0 -0
- {sandbox_cli-0.2.30 → sandbox_cli-0.2.31}/sandbox_cli/cli/unpack.py +0 -0
- {sandbox_cli-0.2.30 → sandbox_cli-0.2.31}/sandbox_cli/console.py +0 -0
- {sandbox_cli-0.2.30 → sandbox_cli-0.2.31}/sandbox_cli/internal/__init__.py +0 -0
- {sandbox_cli-0.2.30 → sandbox_cli-0.2.31}/sandbox_cli/internal/config.py +0 -0
- {sandbox_cli-0.2.30 → sandbox_cli-0.2.31}/sandbox_cli/internal/helpers.py +0 -0
- {sandbox_cli-0.2.30 → sandbox_cli-0.2.31}/sandbox_cli/models/__init__.py +0 -0
- {sandbox_cli-0.2.30 → sandbox_cli-0.2.31}/sandbox_cli/models/detections.py +0 -0
- {sandbox_cli-0.2.30 → sandbox_cli-0.2.31}/sandbox_cli/models/sandbox_arguments.py +0 -0
- {sandbox_cli-0.2.30 → sandbox_cli-0.2.31}/sandbox_cli/utils/__init__.py +0 -0
- {sandbox_cli-0.2.30 → sandbox_cli-0.2.31}/sandbox_cli/utils/compiler/__init__.py +0 -0
- {sandbox_cli-0.2.30 → sandbox_cli-0.2.31}/sandbox_cli/utils/compiler/abc.py +0 -0
- {sandbox_cli-0.2.30 → sandbox_cli-0.2.31}/sandbox_cli/utils/compiler/docker.py +0 -0
- {sandbox_cli-0.2.30 → sandbox_cli-0.2.31}/sandbox_cli/utils/compiler/ssh.py +0 -0
- {sandbox_cli-0.2.30 → sandbox_cli-0.2.31}/sandbox_cli/utils/downloader/__init__.py +0 -0
- {sandbox_cli-0.2.30 → sandbox_cli-0.2.31}/sandbox_cli/utils/extractors.py +0 -0
- {sandbox_cli-0.2.30 → sandbox_cli-0.2.31}/sandbox_cli/utils/merge_dll_hooks.py +0 -0
- {sandbox_cli-0.2.30 → sandbox_cli-0.2.31}/sandbox_cli/utils/scanner/__init__.py +0 -0
- {sandbox_cli-0.2.30 → sandbox_cli-0.2.31}/sandbox_cli/utils/scanner/rescan.py +0 -0
- {sandbox_cli-0.2.30 → sandbox_cli-0.2.31}/sandbox_cli/utils/unpack/__init__.py +0 -0
- {sandbox_cli-0.2.30 → sandbox_cli-0.2.31}/sandbox_cli/utils/unpack/plugins/__init__.py +0 -0
- {sandbox_cli-0.2.30 → sandbox_cli-0.2.31}/sandbox_cli/utils/unpack/plugins/abc.py +0 -0
- {sandbox_cli-0.2.30 → sandbox_cli-0.2.31}/sandbox_cli/utils/unpack/plugins/correlation.py +0 -0
- {sandbox_cli-0.2.30 → sandbox_cli-0.2.31}/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.31
|
|
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
|
|
@@ -14,9 +14,9 @@ Requires-Python: >=3.11
|
|
|
14
14
|
Requires-Dist: aiofiles>=24.1.0
|
|
15
15
|
Requires-Dist: asyncssh>=2.20.0
|
|
16
16
|
Requires-Dist: cryptography>=44.0.2
|
|
17
|
-
Requires-Dist: cyclopts>=3.
|
|
17
|
+
Requires-Dist: cyclopts>=3.16.0
|
|
18
18
|
Requires-Dist: docker>=7.1.0
|
|
19
|
-
Requires-Dist: ptsandbox>=5.0.
|
|
19
|
+
Requires-Dist: ptsandbox>=5.0.4
|
|
20
20
|
Requires-Dist: pyzipper>=0.3.6
|
|
21
21
|
Requires-Dist: rich>=14.0.0
|
|
22
22
|
Requires-Dist: zstandard>=0.23.0
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "sandbox-cli"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.31"
|
|
4
4
|
description = "Command line tool for interaction with sandboxes"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.11"
|
|
@@ -11,9 +11,9 @@ dependencies = [
|
|
|
11
11
|
"aiofiles>=24.1.0",
|
|
12
12
|
"asyncssh>=2.20.0",
|
|
13
13
|
"cryptography>=44.0.2",
|
|
14
|
-
"cyclopts>=3.
|
|
14
|
+
"cyclopts>=3.16.0",
|
|
15
15
|
"docker>=7.1.0",
|
|
16
|
-
"ptsandbox>=5.0.
|
|
16
|
+
"ptsandbox>=5.0.4",
|
|
17
17
|
"pyzipper>=0.3.6",
|
|
18
18
|
"rich>=14.0.0",
|
|
19
19
|
"zstandard>=0.23.0",
|
|
@@ -514,11 +514,11 @@ async def scan_new(
|
|
|
514
514
|
group="Sandbox Options",
|
|
515
515
|
),
|
|
516
516
|
] = 3,
|
|
517
|
-
|
|
517
|
+
no_procdumps_on_finish: Annotated[
|
|
518
518
|
bool,
|
|
519
519
|
Parameter(
|
|
520
|
-
name=["--
|
|
521
|
-
help="
|
|
520
|
+
name=["--no-procdumps-on-finish", "-P"],
|
|
521
|
+
help="Disable dumps for all created and not finished processes",
|
|
522
522
|
group="Sandbox Options",
|
|
523
523
|
negative="",
|
|
524
524
|
),
|
|
@@ -708,7 +708,7 @@ async def scan_new(
|
|
|
708
708
|
fake_name=fake_name,
|
|
709
709
|
unpack=unpack,
|
|
710
710
|
priority=priority,
|
|
711
|
-
|
|
711
|
+
no_procdumps_on_finish=no_procdumps_on_finish,
|
|
712
712
|
bootkitmon=bootkitmon,
|
|
713
713
|
bootkitmon_duration=bootkitmon_duration,
|
|
714
714
|
mitm_disabled=mitm_disabled,
|
|
@@ -74,7 +74,7 @@ async def _prepare_sandbox_new_scan(
|
|
|
74
74
|
syscall_hooks: Path | None,
|
|
75
75
|
dll_hooks_dir: Path | None,
|
|
76
76
|
custom_command: str | None,
|
|
77
|
-
|
|
77
|
+
no_procdumps_on_finish: bool,
|
|
78
78
|
bootkitmon: bool,
|
|
79
79
|
bootkitmon_duration: int,
|
|
80
80
|
mitm_disabled: bool,
|
|
@@ -161,7 +161,7 @@ async def _prepare_sandbox_new_scan(
|
|
|
161
161
|
sandbox_options.custom_command = custom_command
|
|
162
162
|
|
|
163
163
|
# add extra options
|
|
164
|
-
sandbox_options.procdump_new_processes_on_finish =
|
|
164
|
+
sandbox_options.procdump_new_processes_on_finish = not no_procdumps_on_finish
|
|
165
165
|
sandbox_options.bootkitmon = bootkitmon
|
|
166
166
|
sandbox_options.analysis_duration_bootkitmon = bootkitmon_duration
|
|
167
167
|
sandbox_options.mitm_enabled = not mitm_disabled
|
|
@@ -189,7 +189,7 @@ async def scan_internal_advanced(
|
|
|
189
189
|
fake_name: str | None,
|
|
190
190
|
unpack: bool,
|
|
191
191
|
priority: int,
|
|
192
|
-
|
|
192
|
+
no_procdumps_on_finish: bool,
|
|
193
193
|
bootkitmon: bool,
|
|
194
194
|
bootkitmon_duration: int,
|
|
195
195
|
mitm_disabled: bool,
|
|
@@ -348,7 +348,7 @@ async def scan_internal_advanced(
|
|
|
348
348
|
syscall_hooks,
|
|
349
349
|
dll_hooks_dir,
|
|
350
350
|
custom_command,
|
|
351
|
-
|
|
351
|
+
no_procdumps_on_finish,
|
|
352
352
|
bootkitmon,
|
|
353
353
|
bootkitmon_duration,
|
|
354
354
|
mitm_disabled,
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{sandbox_cli-0.2.30 → sandbox_cli-0.2.31}/sandbox_cli/utils/unpack/plugins/sort_by_plugins.py
RENAMED
|
File without changes
|