regscale-cli 6.25.1.0__py3-none-any.whl → 6.26.0.0__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.

Potentially problematic release.


This version of regscale-cli might be problematic. Click here for more details.

Files changed (80) hide show
  1. regscale/_version.py +1 -1
  2. regscale/airflow/hierarchy.py +2 -2
  3. regscale/core/app/application.py +18 -3
  4. regscale/core/app/internal/login.py +0 -1
  5. regscale/core/app/utils/catalog_utils/common.py +1 -1
  6. regscale/integrations/commercial/sicura/api.py +14 -13
  7. regscale/integrations/commercial/sicura/commands.py +8 -2
  8. regscale/integrations/commercial/sicura/scanner.py +49 -39
  9. regscale/integrations/commercial/stigv2/ckl_parser.py +5 -5
  10. regscale/integrations/commercial/wizv2/click.py +26 -26
  11. regscale/integrations/commercial/wizv2/compliance_report.py +152 -157
  12. regscale/integrations/commercial/wizv2/scanner.py +3 -3
  13. regscale/integrations/compliance_integration.py +67 -2
  14. regscale/integrations/control_matcher.py +358 -0
  15. regscale/integrations/milestone_manager.py +291 -0
  16. regscale/integrations/public/__init__.py +1 -0
  17. regscale/integrations/public/cci_importer.py +37 -38
  18. regscale/integrations/public/fedramp/click.py +60 -2
  19. regscale/integrations/public/fedramp/poam_export_v5.py +888 -0
  20. regscale/integrations/scanner_integration.py +150 -96
  21. regscale/models/integration_models/cisa_kev_data.json +154 -4
  22. regscale/models/integration_models/nexpose.py +36 -10
  23. regscale/models/integration_models/synqly_models/capabilities.json +1 -1
  24. regscale/models/locking.py +12 -8
  25. regscale/models/platform.py +1 -2
  26. regscale/models/regscale_models/control_implementation.py +46 -21
  27. regscale/models/regscale_models/issue.py +256 -94
  28. regscale/models/regscale_models/milestone.py +1 -1
  29. regscale/models/regscale_models/regscale_model.py +6 -1
  30. regscale/templates/__init__.py +0 -0
  31. {regscale_cli-6.25.1.0.dist-info → regscale_cli-6.26.0.0.dist-info}/METADATA +1 -1
  32. {regscale_cli-6.25.1.0.dist-info → regscale_cli-6.26.0.0.dist-info}/RECORD +80 -33
  33. tests/regscale/integrations/commercial/__init__.py +0 -0
  34. tests/regscale/integrations/commercial/conftest.py +28 -0
  35. tests/regscale/integrations/commercial/microsoft_defender/__init__.py +1 -0
  36. tests/regscale/integrations/commercial/microsoft_defender/test_defender.py +1517 -0
  37. tests/regscale/integrations/commercial/microsoft_defender/test_defender_api.py +1748 -0
  38. tests/regscale/integrations/commercial/microsoft_defender/test_defender_constants.py +327 -0
  39. tests/regscale/integrations/commercial/microsoft_defender/test_defender_scanner.py +487 -0
  40. tests/regscale/integrations/commercial/test_aws.py +3731 -0
  41. tests/regscale/integrations/commercial/test_burp.py +48 -0
  42. tests/regscale/integrations/commercial/test_crowdstrike.py +49 -0
  43. tests/regscale/integrations/commercial/test_dependabot.py +341 -0
  44. tests/regscale/integrations/commercial/test_gcp.py +1543 -0
  45. tests/regscale/integrations/commercial/test_gitlab.py +549 -0
  46. tests/regscale/integrations/commercial/test_ip_mac_address_length.py +84 -0
  47. tests/regscale/integrations/commercial/test_jira.py +1814 -0
  48. tests/regscale/integrations/commercial/test_npm_audit.py +42 -0
  49. tests/regscale/integrations/commercial/test_okta.py +1228 -0
  50. tests/regscale/integrations/commercial/test_sarif_converter.py +251 -0
  51. tests/regscale/integrations/commercial/test_sicura.py +350 -0
  52. tests/regscale/integrations/commercial/test_snow.py +423 -0
  53. tests/regscale/integrations/commercial/test_sonarcloud.py +394 -0
  54. tests/regscale/integrations/commercial/test_sqlserver.py +186 -0
  55. tests/regscale/integrations/commercial/test_stig.py +33 -0
  56. tests/regscale/integrations/commercial/test_stig_mapper.py +153 -0
  57. tests/regscale/integrations/commercial/test_stigv2.py +406 -0
  58. tests/regscale/integrations/commercial/test_wiz.py +1469 -0
  59. tests/regscale/integrations/commercial/test_wiz_inventory.py +256 -0
  60. tests/regscale/integrations/commercial/wizv2/__init__.py +339 -0
  61. tests/regscale/integrations/commercial/wizv2/test_compliance_report_normalization.py +138 -0
  62. tests/regscale/integrations/commercial/wizv2/test_issue.py +343 -0
  63. tests/regscale/integrations/commercial/wizv2/test_wiz_click_client_id.py +165 -0
  64. tests/regscale/integrations/commercial/wizv2/test_wiz_compliance_report.py +1351 -0
  65. tests/regscale/integrations/commercial/wizv2/test_wiz_compliance_unit.py +341 -0
  66. tests/regscale/integrations/commercial/wizv2/test_wiz_control_normalization.py +138 -0
  67. tests/regscale/integrations/commercial/wizv2/test_wiz_policy_compliance.py +750 -0
  68. tests/regscale/integrations/commercial/wizv2/test_wiz_status_mapping.py +149 -0
  69. tests/regscale/integrations/commercial/wizv2/test_wizv2.py +264 -0
  70. tests/regscale/integrations/commercial/wizv2/test_wizv2_utils.py +624 -0
  71. tests/regscale/integrations/public/fedramp/__init__.py +1 -0
  72. tests/regscale/integrations/public/fedramp/test_poam_export_v5.py +1293 -0
  73. tests/regscale/integrations/test_control_matcher.py +1314 -0
  74. tests/regscale/integrations/test_control_matching.py +155 -0
  75. tests/regscale/integrations/test_milestone_manager.py +408 -0
  76. tests/regscale/models/test_issue.py +378 -1
  77. {regscale_cli-6.25.1.0.dist-info → regscale_cli-6.26.0.0.dist-info}/LICENSE +0 -0
  78. {regscale_cli-6.25.1.0.dist-info → regscale_cli-6.26.0.0.dist-info}/WHEEL +0 -0
  79. {regscale_cli-6.25.1.0.dist-info → regscale_cli-6.26.0.0.dist-info}/entry_points.txt +0 -0
  80. {regscale_cli-6.25.1.0.dist-info → regscale_cli-6.26.0.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,256 @@
1
+ import json
2
+ import pytest
3
+
4
+ from regscale.models.regscale_models import Asset, Component
5
+ from tests.fixtures.test_fixture import CLITestFixture
6
+
7
+
8
+ class TestWizInventory(CLITestFixture):
9
+ """
10
+ Unit tests for the WizInventory class methods.
11
+ """
12
+
13
+ SSP_ID = 51
14
+ SSP_MODULE = "securityplans"
15
+
16
+ wiz_projects = [
17
+ "e4cf6809-734e-4b7c-8456-3eb7bd179bc8",
18
+ "abeabc53-8774-4edf-91c0-61f228bedb1b",
19
+ ]
20
+ filter_by = {
21
+ "projectId": wiz_projects,
22
+ }
23
+ full_inventory = True
24
+ wiz_url = "https://api.us27.app.wiz.io/graphql"
25
+
26
+ @pytest.fixture
27
+ def test_wiz_data(self):
28
+ """
29
+ Load the test Wiz inventory data.
30
+ """
31
+ nodes = json.loads(
32
+ """[
33
+ {
34
+ "id": "23035da6-a1bd-4779-ab04-e3adbdec5947",
35
+ "name": "Mock Software Asset Linux Alpine",
36
+ "type": "HOSTED_TECHNOLOGY",
37
+ "subscriptionId": "c558b4cf-e0d7-49f5-a916-da8d8cd1b116",
38
+ "subscriptionExternalId": "23035da6-a1bd-4779-ab04-e3adbdec5947",
39
+ "graphEntity": {
40
+ "id": "23035da6-a1bd-4779-ab04-e3adbdec5947",
41
+ "providerUniqueId": "/subscriptions/23035da6-a1bd-4779-ab04-e3adbdec5947/resourcegroups/rg_tenantapp_test/providers/microsoft.storage/storageaccounts/dummystorage/blobservices/default/containers/1-test-asset-1",
42
+ "name": "Mock Software Asset Linux Alpine",
43
+ "type": "HOSTED_TECHNOLOGY",
44
+ "projects": [
45
+ {
46
+ "id": "608016f5-742b-4ea8-a70a-c95ba6eb6c29"
47
+ }
48
+ ],
49
+ "properties": {
50
+ "_environments": "test",
51
+ "_productIDs": "78e7e216-34c5-4871-a301-48e9322c9b89",
52
+ "_techIDs": "5555",
53
+ "_vertexID": "23d89702-28a7-4988-9864-bb3dc795b735",
54
+ "alternativeRegions": "westus",
55
+ "azurePublicAccess": false,
56
+ "cloudPlatform": "Azure",
57
+ "cloudProviderURL": "https://dummy-domain.com/#@domain.com/resource//subscriptions/23035da6-a1bd-4779-ab04-e3adbdec5947/resourcegroups/rg_tenantapp_test/providers/microsoft.storage/storageaccounts/dummystorage/blobservices/default/containers/1-test-asset-1",
58
+ "creationDate": "2023-01-10T23:30:36.8921214Z",
59
+ "encrypted": true,
60
+ "encryptionInTransit": true,
61
+ "externalId": "/subscriptions/23035da6-a1bd-4779-ab04-e3adbdec5947/resourcegroups/rg_tenantapp_test/providers/microsoft.storage/storageaccounts/dummytorage/blobservices/default/containers/1-test-asset-1",
62
+ "isPublic": false,
63
+ "loggingEnabled": true,
64
+ "name": "test-fixture-assets-1",
65
+ "nativeType": "Microsoft.Storage/storageAccounts/blobServices/containers",
66
+ "providerUniqueId": "/subscriptions/23035da6-a1bd-4779-ab04-e3adbdec5947/resourcegroups/rg_tenantapp_test/providers/microsoft.storage/storageaccounts/dummytorage/blobservices/default/containers/1-test-asset-1",
67
+ "publicExposure": "PublicExposureInvalid",
68
+ "region": "eastus",
69
+ "regionLocation": "US",
70
+ "regionType": "BucketRegionTypeDualRegion",
71
+ "resourceGroupExternalId": "/subscriptions/23035da6-a1bd-4779-ab04-e3adbdec5947/resourcegroups/rg_tenantapp_test",
72
+ "retentionPeriod": 2592000,
73
+ "status": "Active",
74
+ "subscriptionExternalId": "23035da6-a1bd-4779-ab04-e3adbdec5947",
75
+ "uniformACL": true,
76
+ "updateDate": "2023-12-08T00:39:54Z",
77
+ "updatedAt": "2024-01-09T17:40:12Z",
78
+ "versioningEnabled": true,
79
+ "webHostingEnabled": false,
80
+ "zone": null,
81
+ "port": 80,
82
+ "portEnd": 80,
83
+ "portRange": false,
84
+ "portStart": 80,
85
+ "portValidationResult": "Open",
86
+ "protocol": null,
87
+ "protocols": "HTTP",
88
+ "cpe": "cpe:/o:alpinelinux:alpine_linux:3.18.6",
89
+ "installedPackages": [
90
+ "alpine-baselayout (3.4.3-r1)",
91
+ "alpine-baselayout-data (3.4.3-r1)",
92
+ "alpine-keys (2.4-r1)"
93
+ ],
94
+ "techId": "1121",
95
+ "techName": "Linux Alpine",
96
+ "latestVersion": "3.18.6"
97
+ },
98
+ "firstSeen": "2024-02-01T06:15:10Z",
99
+ "lastSeen": "2024-02-15T13:04:10Z"
100
+ }
101
+ },
102
+ {
103
+ "id": "3056dce6-f1ae-4b94-a448-9de591e6f8a5",
104
+ "name": "Mock Software Asset Linux Alpine 2",
105
+ "type": "HOSTED_TECHNOLOGY",
106
+ "subscriptionId": "c558b4cf-e0d7-49f5-a916-da8d8cd1b116",
107
+ "subscriptionExternalId": "23035da6-a1bd-4779-ab04-e3adbdec5947",
108
+ "graphEntity": {
109
+ "id": "23035da6-a1bd-4779-ab04-e3adbdec5947",
110
+ "providerUniqueId": "/subscriptions/23035da6-a1bd-4779-ab04-e3adbdec5947/resourcegroups/rg_tenantapp_test/providers/microsoft.storage/storageaccounts/dummystorage/blobservices/default/containers/1-test-asset-1",
111
+ "name": "Mock Software Asset Linux Alpine",
112
+ "type": "HOSTED_TECHNOLOGY",
113
+ "projects": [
114
+ {
115
+ "id": "608016f5-742b-4ea8-a70a-c95ba6eb6c29"
116
+ }
117
+ ],
118
+ "properties": {
119
+ "_environments": "test",
120
+ "_productIDs": "78e7e216-34c5-4871-a301-48e9322c9b89",
121
+ "_techIDs": "5555",
122
+ "_vertexID": "23d89702-28a7-4988-9864-bb3dc795b735",
123
+ "alternativeRegions": "westus",
124
+ "azurePublicAccess": false,
125
+ "cloudPlatform": "Azure",
126
+ "cloudProviderURL": "https://dummy-domain.com/#@domain.com/resource//subscriptions/23035da6-a1bd-4779-ab04-e3adbdec5947/resourcegroups/rg_tenantapp_test/providers/microsoft.storage/storageaccounts/dummystorage/blobservices/default/containers/1-test-asset-1",
127
+ "creationDate": "2023-01-10T23:30:36.8921214Z",
128
+ "encrypted": true,
129
+ "encryptionInTransit": true,
130
+ "externalId": "/subscriptions/23035da6-a1bd-4779-ab04-e3adbdec5947/resourcegroups/rg_tenantapp_test/providers/microsoft.storage/storageaccounts/dummytorage/blobservices/default/containers/1-test-asset-1",
131
+ "isPublic": false,
132
+ "loggingEnabled": true,
133
+ "name": "test-fixture-assets-1",
134
+ "nativeType": "Microsoft.Storage/storageAccounts/blobServices/containers",
135
+ "providerUniqueId": "/subscriptions/23035da6-a1bd-4779-ab04-e3adbdec5947/resourcegroups/rg_tenantapp_test/providers/microsoft.storage/storageaccounts/dummytorage/blobservices/default/containers/1-test-asset-1",
136
+ "publicExposure": "PublicExposureInvalid",
137
+ "region": "eastus",
138
+ "regionLocation": "US",
139
+ "regionType": "BucketRegionTypeDualRegion",
140
+ "resourceGroupExternalId": "/subscriptions/23035da6-a1bd-4779-ab04-e3adbdec5947/resourcegroups/rg_tenantapp_test",
141
+ "retentionPeriod": 2592000,
142
+ "status": "Active",
143
+ "subscriptionExternalId": "23035da6-a1bd-4779-ab04-e3adbdec5947",
144
+ "uniformACL": true,
145
+ "updateDate": "2023-12-08T00:39:54Z",
146
+ "updatedAt": "2024-01-09T17:40:12Z",
147
+ "versioningEnabled": true,
148
+ "webHostingEnabled": false,
149
+ "zone": null,
150
+ "port": 80,
151
+ "portEnd": 80,
152
+ "portRange": false,
153
+ "portStart": 80,
154
+ "portValidationResult": "Open",
155
+ "protocol": null,
156
+ "protocols": "HTTP",
157
+ "cpe": "cpe:/o:alpinelinux:alpine_linux:3.18.6",
158
+ "installedPackages": [
159
+ "alpine-baselayout (3.4.3-r1)",
160
+ "alpine-baselayout-data (3.4.3-r1)",
161
+ "alpine-keys (2.4-r1)"
162
+ ],
163
+ "techId": "1121",
164
+ "techName": "Linux Alpine",
165
+ "latestVersion": "3.18.6"
166
+ },
167
+ "firstSeen": "2024-02-01T06:15:10Z",
168
+ "lastSeen": "2024-02-15T13:04:10Z"
169
+ }
170
+ },
171
+ {
172
+ "id": "d31f37cc-61e8-4b2a-be64-c078b9abdfa6",
173
+ "name": "Mock Software Asset Linux Alpine 3",
174
+ "type": "HOSTED_TECHNOLOGY",
175
+ "subscriptionId": "c558b4cf-e0d7-49f5-a916-da8d8cd1b116",
176
+ "subscriptionExternalId": "23035da6-a1bd-4779-ab04-e3adbdec5947",
177
+ "graphEntity": {
178
+ "id": "23035da6-a1bd-4779-ab04-e3adbdec5947",
179
+ "providerUniqueId": "/subscriptions/23035da6-a1bd-4779-ab04-e3adbdec5947/resourcegroups/rg_tenantapp_test/providers/microsoft.storage/storageaccounts/dummystorage/blobservices/default/containers/1-test-asset-1",
180
+ "name": "Mock Software Asset Linux Alpine",
181
+ "type": "HOSTED_TECHNOLOGY",
182
+ "projects": [
183
+ {
184
+ "id": "608016f5-742b-4ea8-a70a-c95ba6eb6c29"
185
+ }
186
+ ],
187
+ "properties": {
188
+ "_environments": "test",
189
+ "_productIDs": "78e7e216-34c5-4871-a301-48e9322c9b89",
190
+ "_techIDs": "5555",
191
+ "_vertexID": "23d89702-28a7-4988-9864-bb3dc795b735",
192
+ "alternativeRegions": "westus",
193
+ "azurePublicAccess": false,
194
+ "cloudPlatform": "Azure",
195
+ "cloudProviderURL": "https://dummy-domain.com/#@domain.com/resource//subscriptions/23035da6-a1bd-4779-ab04-e3adbdec5947/resourcegroups/rg_tenantapp_test/providers/microsoft.storage/storageaccounts/dummystorage/blobservices/default/containers/1-test-asset-1",
196
+ "creationDate": "2023-01-10T23:30:36.8921214Z",
197
+ "encrypted": true,
198
+ "encryptionInTransit": true,
199
+ "externalId": "/subscriptions/23035da6-a1bd-4779-ab04-e3adbdec5947/resourcegroups/rg_tenantapp_test/providers/microsoft.storage/storageaccounts/dummytorage/blobservices/default/containers/1-test-asset-1",
200
+ "isPublic": false,
201
+ "loggingEnabled": true,
202
+ "name": "test-fixture-assets-1",
203
+ "nativeType": "Microsoft.Storage/storageAccounts/blobServices/containers",
204
+ "providerUniqueId": "/subscriptions/23035da6-a1bd-4779-ab04-e3adbdec5947/resourcegroups/rg_tenantapp_test/providers/microsoft.storage/storageaccounts/dummytorage/blobservices/default/containers/1-test-asset-1",
205
+ "publicExposure": "PublicExposureInvalid",
206
+ "region": "eastus",
207
+ "regionLocation": "US",
208
+ "regionType": "BucketRegionTypeDualRegion",
209
+ "resourceGroupExternalId": "/subscriptions/23035da6-a1bd-4779-ab04-e3adbdec5947/resourcegroups/rg_tenantapp_test",
210
+ "retentionPeriod": 2592000,
211
+ "status": "Active",
212
+ "subscriptionExternalId": "23035da6-a1bd-4779-ab04-e3adbdec5947",
213
+ "uniformACL": true,
214
+ "updateDate": "2023-12-08T00:39:54Z",
215
+ "updatedAt": "2024-01-09T17:40:12Z",
216
+ "versioningEnabled": true,
217
+ "webHostingEnabled": false,
218
+ "zone": null,
219
+ "port": 80,
220
+ "portEnd": 80,
221
+ "portRange": false,
222
+ "portStart": 80,
223
+ "portValidationResult": "Open",
224
+ "protocol": null,
225
+ "protocols": "HTTP",
226
+ "cpe": "cpe:/o:alpinelinux:alpine_linux:3.18.6",
227
+ "installedPackages": [
228
+ "alpine-baselayout (3.4.3-r1)",
229
+ "alpine-baselayout-data (3.4.3-r1)",
230
+ "alpine-keys (2.4-r1)"
231
+ ],
232
+ "techId": "1121",
233
+ "techName": "Linux Alpine",
234
+ "latestVersion": "3.18.6"
235
+ },
236
+ "firstSeen": "2024-02-01T06:15:10Z",
237
+ "lastSeen": "2024-02-15T13:04:10Z"
238
+ }
239
+ }
240
+ ]"""
241
+ )
242
+ return nodes
243
+
244
+ def test_cleanup_inventory(self, test_wiz_data):
245
+ """
246
+ Test the cleanup_inventory method to ensure it removes any inventory items that are no longer present in Wiz.
247
+ """
248
+
249
+ assets = Asset.get_all_by_parent(parent_id=self.SSP_ID, parent_module=self.SSP_MODULE)
250
+ components = Component.get_all_by_parent(parent_id=self.SSP_ID, parent_module=self.SSP_MODULE)
251
+ for asset in assets:
252
+ if asset.wizId != "23035da6-a1bd-4779-ab04-e3adbdec5947":
253
+ asset.delete()
254
+ asset.delete()
255
+ for component in components:
256
+ component.delete()
@@ -0,0 +1,339 @@
1
+ """
2
+ Test data for the WizV2 integration
3
+ """
4
+
5
+ PLAN_ID = 3
6
+ PROJECT_ID = "84874a63-4af8-554a-9c67-e50c78f17f32"
7
+ IMAGE_NAME = "docker.io/regscale/regscale:5.41.0"
8
+ SHA_7b5f = "sha256:2fe823f07445e9ab5b126f19f31770a62740eff8f2b0135a5a184772181d7b5f"
9
+ SHA_375b = "sha256:f6b8d5292dd90c81bdedf7a81b1379b9c6e935938e1a46b75427a3ba8d35375b"
10
+ JULY_16_2024 = "2024-07-16T19:51:33Z"
11
+ JULY_09_2024 = "2024-07-09T17:15:00Z"
12
+ REGSCALE_DOCKER_URL = "docker.io/regscale/regscale"
13
+
14
+ asset_nodes = [
15
+ {
16
+ "id": "52c50c20-3d07-58ac-ab2e-c412bf35351b",
17
+ "name": IMAGE_NAME,
18
+ "type": "CONTAINER_IMAGE",
19
+ "subscriptionId": None,
20
+ "subscriptionExternalId": None,
21
+ "graphEntity": {
22
+ "id": "52c50c20-3d07-58ac-ab2e-c412bf35351b",
23
+ "providerUniqueId": None,
24
+ "name": IMAGE_NAME,
25
+ "type": "CONTAINER_IMAGE",
26
+ "projects": [{"id": "406bb94b-b8ae-5700-8fa0-c4c529d1d53f"}],
27
+ "properties": {
28
+ "_productIDs": ["406bb94b-b8ae-5700-8fa0-c4c529d1d53f"],
29
+ "_vertexID": "52c50c20-3d07-58ac-ab2e-c412bf35351b",
30
+ "architecture": "amd64",
31
+ "cloudPlatform": None,
32
+ "cloudProviderURL": None,
33
+ "digest": None,
34
+ "externalId": "docker.io##regscale/regscale:5.41.0",
35
+ "imageTags": "5.41.0",
36
+ "name": IMAGE_NAME,
37
+ "nativeType": "dockerHubImage",
38
+ "providerUniqueId": None,
39
+ "region": None,
40
+ "resourceGroupExternalId": None,
41
+ "status": "Active",
42
+ "subscriptionExternalId": None,
43
+ "uniqueUnorderedLayerIds": [
44
+ "sha256:d4fc045c9e3a848011de66f34b81f052d4f2c15a17bb196d637e526349601820",
45
+ "sha256:5eda52074615a611da6247776046258a553e90c6450368f50e2e20d125f4fca2",
46
+ "sha256:79b503757f21dd6e1fbf3883f3c170a29ebac82e1d0ab4298467c36e79f9b4c4",
47
+ "sha256:3a2446b9f9a730513eb6e998a56d11af2dfa02e1d46fa9966026429919bf0be8",
48
+ "sha256:c64131071bac812b52d4c2f515fba7e5d252ad2dc1ec7b7cd3882cc4aa4c9266",
49
+ "sha256:555e17ce64e7fd12035fb1bf7eecbf0f63b7776653f488d4fd9cff35ff10f392",
50
+ "sha256:df5dc9c1dcac3a2043fc44f68d5efbd4aa255d273826c16de4a0da5a7f91b569",
51
+ "sha256:5fb3b84a424a47e181cc8a4de1f78afa5f347b2ca6c14d5dd5cd5c320332e6f8",
52
+ "sha256:3ce05f582886f743f497269cebed1d7876fe7c4e794fd70b0a9968182a722d4a",
53
+ "sha256:c092c4c4051d32b62d7ab7d734b322d4959239517f2994593dfbec61a55b555e",
54
+ SHA_7b5f,
55
+ "sha256:c72712e86e45ac99e34ca3f60df02345fb4bdfb171c7ffb3e3cda409c77c7c6c",
56
+ "sha256:d6123721a15aa5ddd5b8a62744109f956342f4a48adfb1ff73566e7d482abf0e",
57
+ SHA_375b,
58
+ ],
59
+ "updatedAt": "2024-07-16T21:37:42Z",
60
+ "zone": None,
61
+ },
62
+ "technologies": [
63
+ {
64
+ "name": "Client Application",
65
+ "deploymentModel": "CLIENT_APPLICATION",
66
+ }
67
+ ],
68
+ "firstSeen": "2024-05-07T02:12:09.330868Z",
69
+ "lastSeen": "2024-07-17T05:21:08Z",
70
+ },
71
+ },
72
+ {
73
+ "id": "52c50c20-3d07-58ac-ab2e-c412bf35351c",
74
+ "name": IMAGE_NAME,
75
+ "type": "CONTAINER_IMAGE",
76
+ "subscriptionId": None,
77
+ "subscriptionExternalId": None,
78
+ "graphEntity": {
79
+ "id": "52c50c20-3d07-58ac-ab2e-c412bf35351c",
80
+ "providerUniqueId": None,
81
+ "name": "docker.io/regscale/regscale:5.43.0",
82
+ "type": "CONTAINER_IMAGE",
83
+ "projects": [{"id": "406bb94b-b8ae-5700-8fa0-c4c529d1d53f"}],
84
+ "properties": {
85
+ "_productIDs": ["406bb94b-b8ae-5700-8fa0-c4c529d1d53f"],
86
+ "_vertexID": "52c50c20-3d07-58ac-ab2e-c412bf35351c",
87
+ "architecture": "amd64",
88
+ "cloudPlatform": None,
89
+ "cloudProviderURL": None,
90
+ "digest": None,
91
+ "externalId": "docker.io##regscale/regscale:5.41.0",
92
+ "imageTags": "5.41.0",
93
+ "name": IMAGE_NAME,
94
+ "nativeType": "dockerHubImage",
95
+ "providerUniqueId": None,
96
+ "region": None,
97
+ "resourceGroupExternalId": None,
98
+ "status": "Active",
99
+ "subscriptionExternalId": None,
100
+ "uniqueUnorderedLayerIds": [
101
+ "sha256:d4fc045c9e3a848011de66f34b81f052d4f2c15a17bb196d637e526349601820",
102
+ "sha256:5eda52074615a611da6247776046258a553e90c6450368f50e2e20d125f4fca2",
103
+ "sha256:79b503757f21dd6e1fbf3883f3c170a29ebac82e1d0ab4298467c36e79f9b4c4",
104
+ "sha256:3a2446b9f9a730513eb6e998a56d11af2dfa02e1d46fa9966026429919bf0be8",
105
+ "sha256:c64131071bac812b52d4c2f515fba7e5d252ad2dc1ec7b7cd3882cc4aa4c9266",
106
+ "sha256:555e17ce64e7fd12035fb1bf7eecbf0f63b7776653f488d4fd9cff35ff10f392",
107
+ "sha256:df5dc9c1dcac3a2043fc44f68d5efbd4aa255d273826c16de4a0da5a7f91b569",
108
+ "sha256:5fb3b84a424a47e181cc8a4de1f78afa5f347b2ca6c14d5dd5cd5c320332e6f8",
109
+ "sha256:3ce05f582886f743f497269cebed1d7876fe7c4e794fd70b0a9968182a722d4a",
110
+ "sha256:c092c4c4051d32b62d7ab7d734b322d4959239517f2994593dfbec61a55b555e",
111
+ SHA_7b5f,
112
+ "sha256:c72712e86e45ac99e34ca3f60df02345fb4bdfb171c7ffb3e3cda409c77c7c6c",
113
+ "sha256:d6123721a15aa5ddd5b8a62744109f956342f4a48adfb1ff73566e7d482abf0e",
114
+ SHA_375b,
115
+ ],
116
+ "updatedAt": "2024-07-16T21:37:42Z",
117
+ "zone": None,
118
+ },
119
+ "technologies": [
120
+ {
121
+ "name": "Client Application",
122
+ "deploymentModel": "CLIENT_APPLICATION",
123
+ }
124
+ ],
125
+ "firstSeen": "2024-05-07T02:12:09.330868Z",
126
+ "lastSeen": "2024-07-17T05:21:08Z",
127
+ },
128
+ },
129
+ ]
130
+
131
+ vuln_nodes = [
132
+ {
133
+ "id": "695c47de-ca55-5e49-bc90-880578f2d7aa",
134
+ "name": "CVE-2024-38095",
135
+ "detailedName": ".NET Runtime",
136
+ "description": "File `/usr/share/dotnet/shared/Microsoft.NETCore.App/8.0.4/System.Core.dll` version `8.0.4` is vulnerable to `CVE-2024-38095`, which exists in versions `>= 8.0.0, < 8.0.7`.\n\nThe vulnerability was found in the [National Vulnerability Database (NVD)](https://nvd.nist.gov/vuln/detail/CVE-2024-38095) based on the CPE `cpe:2.3:a:microsoft:.net` with NVD severity: `High`.\n\nThe file is associated with the technology `.NET Runtime`.\n\nThe vulnerability can be remediated by updating `.NET Runtime` to `8.0.7` or higher.",
137
+ "severity": "HIGH",
138
+ "weightedSeverity": None,
139
+ "status": "OPEN",
140
+ "fixedVersion": "8.0.7",
141
+ "detectionMethod": "FILE_PATH",
142
+ "hasExploit": False,
143
+ "hasCisaKevExploit": False,
144
+ "cisaKevReleaseDate": None,
145
+ "cisaKevDueDate": None,
146
+ "firstDetectedAt": "2024-07-15T10:52:16.475997Z",
147
+ "lastDetectedAt": JULY_16_2024,
148
+ "resolvedAt": None,
149
+ "score": 7.5,
150
+ "validatedInRuntime": None,
151
+ "epssSeverity": "LOW",
152
+ "epssPercentile": 27.5,
153
+ "epssProbability": 0.1,
154
+ "dataSourceName": None,
155
+ "fixDate": "2024-07-09T00:00:00Z",
156
+ "fixDateBefore": None,
157
+ "publishedDate": JULY_09_2024,
158
+ "projects": [{"id": "406bb94b-b8ae-5700-8fa0-c4c529d1d53f"}],
159
+ "cvssv2": {
160
+ "attackVector": None,
161
+ "attackComplexity": None,
162
+ "confidentialityImpact": None,
163
+ "integrityImpact": None,
164
+ "privilegesRequired": None,
165
+ "userInteractionRequired": False,
166
+ },
167
+ "cvssv3": {
168
+ "attackVector": "NETWORK",
169
+ "attackComplexity": "LOW",
170
+ "confidentialityImpact": "NONE",
171
+ "integrityImpact": "NONE",
172
+ "privilegesRequired": "NONE",
173
+ "userInteractionRequired": False,
174
+ },
175
+ "ignoreRules": None,
176
+ "layerMetadata": {
177
+ "id": SHA_375b,
178
+ "details": 'RUN |1 BUILD_VERSION=5.41.0 /bin/sh -c echo {\\"version\\":\\"$BUILD_VERSION\\"} > /app/ClientApp/dist/assets/json/version.json # buildkit',
179
+ "isBaseLayer": False,
180
+ },
181
+ "vulnerableAsset": {
182
+ "id": "52c50c20-3d07-58ac-ab2e-c412bf35351b",
183
+ "type": "CONTAINER_IMAGE",
184
+ "name": IMAGE_NAME,
185
+ "cloudPlatform": None,
186
+ "subscriptionName": None,
187
+ "subscriptionExternalId": None,
188
+ "subscriptionId": None,
189
+ "tags": {},
190
+ "hasLimitedInternetExposure": None,
191
+ "hasWideInternetExposure": None,
192
+ "isAccessibleFromVPN": None,
193
+ "isAccessibleFromOtherVnets": None,
194
+ "isAccessibleFromOtherSubscriptions": None,
195
+ "repository": {"vertexId": "59200ae8-c121-5927-af98-d0e85a24edb2", "name": REGSCALE_DOCKER_URL},
196
+ "registry": {"vertexId": "45d2e5c2-d0ad-5031-8d31-e4109a2dcd6a", "name": None},
197
+ "scanSource": ["WORKLOAD"],
198
+ "executionControllers": [],
199
+ },
200
+ },
201
+ {
202
+ "id": "b0cbdc0c-5ad5-5a6a-acc8-f696f97742cf",
203
+ "name": "CVE-2024-35264",
204
+ "detailedName": "Microsoft.AspNetCore.App.Runtime.linux-musl-x64",
205
+ "description": "The library `Microsoft.AspNetCore.App.Runtime.linux-musl-x64` version `8.0.4` was detected in `Nuget library manager` located at `/app/System.Threading.RateLimiting.dll` and is vulnerable to `CVE-2024-35264`, which exists in versions `>= 8.0.0, <= 8.0.6`.\n\nThe vulnerability was found in the [Github Security Advisory](https://github.com/advisories/GHSA-chfc-9w6m-75rf) with vendor severity: `High` ([NVD](https://nvd.nist.gov/vuln/detail/CVE-2024-35264) severity: `High`).\n\nThe vulnerability can be remediated by updating the library to version `8.0.7` or higher, using `dotnet add package Microsoft.AspNetCore.App.Runtime.linux-musl-x64`.",
206
+ "severity": "CRITICAL",
207
+ "weightedSeverity": None,
208
+ "status": "OPEN",
209
+ "fixedVersion": "8.0.7",
210
+ "detectionMethod": "LIBRARY",
211
+ "hasExploit": False,
212
+ "hasCisaKevExploit": False,
213
+ "cisaKevReleaseDate": None,
214
+ "cisaKevDueDate": None,
215
+ "firstDetectedAt": "2024-07-11T19:14:18.389391Z",
216
+ "lastDetectedAt": JULY_16_2024,
217
+ "resolvedAt": None,
218
+ "score": 8.1,
219
+ "validatedInRuntime": None,
220
+ "epssSeverity": "LOW",
221
+ "epssPercentile": 39.4,
222
+ "epssProbability": 0.1,
223
+ "dataSourceName": None,
224
+ "fixDate": "2024-07-10T01:02:48Z",
225
+ "fixDateBefore": None,
226
+ "publishedDate": JULY_09_2024,
227
+ "projects": [{"id": "406bb94b-b8ae-5700-8fa0-c4c529d1d53f"}],
228
+ "cvssv2": {
229
+ "attackVector": None,
230
+ "attackComplexity": None,
231
+ "confidentialityImpact": None,
232
+ "integrityImpact": None,
233
+ "privilegesRequired": None,
234
+ "userInteractionRequired": False,
235
+ },
236
+ "cvssv3": {
237
+ "attackVector": "NETWORK",
238
+ "attackComplexity": "HIGH",
239
+ "confidentialityImpact": "HIGH",
240
+ "integrityImpact": "HIGH",
241
+ "privilegesRequired": "NONE",
242
+ "userInteractionRequired": False,
243
+ },
244
+ "ignoreRules": None,
245
+ "layerMetadata": {
246
+ "id": SHA_7b5f,
247
+ "details": "COPY /app . # buildkit",
248
+ "isBaseLayer": False,
249
+ },
250
+ "vulnerableAsset": {
251
+ "id": "52c50c20-3d07-58ac-ab2e-c412bf35351b",
252
+ "type": "CONTAINER_IMAGE",
253
+ "name": IMAGE_NAME,
254
+ "cloudPlatform": None,
255
+ "subscriptionName": None,
256
+ "subscriptionExternalId": None,
257
+ "subscriptionId": None,
258
+ "tags": {},
259
+ "hasLimitedInternetExposure": None,
260
+ "hasWideInternetExposure": None,
261
+ "isAccessibleFromVPN": None,
262
+ "isAccessibleFromOtherVnets": None,
263
+ "isAccessibleFromOtherSubscriptions": None,
264
+ "repository": {"vertexId": "59200ae8-c121-5927-af98-d0e85a24edb2", "name": REGSCALE_DOCKER_URL},
265
+ "registry": {"vertexId": "45d2e5c2-d0ad-5031-8d31-e4109a2dcd6a", "name": None},
266
+ "scanSource": ["WORKLOAD"],
267
+ "executionControllers": [],
268
+ },
269
+ },
270
+ {
271
+ "id": "b0cbdc0c-5ad5-5a6a-acc8-f696f97742cf",
272
+ "name": "CVE-2024-35264",
273
+ "detailedName": "Microsoft.AspNetCore.App.Runtime.linux-musl-x64",
274
+ "description": "The library `Microsoft.AspNetCore.App.Runtime.linux-musl-x64` version `8.0.4` was detected in `Nuget library manager` located at `/app/System.Threading.RateLimiting.dll` and is vulnerable to `CVE-2024-35264`, which exists in versions `>= 8.0.0, <= 8.0.6`.\n\nThe vulnerability was found in the [Github Security Advisory](https://github.com/advisories/GHSA-chfc-9w6m-75rf) with vendor severity: `High` ([NVD](https://nvd.nist.gov/vuln/detail/CVE-2024-35264) severity: `High`).\n\nThe vulnerability can be remediated by updating the library to version `8.0.7` or higher, using `dotnet add package Microsoft.AspNetCore.App.Runtime.linux-musl-x64`.",
275
+ "severity": "MEDIUM",
276
+ "weightedSeverity": None,
277
+ "status": "OPEN",
278
+ "fixedVersion": "8.0.7",
279
+ "detectionMethod": "LIBRARY",
280
+ "hasExploit": False,
281
+ "hasCisaKevExploit": False,
282
+ "cisaKevReleaseDate": None,
283
+ "cisaKevDueDate": None,
284
+ "firstDetectedAt": "2024-07-11T19:14:18.389391Z",
285
+ "lastDetectedAt": JULY_16_2024,
286
+ "resolvedAt": None,
287
+ "score": 8.1,
288
+ "validatedInRuntime": None,
289
+ "epssSeverity": "LOW",
290
+ "epssPercentile": 39.4,
291
+ "epssProbability": 0.1,
292
+ "dataSourceName": None,
293
+ "fixDate": "2024-07-10T01:02:48Z",
294
+ "fixDateBefore": None,
295
+ "publishedDate": JULY_09_2024,
296
+ "projects": [{"id": "406bb94b-b8ae-5700-8fa0-c4c529d1d53f"}],
297
+ "cvssv2": {
298
+ "attackVector": None,
299
+ "attackComplexity": None,
300
+ "confidentialityImpact": None,
301
+ "integrityImpact": None,
302
+ "privilegesRequired": None,
303
+ "userInteractionRequired": False,
304
+ },
305
+ "cvssv3": {
306
+ "attackVector": "NETWORK",
307
+ "attackComplexity": "HIGH",
308
+ "confidentialityImpact": "HIGH",
309
+ "integrityImpact": "HIGH",
310
+ "privilegesRequired": "NONE",
311
+ "userInteractionRequired": False,
312
+ },
313
+ "ignoreRules": None,
314
+ "layerMetadata": {
315
+ "id": SHA_7b5f,
316
+ "details": "COPY /app . # buildkit",
317
+ "isBaseLayer": False,
318
+ },
319
+ "vulnerableAsset": {
320
+ "id": "52c50c20-3d07-58ac-ab2e-c412bf35351c",
321
+ "type": "CONTAINER_IMAGE",
322
+ "name": IMAGE_NAME,
323
+ "cloudPlatform": None,
324
+ "subscriptionName": None,
325
+ "subscriptionExternalId": None,
326
+ "subscriptionId": None,
327
+ "tags": {},
328
+ "hasLimitedInternetExposure": None,
329
+ "hasWideInternetExposure": None,
330
+ "isAccessibleFromVPN": None,
331
+ "isAccessibleFromOtherVnets": None,
332
+ "isAccessibleFromOtherSubscriptions": None,
333
+ "repository": {"vertexId": "59200ae8-c121-5927-af98-d0e85a24edb2", "name": REGSCALE_DOCKER_URL},
334
+ "registry": {"vertexId": "45d2e5c2-d0ad-5031-8d31-e4109a2dcd6a", "name": None},
335
+ "scanSource": ["WORKLOAD"],
336
+ "executionControllers": [],
337
+ },
338
+ },
339
+ ]