cycode 3.10.3.dev1__py3-none-any.whl → 3.10.4.dev1__py3-none-any.whl
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.
- cycode/__init__.py +1 -1
- cycode/cli/apps/report/sbom/path/path_command.py +11 -14
- cycode/cli/apps/sca_options.py +47 -0
- cycode/cli/apps/scan/code_scanner.py +76 -4
- cycode/cli/apps/scan/commit_range_scanner.py +51 -8
- cycode/cli/apps/scan/scan_command.py +10 -30
- cycode/cli/cli_types.py +1 -0
- cycode/cli/consts.py +5 -2
- cycode/cli/files_collector/sca/base_restore_dependencies.py +28 -4
- cycode/cli/files_collector/sca/go/restore_go_dependencies.py +4 -4
- cycode/cli/files_collector/sca/npm/restore_deno_dependencies.py +46 -0
- cycode/cli/files_collector/sca/npm/restore_npm_dependencies.py +23 -136
- cycode/cli/files_collector/sca/npm/restore_pnpm_dependencies.py +70 -0
- cycode/cli/files_collector/sca/npm/restore_yarn_dependencies.py +70 -0
- cycode/cli/files_collector/sca/php/__init__.py +0 -0
- cycode/cli/files_collector/sca/php/restore_composer_dependencies.py +54 -0
- cycode/cli/files_collector/sca/python/__init__.py +0 -0
- cycode/cli/files_collector/sca/python/restore_pipenv_dependencies.py +45 -0
- cycode/cli/files_collector/sca/python/restore_poetry_dependencies.py +62 -0
- cycode/cli/files_collector/sca/sca_file_collector.py +13 -1
- cycode/cli/files_collector/zip_documents.py +5 -1
- cycode/cli/utils/scan_batch.py +5 -1
- cycode/cli/utils/scan_utils.py +5 -0
- cycode/cyclient/models.py +20 -0
- cycode/cyclient/scan_client.py +61 -0
- {cycode-3.10.3.dev1.dist-info → cycode-3.10.4.dev1.dist-info}/METADATA +31 -11
- {cycode-3.10.3.dev1.dist-info → cycode-3.10.4.dev1.dist-info}/RECORD +30 -21
- {cycode-3.10.3.dev1.dist-info → cycode-3.10.4.dev1.dist-info}/WHEEL +0 -0
- {cycode-3.10.3.dev1.dist-info → cycode-3.10.4.dev1.dist-info}/entry_points.txt +0 -0
- {cycode-3.10.3.dev1.dist-info → cycode-3.10.4.dev1.dist-info}/licenses/LICENCE +0 -0
cycode/cyclient/scan_client.py
CHANGED
|
@@ -3,6 +3,7 @@ from copy import deepcopy
|
|
|
3
3
|
from typing import TYPE_CHECKING, Optional, Union
|
|
4
4
|
from uuid import UUID
|
|
5
5
|
|
|
6
|
+
import requests
|
|
6
7
|
from requests import Response
|
|
7
8
|
|
|
8
9
|
from cycode.cli import consts
|
|
@@ -25,6 +26,7 @@ class ScanClient:
|
|
|
25
26
|
self.scan_config = scan_config
|
|
26
27
|
|
|
27
28
|
self._SCAN_SERVICE_CLI_CONTROLLER_PATH = 'api/v1/cli-scan'
|
|
29
|
+
self._SCAN_SERVICE_V4_CLI_CONTROLLER_PATH = 'api/v4/scans/cli'
|
|
28
30
|
self._DETECTIONS_SERVICE_CLI_CONTROLLER_PATH = 'api/v1/detections/cli'
|
|
29
31
|
self._POLICIES_SERVICE_CONTROLLER_PATH_V3 = 'api/v3/policies'
|
|
30
32
|
|
|
@@ -56,6 +58,10 @@ class ScanClient:
|
|
|
56
58
|
)
|
|
57
59
|
return models.ScanReportUrlResponseSchema().build_dto(response.json())
|
|
58
60
|
|
|
61
|
+
def get_scan_service_v4_url_path(self, scan_type: str) -> str:
|
|
62
|
+
service_path = self.scan_config.get_service_name(scan_type)
|
|
63
|
+
return f'{service_path}/{self._SCAN_SERVICE_V4_CLI_CONTROLLER_PATH}'
|
|
64
|
+
|
|
59
65
|
def get_zipped_file_scan_async_url_path(self, scan_type: str, should_use_sync_flow: bool = False) -> str:
|
|
60
66
|
async_scan_type = self.scan_config.get_async_scan_type(scan_type)
|
|
61
67
|
async_entity_type = self.scan_config.get_async_entity_type(scan_type)
|
|
@@ -123,6 +129,40 @@ class ScanClient:
|
|
|
123
129
|
)
|
|
124
130
|
return models.ScanInitializationResponseSchema().load(response.json())
|
|
125
131
|
|
|
132
|
+
def get_upload_link(self, scan_type: str) -> models.UploadLinkResponse:
|
|
133
|
+
async_scan_type = self.scan_config.get_async_scan_type(scan_type)
|
|
134
|
+
url_path = f'{self.get_scan_service_v4_url_path(scan_type)}/{async_scan_type}/upload-link'
|
|
135
|
+
response = self.scan_cycode_client.get(url_path=url_path, hide_response_content_log=self._hide_response_log)
|
|
136
|
+
return models.UploadLinkResponseSchema().load(response.json())
|
|
137
|
+
|
|
138
|
+
def upload_to_presigned_post(self, url: str, fields: dict[str, str], zip_file: 'InMemoryZip') -> None:
|
|
139
|
+
multipart = {key: (None, value) for key, value in fields.items()}
|
|
140
|
+
multipart['file'] = (None, zip_file.read())
|
|
141
|
+
# We are not using Cycode client, as we are calling aws S3.
|
|
142
|
+
response = requests.post(url, files=multipart, timeout=self.scan_cycode_client.timeout)
|
|
143
|
+
response.raise_for_status()
|
|
144
|
+
|
|
145
|
+
def scan_repository_from_upload_id(
|
|
146
|
+
self,
|
|
147
|
+
scan_type: str,
|
|
148
|
+
upload_id: str,
|
|
149
|
+
scan_parameters: dict,
|
|
150
|
+
is_git_diff: bool = False,
|
|
151
|
+
is_commit_range: bool = False,
|
|
152
|
+
) -> models.ScanInitializationResponse:
|
|
153
|
+
async_scan_type = self.scan_config.get_async_scan_type(scan_type)
|
|
154
|
+
url_path = f'{self.get_scan_service_v4_url_path(scan_type)}/{async_scan_type}/repository'
|
|
155
|
+
response = self.scan_cycode_client.post(
|
|
156
|
+
url_path=url_path,
|
|
157
|
+
body={
|
|
158
|
+
'upload_id': upload_id,
|
|
159
|
+
'is_git_diff': is_git_diff,
|
|
160
|
+
'is_commit_range': is_commit_range,
|
|
161
|
+
'scan_parameters': json.dumps(scan_parameters),
|
|
162
|
+
},
|
|
163
|
+
)
|
|
164
|
+
return models.ScanInitializationResponseSchema().load(response.json())
|
|
165
|
+
|
|
126
166
|
def commit_range_scan_async(
|
|
127
167
|
self,
|
|
128
168
|
from_commit_zip_file: InMemoryZip,
|
|
@@ -161,6 +201,27 @@ class ScanClient:
|
|
|
161
201
|
)
|
|
162
202
|
return models.ScanInitializationResponseSchema().load(response.json())
|
|
163
203
|
|
|
204
|
+
def commit_range_scan_from_upload_ids(
|
|
205
|
+
self,
|
|
206
|
+
scan_type: str,
|
|
207
|
+
from_commit_upload_id: str,
|
|
208
|
+
to_commit_upload_id: str,
|
|
209
|
+
scan_parameters: dict,
|
|
210
|
+
is_git_diff: bool = False,
|
|
211
|
+
) -> models.ScanInitializationResponse:
|
|
212
|
+
async_scan_type = self.scan_config.get_async_scan_type(scan_type)
|
|
213
|
+
url_path = f'{self.get_scan_service_v4_url_path(scan_type)}/{async_scan_type}/commit-range'
|
|
214
|
+
response = self.scan_cycode_client.post(
|
|
215
|
+
url_path=url_path,
|
|
216
|
+
body={
|
|
217
|
+
'from_commit_upload_id': from_commit_upload_id,
|
|
218
|
+
'to_commit_upload_id': to_commit_upload_id,
|
|
219
|
+
'is_git_diff': is_git_diff,
|
|
220
|
+
'scan_parameters': json.dumps(scan_parameters),
|
|
221
|
+
},
|
|
222
|
+
)
|
|
223
|
+
return models.ScanInitializationResponseSchema().load(response.json())
|
|
224
|
+
|
|
164
225
|
def get_scan_details_path(self, scan_type: str, scan_id: str) -> str:
|
|
165
226
|
return f'{self.get_scan_service_url_path(scan_type)}/{scan_id}'
|
|
166
227
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cycode
|
|
3
|
-
Version: 3.10.
|
|
3
|
+
Version: 3.10.4.dev1
|
|
4
4
|
Summary: Boost security in your dev lifecycle via SAST, SCA, Secrets & IaC scanning.
|
|
5
5
|
License-Expression: MIT
|
|
6
6
|
License-File: LICENCE
|
|
@@ -710,15 +710,33 @@ In the previous example, if you wanted to only scan a branch named `dev`, you co
|
|
|
710
710
|
> [!NOTE]
|
|
711
711
|
> This option is only available to SCA scans.
|
|
712
712
|
|
|
713
|
-
|
|
714
|
-
To disable lock restore in use `--no-restore` option.
|
|
713
|
+
When running an SCA scan, Cycode CLI automatically attempts to restore (generate) a dependency lockfile for each supported manifest file it finds. This allows scanning transitive dependencies, not just the ones listed directly in the manifest. To skip this step and scan only direct dependencies, use the `--no-restore` flag.
|
|
715
714
|
|
|
716
|
-
|
|
717
|
-
* `sbt-dependency-lock` plugin: Install the plugin by adding the following line to `project/plugins.sbt`:
|
|
715
|
+
The following ecosystems support automatic lockfile restoration:
|
|
718
716
|
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
717
|
+
| Ecosystem | Manifest file | Lockfile generated | Tool invoked (when lockfile is absent) |
|
|
718
|
+
|---|---|---|---|
|
|
719
|
+
| npm | `package.json` | `package-lock.json` | `npm install --package-lock-only --ignore-scripts --no-audit` |
|
|
720
|
+
| Yarn | `package.json` | `yarn.lock` | `yarn install --ignore-scripts` |
|
|
721
|
+
| pnpm | `package.json` | `pnpm-lock.yaml` | `pnpm install --ignore-scripts` |
|
|
722
|
+
| Deno | `deno.json` / `deno.jsonc` | `deno.lock` | *(read existing lockfile only)* |
|
|
723
|
+
| Go | `go.mod` | `go.mod.graph` | `go list -m -json all` + `go mod graph` |
|
|
724
|
+
| Maven | `pom.xml` | `bcde.mvndeps` | `mvn dependency:tree` |
|
|
725
|
+
| Gradle | `build.gradle` / `build.gradle.kts` | `gradle-dependencies-generated.txt` | `gradle dependencies -q --console plain` |
|
|
726
|
+
| SBT | `build.sbt` | `build.sbt.lock` | `sbt dependencyLockWrite` |
|
|
727
|
+
| NuGet | `*.csproj` | `packages.lock.json` | `dotnet restore --use-lock-file` |
|
|
728
|
+
| Ruby | `Gemfile` | `Gemfile.lock` | `bundle --quiet` |
|
|
729
|
+
| Poetry | `pyproject.toml` | `poetry.lock` | `poetry lock` |
|
|
730
|
+
| Pipenv | `Pipfile` | `Pipfile.lock` | `pipenv lock` |
|
|
731
|
+
| PHP Composer | `composer.json` | `composer.lock` | `composer update --no-cache --no-install --no-scripts --ignore-platform-reqs` |
|
|
732
|
+
|
|
733
|
+
If a lockfile already exists alongside the manifest, Cycode reads it directly without running any install command.
|
|
734
|
+
|
|
735
|
+
**SBT prerequisite:** The `sbt-dependency-lock` plugin must be installed. Add the following line to `project/plugins.sbt`:
|
|
736
|
+
|
|
737
|
+
```text
|
|
738
|
+
addSbtPlugin("software.purpledragon" % "sbt-dependency-lock" % "1.5.1")
|
|
739
|
+
```
|
|
722
740
|
|
|
723
741
|
### Repository Scan
|
|
724
742
|
|
|
@@ -1351,9 +1369,11 @@ For example:\
|
|
|
1351
1369
|
|
|
1352
1370
|
The `path` subcommand supports the following additional options:
|
|
1353
1371
|
|
|
1354
|
-
| Option
|
|
1355
|
-
|
|
1356
|
-
| `--
|
|
1372
|
+
| Option | Description |
|
|
1373
|
+
|-----------------------------|-------------------------------------------------------------------------------------------------------------------------------------|
|
|
1374
|
+
| `--no-restore` | Skip lockfile restoration and scan direct dependencies only. See [Lock Restore Option](#lock-restore-option) for details. |
|
|
1375
|
+
| `--gradle-all-sub-projects` | Run the Gradle restore command for all sub-projects (use from the root of a multi-project Gradle build). |
|
|
1376
|
+
| `--maven-settings-file` | For Maven only, allows using a custom [settings.xml](https://maven.apache.org/settings.html) file when building the dependency tree. |
|
|
1357
1377
|
|
|
1358
1378
|
# Import Command
|
|
1359
1379
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
cycode/__init__.py,sha256=
|
|
1
|
+
cycode/__init__.py,sha256=ueaUn-37Zfav2KbYRzlAHRvdWL39VB-uF9rs-LKEROY,115
|
|
2
2
|
cycode/__main__.py,sha256=Z3bD5yrA7yPvAChcADQrqCaZd0ChGI1gdiwALwbWJ6U,104
|
|
3
3
|
cycode/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
cycode/cli/app.py,sha256=euQuMmLSM7Flq-mIPrie1ogdk09t1l6R_B6PQE_ib8w,6348
|
|
@@ -42,7 +42,7 @@ cycode/cli/apps/report/report_command.py,sha256=k_7vx_QsHmDKjlW_vibmv9_55ML4-A7O
|
|
|
42
42
|
cycode/cli/apps/report/sbom/__init__.py,sha256=fZAryQHrn1V8KVKJvB97Virls1eEs4jHd5bvdIQv0ds,753
|
|
43
43
|
cycode/cli/apps/report/sbom/common.py,sha256=TefLoLxbxi4yDq6b-639udlGqfgLDznGGRwTjQwObAk,3444
|
|
44
44
|
cycode/cli/apps/report/sbom/path/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
45
|
-
cycode/cli/apps/report/sbom/path/path_command.py,sha256
|
|
45
|
+
cycode/cli/apps/report/sbom/path/path_command.py,sha256=F7ltv_tM41l7HHbuf1hR96kuU5bNrRNE8SRBT3r0MFE,3467
|
|
46
46
|
cycode/cli/apps/report/sbom/repository_url/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
47
47
|
cycode/cli/apps/report/sbom/repository_url/repository_url_command.py,sha256=wgbMaCSmC6PqizkkzshmT4Pf_HaQH3xNQffFrU7_r4U,2491
|
|
48
48
|
cycode/cli/apps/report/sbom/sbom_command.py,sha256=2T54KUv7041VGQ9fmk3SkmAM1AwG5EPl10aiUL7QhiU,2150
|
|
@@ -51,12 +51,13 @@ cycode/cli/apps/report_import/__init__.py,sha256=T9KSL2TwQKQTNbck7JBlQAf7w8W3Q3V
|
|
|
51
51
|
cycode/cli/apps/report_import/report_import_command.py,sha256=otDBvoQZFlchf6R6SU8CSA6Vrfh6fVTAhXQGaIH7z3Q,215
|
|
52
52
|
cycode/cli/apps/report_import/sbom/__init__.py,sha256=5E9x4UqWsk333RlklV9cCo7Q9o019zIhx-uac109YcU,210
|
|
53
53
|
cycode/cli/apps/report_import/sbom/sbom_command.py,sha256=uWvBhVdROHcHsjoR3l44h3sHOLWTQoldiDROtx4cgc0,2276
|
|
54
|
+
cycode/cli/apps/sca_options.py,sha256=Sk106pnP9b7jBZPyt3cNyHmbb7Ve0pRf2aRaBOqZtfY,1346
|
|
54
55
|
cycode/cli/apps/scan/__init__.py,sha256=-q1AIBnrQ4GP0CVKFLr_2CdWf9TBQC90ejSL4I7rxuA,2444
|
|
55
56
|
cycode/cli/apps/scan/aggregation_report.py,sha256=8f9kPfO7biNf5OsDZG6UhMPqG6ymoFrX5GBtlEIfFAg,1540
|
|
56
|
-
cycode/cli/apps/scan/code_scanner.py,sha256=
|
|
57
|
+
cycode/cli/apps/scan/code_scanner.py,sha256=zrd-2gOQtetZLr6JzqvGPL823ckjKB0x1YDm1KS_W10,14812
|
|
57
58
|
cycode/cli/apps/scan/commit_history/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
58
59
|
cycode/cli/apps/scan/commit_history/commit_history_command.py,sha256=zTVmN8yeLXGAiCbyDL-EyEzSPNLzcRpP2q6Qq7p4uZA,1011
|
|
59
|
-
cycode/cli/apps/scan/commit_range_scanner.py,sha256=
|
|
60
|
+
cycode/cli/apps/scan/commit_range_scanner.py,sha256=mzfCTfd8Xbx3hRmMEdKE10p8-pFSb4ZS6D5EgYrx6cI,16550
|
|
60
61
|
cycode/cli/apps/scan/detection_excluder.py,sha256=0zaNa1PxVshATHv8axp4e-xWvmuNQdg_r5DYsdQ9EVo,6432
|
|
61
62
|
cycode/cli/apps/scan/path/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
62
63
|
cycode/cli/apps/scan/path/path_command.py,sha256=x4HXqq1Wy6onziKMc6ELQxqeI5k-m3t_T3RG9kQxrq0,591
|
|
@@ -72,7 +73,7 @@ cycode/cli/apps/scan/repository/repository_command.py,sha256=03C93JYvyN_W-vstsl5
|
|
|
72
73
|
cycode/cli/apps/scan/scan_ci/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
73
74
|
cycode/cli/apps/scan/scan_ci/ci_integrations.py,sha256=3ZUv1uLsHC13KTNQ4erQKKDXAkmaSm5jow2Utwr4mCw,1634
|
|
74
75
|
cycode/cli/apps/scan/scan_ci/scan_ci_command.py,sha256=37I6YTs5UWYtbnDe1EeYZnhV1twFTDUrniZ4Sf2_6Kk,562
|
|
75
|
-
cycode/cli/apps/scan/scan_command.py,sha256=
|
|
76
|
+
cycode/cli/apps/scan/scan_command.py,sha256=5F9l54BFEK1KHs8GQ9ZW8znYTJii1scxIvTwJknnl5k,6437
|
|
76
77
|
cycode/cli/apps/scan/scan_parameters.py,sha256=66Ft8c_L6_BxDvRgJoXP5ItUQfzSHGF_XJWBdQismrg,1341
|
|
77
78
|
cycode/cli/apps/scan/scan_result.py,sha256=mIxALi_qUfXHoauSU7SknX0xLp8P9WdhV3oFc8jp_SA,8497
|
|
78
79
|
cycode/cli/apps/status/__init__.py,sha256=uxfkEBafO7Da0mPc1fZhwoO0RTtyXp2a5T3LJTZxubU,371
|
|
@@ -80,10 +81,10 @@ cycode/cli/apps/status/get_cli_status.py,sha256=qAuDdtWTCMI8ChYrQzgeJI31v8dDu-aE
|
|
|
80
81
|
cycode/cli/apps/status/models.py,sha256=2SBpJlh_MNCPxv8aXMV5D4GfK6-G-XB0GlMFZ3Nep_o,1907
|
|
81
82
|
cycode/cli/apps/status/status_command.py,sha256=B8YZ4hibWkjkAkikailll2lkJmCRYh9APdvZSR4L33c,1069
|
|
82
83
|
cycode/cli/apps/status/version_command.py,sha256=c6Iko_rmZo9T_kQSd3HUloBi40Qv7cjgKJNVxpMiMfE,315
|
|
83
|
-
cycode/cli/cli_types.py,sha256=
|
|
84
|
+
cycode/cli/cli_types.py,sha256=QbFWJLtlsEnHGdqdHbLolJqT57RfhocvsPAhlcNcCRE,3354
|
|
84
85
|
cycode/cli/config.py,sha256=Op-lX_neanJtvPvoOEx4ByBdveh5ygElIga1FdSHhOI,299
|
|
85
86
|
cycode/cli/console.py,sha256=vp-DHwlkwpwdsPyfwGdjsPF-6-Bi3f8W7G-W_YXCMH8,1914
|
|
86
|
-
cycode/cli/consts.py,sha256=
|
|
87
|
+
cycode/cli/consts.py,sha256=5M2QCv2zPAEdw2iH53danUDVvJRO54YhqVuqloifLk8,8930
|
|
87
88
|
cycode/cli/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
88
89
|
cycode/cli/exceptions/custom_exceptions.py,sha256=ZMj4O8-SrriKWum3H4zIbtMnjPKpIp9PsnwnlyGHtYM,3517
|
|
89
90
|
cycode/cli/exceptions/handle_ai_remediation_errors.py,sha256=mA70upSYXK3rL_fmanzKYeUzLENhpXdkW8k3aIHrKzU,785
|
|
@@ -102,23 +103,31 @@ cycode/cli/files_collector/models/in_memory_zip.py,sha256=a56bTdOgg7E3PpWRh0ixVX
|
|
|
102
103
|
cycode/cli/files_collector/path_documents.py,sha256=LLmuHf2h6glXwmf44pMnFq1-3HipQXFByfn8lWEO2sA,4782
|
|
103
104
|
cycode/cli/files_collector/repository_documents.py,sha256=53QQsfCzXXSV6F3EcInaN8G6aCwEVzceWiYwasG8CgM,860
|
|
104
105
|
cycode/cli/files_collector/sca/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
105
|
-
cycode/cli/files_collector/sca/base_restore_dependencies.py,sha256=
|
|
106
|
+
cycode/cli/files_collector/sca/base_restore_dependencies.py,sha256=TKON0-_Bn9U25okbpiqFGuymhZO1OjhZOOwchi9AYVU,6034
|
|
106
107
|
cycode/cli/files_collector/sca/go/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
107
|
-
cycode/cli/files_collector/sca/go/restore_go_dependencies.py,sha256=
|
|
108
|
+
cycode/cli/files_collector/sca/go/restore_go_dependencies.py,sha256=LXUjslfdHO3umz36WtQyRpKa_fVaRgEjewVkZ0QvnYU,1899
|
|
108
109
|
cycode/cli/files_collector/sca/maven/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
109
110
|
cycode/cli/files_collector/sca/maven/restore_gradle_dependencies.py,sha256=hwsdJby0_7i3s6YmCU-tB6B3TfsfbyQyeTVwEy6c6SA,2699
|
|
110
111
|
cycode/cli/files_collector/sca/maven/restore_maven_dependencies.py,sha256=-kCvjVIDGI_eX-l6I0M0OPI6OOhPGyga0e02FQgiFwM,3320
|
|
111
112
|
cycode/cli/files_collector/sca/npm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
112
|
-
cycode/cli/files_collector/sca/npm/
|
|
113
|
+
cycode/cli/files_collector/sca/npm/restore_deno_dependencies.py,sha256=XL0VXEPL0jf6ruZZkCpv99lkU8-MNc09CU1fgGgTbHs,1768
|
|
114
|
+
cycode/cli/files_collector/sca/npm/restore_npm_dependencies.py,sha256=oUPJa1qwzCg3h1eZeVrU95Fluubo7p5gNlGmjJQem-4,2477
|
|
115
|
+
cycode/cli/files_collector/sca/npm/restore_pnpm_dependencies.py,sha256=CcvJOox2JpWl_UeCjMP9I8fP85bPZXfhH7IwLzq2U8E,2708
|
|
116
|
+
cycode/cli/files_collector/sca/npm/restore_yarn_dependencies.py,sha256=903Ra2YOKwlJnknG47embjPLQUajUb8_1j94GAVcnX0,2698
|
|
113
117
|
cycode/cli/files_collector/sca/nuget/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
114
118
|
cycode/cli/files_collector/sca/nuget/restore_nuget_dependencies.py,sha256=HqHjGfuIPJrhm6tpTDsrW86-RCCfWynGJ-lHB64iteY,947
|
|
119
|
+
cycode/cli/files_collector/sca/php/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
120
|
+
cycode/cli/files_collector/sca/php/restore_composer_dependencies.py,sha256=RgDL6ReLzTcBAex0pDAcLkAgUdBk9w7Tl2ka0lNdriU,2069
|
|
121
|
+
cycode/cli/files_collector/sca/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
122
|
+
cycode/cli/files_collector/sca/python/restore_pipenv_dependencies.py,sha256=1APGwJWInAITKKXw2wJDxTxpHZBOjX0wGOcBHPsyTes,1832
|
|
123
|
+
cycode/cli/files_collector/sca/python/restore_poetry_dependencies.py,sha256=VYw_2qbsLtzkBuMGxRXTaOwDt2hPcG3f094mPLmiVLM,2486
|
|
115
124
|
cycode/cli/files_collector/sca/ruby/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
116
125
|
cycode/cli/files_collector/sca/ruby/restore_ruby_dependencies.py,sha256=Vqswcxte9YjGnvIm9oZ8r91jNyhuiYDf1mouaTaLg3U,694
|
|
117
126
|
cycode/cli/files_collector/sca/sbt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
118
127
|
cycode/cli/files_collector/sca/sbt/restore_sbt_dependencies.py,sha256=cfBUR4iQcfplX_O2QPjYh2wSyBteze8wZcT_dG9d1d4,709
|
|
119
|
-
cycode/cli/files_collector/sca/sca_file_collector.py,sha256=
|
|
128
|
+
cycode/cli/files_collector/sca/sca_file_collector.py,sha256=tM7Hl0n30aUs5uTzoB1NTuDPkoFbga6JJ3jPfT4rThA,9419
|
|
120
129
|
cycode/cli/files_collector/walk_ignore.py,sha256=nvOM6oDmT2SxSI4pU-bLlc9LwTgkfTd2egse69ixf3g,2464
|
|
121
|
-
cycode/cli/files_collector/zip_documents.py,sha256=
|
|
130
|
+
cycode/cli/files_collector/zip_documents.py,sha256=FMzbA2Vog7Zl_ntizNQJK8AFqoGu0QlPIMIBpgmBiVI,1852
|
|
122
131
|
cycode/cli/logger.py,sha256=mlaYEQGYd582fTCc3SC3cFMj0PKTB6EsaI12Q4VL1z8,65
|
|
123
132
|
cycode/cli/main.py,sha256=QTPqIZsJsNK_vun8---vP2jP4ljlNJ15xidNrQ-Y0Rc,316
|
|
124
133
|
cycode/cli/models.py,sha256=fuFjEXdH5QUpu4iwo5eMDgfJ9FzVtjTlTJNvBqPaBjE,1850
|
|
@@ -155,8 +164,8 @@ cycode/cli/utils/ignore_utils.py,sha256=cODqhnOHA2kRo8rMY0YcmcKkmXNPOC9UTCmFu62R
|
|
|
155
164
|
cycode/cli/utils/jwt_utils.py,sha256=TfTHCCCxKO6RvSKT2qspx4577Gax3n9YRj2UgigpGuQ,537
|
|
156
165
|
cycode/cli/utils/path_utils.py,sha256=OmAOtZwvPmYqqhBnB4jI6hkSnCkGpSOibY7PtP213Cc,3235
|
|
157
166
|
cycode/cli/utils/progress_bar.py,sha256=bKBWHHdZsVkdDdWMJLfgLGR0cBYeB44P_DpRM8pvWqU,9528
|
|
158
|
-
cycode/cli/utils/scan_batch.py,sha256=
|
|
159
|
-
cycode/cli/utils/scan_utils.py,sha256=
|
|
167
|
+
cycode/cli/utils/scan_batch.py,sha256=5xKGVDVqoRxdKhuZkK11x4QrNqKmU20Q83E_fy8Nndk,5188
|
|
168
|
+
cycode/cli/utils/scan_utils.py,sha256=sTj7j9dVHcgeMqfYp8sO78ZiWX8LnhpgjCOi1N1gmAM,2248
|
|
160
169
|
cycode/cli/utils/shell_executor.py,sha256=VkzzQPZCmTkFvDjhgJrkv-Icej3U1wLW9LLN6k6OahA,1848
|
|
161
170
|
cycode/cli/utils/string_utils.py,sha256=0kvu_apAfHjwd7dUhZl8k1pr57aCiO1MhzBYnA2keK4,2434
|
|
162
171
|
cycode/cli/utils/task_timer.py,sha256=wxfM2TtJGjc1F17CIja_Qmt6zd4a1qdMwuz0ltgTDAg,2722
|
|
@@ -180,13 +189,13 @@ cycode/cyclient/cycode_token_based_client.py,sha256=frbrv1jzF388SXqHNNkZ95Hbx7Vj
|
|
|
180
189
|
cycode/cyclient/headers.py,sha256=NMlVH9hAxZ-CyWaZJio29Mc5KFcFvNvnJTshueM3hFI,1337
|
|
181
190
|
cycode/cyclient/import_sbom_client.py,sha256=M0RAn2dDh9woI3SUkgSHCQxhbARoLpyAM3amOausz8E,2749
|
|
182
191
|
cycode/cyclient/logger.py,sha256=oTkay7QzoOIVQ71cGOy4ukkijYGA3IKJlHkL24Px5ds,70
|
|
183
|
-
cycode/cyclient/models.py,sha256=
|
|
192
|
+
cycode/cyclient/models.py,sha256=pHiJpj9TVPmn7bAK3uhx4Yc4unyo9llUoCoJKeDhDnM,15493
|
|
184
193
|
cycode/cyclient/report_client.py,sha256=Scq30NeJPzgXv0hPLO1U05AdE9i_2iu6cIrSKpEJ-cM,4399
|
|
185
|
-
cycode/cyclient/scan_client.py,sha256=
|
|
194
|
+
cycode/cyclient/scan_client.py,sha256=iLBLFO9IyAroLAMAo51FLaCHkquYNsSlEqumznW9k9A,15552
|
|
186
195
|
cycode/cyclient/scan_config_base.py,sha256=mXsPZGYCtp85rv5GIige40yQZXuRcEKUW-VQJ0vgFzk,1201
|
|
187
196
|
cycode/logger.py,sha256=xAzpkWLZhixO4egRcYn4HXM9lIfx5wHdpkHxNc5jrX8,2225
|
|
188
|
-
cycode-3.10.
|
|
189
|
-
cycode-3.10.
|
|
190
|
-
cycode-3.10.
|
|
191
|
-
cycode-3.10.
|
|
192
|
-
cycode-3.10.
|
|
197
|
+
cycode-3.10.4.dev1.dist-info/METADATA,sha256=4ep5VSqFH94aTaKzkvoOgk64YFO3TxQuIQD7Jow-uoY,81596
|
|
198
|
+
cycode-3.10.4.dev1.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
199
|
+
cycode-3.10.4.dev1.dist-info/entry_points.txt,sha256=iDcVJM8ByLElVgvBgtYxDjw1kT7O8Mo0LcWZIT5L3Ig,45
|
|
200
|
+
cycode-3.10.4.dev1.dist-info/licenses/LICENCE,sha256=2Wx4N6mD_4xB7-E3hPkZ3MPhpJy__k_I8MaCSO-PDRo,1068
|
|
201
|
+
cycode-3.10.4.dev1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|