sandbox-cli 0.2.34__tar.gz → 0.2.35__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.34 → sandbox_cli-0.2.35}/PKG-INFO +1 -1
- {sandbox_cli-0.2.34 → sandbox_cli-0.2.35}/pyproject.toml +1 -1
- {sandbox_cli-0.2.34 → sandbox_cli-0.2.35}/sandbox_cli/utils/scanner/__init__.py +2 -2
- {sandbox_cli-0.2.34 → sandbox_cli-0.2.35}/sandbox_cli/utils/scanner/advanced.py +2 -2
- {sandbox_cli-0.2.34 → sandbox_cli-0.2.35}/sandbox_cli/utils/scanner/rescan.py +2 -2
- {sandbox_cli-0.2.34 → sandbox_cli-0.2.35}/.gitignore +0 -0
- {sandbox_cli-0.2.34 → sandbox_cli-0.2.35}/LICENSE +0 -0
- {sandbox_cli-0.2.34 → sandbox_cli-0.2.35}/NOTICE +0 -0
- {sandbox_cli-0.2.34 → sandbox_cli-0.2.35}/README.md +0 -0
- {sandbox_cli-0.2.34 → sandbox_cli-0.2.35}/sandbox_cli/__main__.py +0 -0
- {sandbox_cli-0.2.34 → sandbox_cli-0.2.35}/sandbox_cli/cli/__init__.py +0 -0
- {sandbox_cli-0.2.34 → sandbox_cli-0.2.35}/sandbox_cli/cli/downloader.py +0 -0
- {sandbox_cli-0.2.34 → sandbox_cli-0.2.35}/sandbox_cli/cli/images.py +0 -0
- {sandbox_cli-0.2.34 → sandbox_cli-0.2.35}/sandbox_cli/cli/reporter.py +0 -0
- {sandbox_cli-0.2.34 → sandbox_cli-0.2.35}/sandbox_cli/cli/rules/__init__.py +0 -0
- {sandbox_cli-0.2.34 → sandbox_cli-0.2.35}/sandbox_cli/cli/scanner/__init__.py +0 -0
- {sandbox_cli-0.2.34 → sandbox_cli-0.2.35}/sandbox_cli/cli/unpack.py +0 -0
- {sandbox_cli-0.2.34 → sandbox_cli-0.2.35}/sandbox_cli/console.py +0 -0
- {sandbox_cli-0.2.34 → sandbox_cli-0.2.35}/sandbox_cli/internal/__init__.py +0 -0
- {sandbox_cli-0.2.34 → sandbox_cli-0.2.35}/sandbox_cli/internal/config.py +0 -0
- {sandbox_cli-0.2.34 → sandbox_cli-0.2.35}/sandbox_cli/internal/helpers.py +0 -0
- {sandbox_cli-0.2.34 → sandbox_cli-0.2.35}/sandbox_cli/models/__init__.py +0 -0
- {sandbox_cli-0.2.34 → sandbox_cli-0.2.35}/sandbox_cli/models/detections.py +0 -0
- {sandbox_cli-0.2.34 → sandbox_cli-0.2.35}/sandbox_cli/models/sandbox_arguments.py +0 -0
- {sandbox_cli-0.2.34 → sandbox_cli-0.2.35}/sandbox_cli/utils/__init__.py +0 -0
- {sandbox_cli-0.2.34 → sandbox_cli-0.2.35}/sandbox_cli/utils/compiler/__init__.py +0 -0
- {sandbox_cli-0.2.34 → sandbox_cli-0.2.35}/sandbox_cli/utils/compiler/abc.py +0 -0
- {sandbox_cli-0.2.34 → sandbox_cli-0.2.35}/sandbox_cli/utils/compiler/docker.py +0 -0
- {sandbox_cli-0.2.34 → sandbox_cli-0.2.35}/sandbox_cli/utils/compiler/ssh.py +0 -0
- {sandbox_cli-0.2.34 → sandbox_cli-0.2.35}/sandbox_cli/utils/downloader/__init__.py +0 -0
- {sandbox_cli-0.2.34 → sandbox_cli-0.2.35}/sandbox_cli/utils/extractors.py +0 -0
- {sandbox_cli-0.2.34 → sandbox_cli-0.2.35}/sandbox_cli/utils/merge_dll_hooks.py +0 -0
- {sandbox_cli-0.2.34 → sandbox_cli-0.2.35}/sandbox_cli/utils/unpack/__init__.py +0 -0
- {sandbox_cli-0.2.34 → sandbox_cli-0.2.35}/sandbox_cli/utils/unpack/plugins/__init__.py +0 -0
- {sandbox_cli-0.2.34 → sandbox_cli-0.2.35}/sandbox_cli/utils/unpack/plugins/abc.py +0 -0
- {sandbox_cli-0.2.34 → sandbox_cli-0.2.35}/sandbox_cli/utils/unpack/plugins/correlation.py +0 -0
- {sandbox_cli-0.2.34 → sandbox_cli-0.2.35}/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.35
|
|
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
|
|
@@ -235,7 +235,7 @@ async def scan_internal(
|
|
|
235
235
|
) -> None:
|
|
236
236
|
sandbox_arguments = SandboxArguments(
|
|
237
237
|
type=ScanType.SCAN,
|
|
238
|
-
sandbox_key_name=key.name,
|
|
238
|
+
sandbox_key_name=key.name.get_secret_value(),
|
|
239
239
|
sandbox_options=sandbox_options.sandbox,
|
|
240
240
|
)
|
|
241
241
|
save_scan_arguments(out_dir, sandbox_arguments)
|
|
@@ -245,7 +245,7 @@ async def scan_internal(
|
|
|
245
245
|
# except Exception as ex:
|
|
246
246
|
# console.log(f"[cyan]{idx}[/] {file_path} Error: {ex!r}")
|
|
247
247
|
|
|
248
|
-
console.info(f"Using key: name={key.name} max_workers={key.max_workers}")
|
|
248
|
+
console.info(f"Using key: name={key.name.get_secret_value()} max_workers={key.max_workers}")
|
|
249
249
|
|
|
250
250
|
tasks: list[Coroutine[Any, Any, None]] = []
|
|
251
251
|
sandbox, sandbox_options, images = await _prepare_scan_options(
|
|
@@ -327,7 +327,7 @@ async def scan_internal_advanced(
|
|
|
327
327
|
) -> None:
|
|
328
328
|
sandbox_arguments = SandboxArguments(
|
|
329
329
|
type=ScanType.SCAN_NEW,
|
|
330
|
-
sandbox_key_name=key.name,
|
|
330
|
+
sandbox_key_name=key.name.get_secret_value(),
|
|
331
331
|
sandbox_options=sandbox_options,
|
|
332
332
|
)
|
|
333
333
|
save_scan_arguments(out_dir, sandbox_arguments)
|
|
@@ -337,7 +337,7 @@ async def scan_internal_advanced(
|
|
|
337
337
|
# except Exception as ex:
|
|
338
338
|
# console.log(f"[cyan]{idx}[/] {file_path} Error: {ex!r}")
|
|
339
339
|
|
|
340
|
-
console.info(f"Using key: name={key.name} max_workers={key.max_workers}")
|
|
340
|
+
console.info(f"Using key: name={key.name.get_secret_value()} max_workers={key.max_workers}")
|
|
341
341
|
|
|
342
342
|
tasks: list[Coroutine[Any, Any, None]] = []
|
|
343
343
|
with progress:
|
|
@@ -236,14 +236,14 @@ async def rescan_internal(
|
|
|
236
236
|
|
|
237
237
|
await process_trace(drakvuf_trace, tcpdump_pcap, trace, out_dir, idx)
|
|
238
238
|
|
|
239
|
-
console.info(f"Using key: name={key.name} max_workers={key.max_workers}")
|
|
239
|
+
console.info(f"Using key: name={key.name.get_secret_value()} max_workers={key.max_workers}")
|
|
240
240
|
|
|
241
241
|
tasks: list[Coroutine[Any, Any, None]] = []
|
|
242
242
|
with progress:
|
|
243
243
|
sandbox, sandbox_options = await _prepare_rescan_options(progress, rules_dir, key, is_local)
|
|
244
244
|
sandbox_arguments = SandboxArguments(
|
|
245
245
|
type=ScanType.RE_SCAN,
|
|
246
|
-
sandbox_key_name=key.name,
|
|
246
|
+
sandbox_key_name=key.name.get_secret_value(),
|
|
247
247
|
sandbox_options=sandbox_options.sandbox,
|
|
248
248
|
)
|
|
249
249
|
|
|
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.34 → sandbox_cli-0.2.35}/sandbox_cli/utils/unpack/plugins/sort_by_plugins.py
RENAMED
|
File without changes
|