regscale-cli 6.20.2.0__py3-none-any.whl → 6.20.3.1__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.
- regscale/__init__.py +1 -1
- regscale/integrations/commercial/__init__.py +13 -0
- regscale/integrations/commercial/axonius/__init__.py +0 -0
- regscale/integrations/commercial/axonius/axonius_integration.py +70 -0
- regscale/integrations/commercial/jira.py +6 -12
- regscale/integrations/commercial/synqly/assets.py +10 -0
- regscale/integrations/commercial/wizv2/constants.py +4 -0
- regscale/integrations/commercial/wizv2/scanner.py +67 -14
- regscale/integrations/commercial/wizv2/utils.py +24 -10
- regscale/integrations/commercial/wizv2/variables.py +7 -0
- regscale/integrations/public/fedramp/fedramp_cis_crm.py +67 -13
- regscale/integrations/scanner_integration.py +8 -2
- regscale/integrations/variables.py +1 -0
- regscale/models/app_models/import_validater.py +3 -1
- regscale/models/integration_models/axonius_models/__init__.py +0 -0
- regscale/models/integration_models/axonius_models/connectors/__init__.py +3 -0
- regscale/models/integration_models/axonius_models/connectors/assets.py +111 -0
- regscale/models/integration_models/cisa_kev_data.json +109 -6
- regscale/models/integration_models/synqly_models/capabilities.json +1 -1
- regscale/models/integration_models/synqly_models/param.py +1 -1
- regscale/models/regscale_models/__init__.py +2 -1
- regscale/models/regscale_models/issue.py +1 -0
- regscale/models/regscale_models/risk_issue_mapping.py +61 -0
- regscale/utils/graphql_client.py +4 -4
- {regscale_cli-6.20.2.0.dist-info → regscale_cli-6.20.3.1.dist-info}/METADATA +13 -9
- {regscale_cli-6.20.2.0.dist-info → regscale_cli-6.20.3.1.dist-info}/RECORD +30 -24
- {regscale_cli-6.20.2.0.dist-info → regscale_cli-6.20.3.1.dist-info}/LICENSE +0 -0
- {regscale_cli-6.20.2.0.dist-info → regscale_cli-6.20.3.1.dist-info}/WHEEL +0 -0
- {regscale_cli-6.20.2.0.dist-info → regscale_cli-6.20.3.1.dist-info}/entry_points.txt +0 -0
- {regscale_cli-6.20.2.0.dist-info → regscale_cli-6.20.3.1.dist-info}/top_level.txt +0 -0
|
@@ -12,7 +12,7 @@ class Param(BaseModel):
|
|
|
12
12
|
optional: bool = Field(description="Whether the parameter is optional or not", alias="optional", default=False)
|
|
13
13
|
data_type: Optional[Any] = Field(None, description="The allowed data type of the parameter")
|
|
14
14
|
click_type: Optional[str] = Field(None, description="The click type of the parameter")
|
|
15
|
-
default: Optional[Any] = Field(
|
|
15
|
+
default: Optional[Any] = Field(None, description="The default value of the parameter")
|
|
16
16
|
|
|
17
17
|
@model_validator(mode="before")
|
|
18
18
|
def set_data_types(cls, values: dict) -> dict:
|
|
@@ -22,9 +22,9 @@ from .control_test_result import *
|
|
|
22
22
|
from .custom_field import *
|
|
23
23
|
from .data import *
|
|
24
24
|
from .data_center import *
|
|
25
|
+
from .email import *
|
|
25
26
|
from .evidence import *
|
|
26
27
|
from .evidence_mapping import *
|
|
27
|
-
from .email import *
|
|
28
28
|
from .facility import *
|
|
29
29
|
from .file import *
|
|
30
30
|
from .implementation_objective import *
|
|
@@ -53,6 +53,7 @@ from .questionnaire_instance import *
|
|
|
53
53
|
from .reference import *
|
|
54
54
|
from .requirement import *
|
|
55
55
|
from .risk import *
|
|
56
|
+
from .risk_issue_mapping import *
|
|
56
57
|
from .risk_trend import *
|
|
57
58
|
from .sbom import *
|
|
58
59
|
from .scan_history import *
|
|
@@ -188,6 +188,7 @@ class Issue(RegScaleModel):
|
|
|
188
188
|
vulnerabilityId: Optional[int] = None
|
|
189
189
|
riskAdjustment: Optional[str] = None
|
|
190
190
|
controlImplementationIds: List[int] = Field(default_factory=list)
|
|
191
|
+
affectedControls: Optional[str] = None
|
|
191
192
|
|
|
192
193
|
@staticmethod
|
|
193
194
|
def is_multiple_controls_supported() -> bool:
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
# -*- coding: utf-8 -*-
|
|
3
|
+
"""Risk Issue Mapping Model"""
|
|
4
|
+
|
|
5
|
+
from pydantic import ConfigDict, Field
|
|
6
|
+
|
|
7
|
+
from regscale.models.regscale_models.regscale_model import RegScaleModel
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class RiskIssueMapping(RegScaleModel):
|
|
11
|
+
"""Pydantic model for Risk Issue Mapping."""
|
|
12
|
+
|
|
13
|
+
_module_slug = "riskissuemapping"
|
|
14
|
+
|
|
15
|
+
id: int = Field(default=0, description="Unique identifier for the risk issue mapping")
|
|
16
|
+
uuid: str = Field(default="", description="UUID for the risk issue mapping")
|
|
17
|
+
riskId: int = Field(description="ID of the associated risk")
|
|
18
|
+
issueId: int = Field(description="ID of the associated issue")
|
|
19
|
+
|
|
20
|
+
@staticmethod
|
|
21
|
+
def _get_additional_endpoints() -> ConfigDict:
|
|
22
|
+
"""
|
|
23
|
+
Get additional endpoints for the RiskIssueMapping model, using {model_slug} as a placeholder for the model slug.
|
|
24
|
+
|
|
25
|
+
:return: A dictionary of additional endpoints
|
|
26
|
+
:rtype: ConfigDict
|
|
27
|
+
"""
|
|
28
|
+
return ConfigDict( # type: ignore
|
|
29
|
+
filter_mappings="/api/{model_slug}/filterRiskIssueMappings/{intRisk}/{intIssues}/{strSearch}/{intPage}/{intPageSize}",
|
|
30
|
+
find_mappings="/api/{model_slug}/findMappings/{intID}",
|
|
31
|
+
get_mappings_as_issues="/api/{model_slug}/getMappingsAsIssues/{intID}",
|
|
32
|
+
get_mappings_as_risks="/api/{model_slug}/getMappingsAsRisks/{intID}",
|
|
33
|
+
)
|
|
34
|
+
|
|
35
|
+
@classmethod
|
|
36
|
+
def get_mappings_as_issue(cls, risk_id: int) -> list[dict]:
|
|
37
|
+
"""
|
|
38
|
+
Filter mappings by risk.
|
|
39
|
+
|
|
40
|
+
:param int risk_id: The ID of the risk to filter mappings by
|
|
41
|
+
:return: A list of RiskIssueMapping objects
|
|
42
|
+
:rtype: list[dict]
|
|
43
|
+
"""
|
|
44
|
+
endpoint = cls.get_endpoint("get_mappings_as_issues").format(model_slug=cls._module_slug, intID=risk_id)
|
|
45
|
+
response = cls._get_api_handler().get(endpoint)
|
|
46
|
+
response.raise_for_status()
|
|
47
|
+
return response.json()
|
|
48
|
+
|
|
49
|
+
@classmethod
|
|
50
|
+
def get_mappings_as_risks(cls, issue_id: int) -> list[dict]:
|
|
51
|
+
"""
|
|
52
|
+
Filter mappings by issue.
|
|
53
|
+
|
|
54
|
+
:param int issue_id: The ID of the issue to filter mappings by
|
|
55
|
+
:return: A list of RiskIssueMapping objects
|
|
56
|
+
:rtype: list[dict]
|
|
57
|
+
"""
|
|
58
|
+
endpoint = cls.get_endpoint("get_mappings_as_risks").format(model_slug=cls._module_slug, intID=issue_id)
|
|
59
|
+
response = cls._get_api_handler().get(endpoint)
|
|
60
|
+
response.raise_for_status()
|
|
61
|
+
return response.json()
|
regscale/utils/graphql_client.py
CHANGED
|
@@ -60,10 +60,10 @@ class PaginatedGraphQLClient:
|
|
|
60
60
|
has_next_page = True
|
|
61
61
|
page_info_default = {"hasNextPage": False, "endCursor": None}
|
|
62
62
|
while has_next_page:
|
|
63
|
-
data
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
page_info = data.get(topic_key, {}).get("pageInfo"
|
|
63
|
+
if data := self.fetch_page(variables=variables, after=next_cursor):
|
|
64
|
+
if nodes := data.get(topic_key, {}).get("nodes"):
|
|
65
|
+
results.extend(nodes)
|
|
66
|
+
page_info = data.get(topic_key, {}).get("pageInfo") or page_info_default
|
|
67
67
|
logger.debug(f"pageInfo: {page_info}")
|
|
68
68
|
has_next_page = page_info.get("hasNextPage", False)
|
|
69
69
|
next_cursor = page_info.get("endCursor", None)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: regscale-cli
|
|
3
|
-
Version: 6.20.
|
|
3
|
+
Version: 6.20.3.1
|
|
4
4
|
Summary: Command Line Interface (CLI) for bulk processing/loading data into RegScale
|
|
5
5
|
Home-page: https://github.com/RegScale/regscale-cli
|
|
6
6
|
Author: Travis Howerton
|
|
@@ -62,7 +62,7 @@ Requires-Dist: python-jwt ==4.1.0
|
|
|
62
62
|
Requires-Dist: pyxnat ==1.5.*
|
|
63
63
|
Requires-Dist: rapidfuzz ~=3.7
|
|
64
64
|
Requires-Dist: regscale-python-ssp
|
|
65
|
-
Requires-Dist: requests >=2.
|
|
65
|
+
Requires-Dist: requests >=2.32.0
|
|
66
66
|
Requires-Dist: rich ==13.8.0
|
|
67
67
|
Requires-Dist: setuptools
|
|
68
68
|
Requires-Dist: simple-salesforce
|
|
@@ -129,6 +129,7 @@ Requires-Dist: pandas ; extra == 'airflow'
|
|
|
129
129
|
Requires-Dist: pathlib ~=1.0.1 ; extra == 'airflow'
|
|
130
130
|
Requires-Dist: pdfplumber ==0.7.6 ; extra == 'airflow'
|
|
131
131
|
Requires-Dist: pre-commit ; extra == 'airflow'
|
|
132
|
+
Requires-Dist: protobuf >=4.25.8 ; extra == 'airflow'
|
|
132
133
|
Requires-Dist: psutil ~=6.1.0 ; extra == 'airflow'
|
|
133
134
|
Requires-Dist: psycopg2-binary >=2.9.0 ; extra == 'airflow'
|
|
134
135
|
Requires-Dist: pyTenable ; extra == 'airflow'
|
|
@@ -142,7 +143,7 @@ Requires-Dist: python-jwt ==4.1.0 ; extra == 'airflow'
|
|
|
142
143
|
Requires-Dist: pyxnat ==1.5.* ; extra == 'airflow'
|
|
143
144
|
Requires-Dist: rapidfuzz ~=3.7 ; extra == 'airflow'
|
|
144
145
|
Requires-Dist: regscale-python-ssp ; extra == 'airflow'
|
|
145
|
-
Requires-Dist: requests >=2.
|
|
146
|
+
Requires-Dist: requests >=2.32.0 ; extra == 'airflow'
|
|
146
147
|
Requires-Dist: rich ==13.8.0 ; extra == 'airflow'
|
|
147
148
|
Requires-Dist: setuptools ; extra == 'airflow'
|
|
148
149
|
Requires-Dist: setuptools >=69.0.0 ; extra == 'airflow'
|
|
@@ -213,6 +214,7 @@ Requires-Dist: pathlib ~=1.0.1 ; extra == 'airflow-azure'
|
|
|
213
214
|
Requires-Dist: pdfplumber ==0.7.6 ; extra == 'airflow-azure'
|
|
214
215
|
Requires-Dist: pendulum >=2.1.2 ; extra == 'airflow-azure'
|
|
215
216
|
Requires-Dist: pre-commit ; extra == 'airflow-azure'
|
|
217
|
+
Requires-Dist: protobuf >=4.25.8 ; extra == 'airflow-azure'
|
|
216
218
|
Requires-Dist: psutil ~=6.1.0 ; extra == 'airflow-azure'
|
|
217
219
|
Requires-Dist: psycopg2-binary >=2.9.0 ; extra == 'airflow-azure'
|
|
218
220
|
Requires-Dist: pyTenable ; extra == 'airflow-azure'
|
|
@@ -226,7 +228,7 @@ Requires-Dist: python-jwt ==4.1.0 ; extra == 'airflow-azure'
|
|
|
226
228
|
Requires-Dist: pyxnat ==1.5.* ; extra == 'airflow-azure'
|
|
227
229
|
Requires-Dist: rapidfuzz ~=3.7 ; extra == 'airflow-azure'
|
|
228
230
|
Requires-Dist: regscale-python-ssp ; extra == 'airflow-azure'
|
|
229
|
-
Requires-Dist: requests >=2.
|
|
231
|
+
Requires-Dist: requests >=2.32.0 ; extra == 'airflow-azure'
|
|
230
232
|
Requires-Dist: rich ==13.8.0 ; extra == 'airflow-azure'
|
|
231
233
|
Requires-Dist: setuptools ; extra == 'airflow-azure'
|
|
232
234
|
Requires-Dist: setuptools >=69.0.0 ; extra == 'airflow-azure'
|
|
@@ -295,6 +297,7 @@ Requires-Dist: pandas ; extra == 'airflow-sqlserver'
|
|
|
295
297
|
Requires-Dist: pathlib ~=1.0.1 ; extra == 'airflow-sqlserver'
|
|
296
298
|
Requires-Dist: pdfplumber ==0.7.6 ; extra == 'airflow-sqlserver'
|
|
297
299
|
Requires-Dist: pre-commit ; extra == 'airflow-sqlserver'
|
|
300
|
+
Requires-Dist: protobuf >=4.25.8 ; extra == 'airflow-sqlserver'
|
|
298
301
|
Requires-Dist: psutil ~=6.1.0 ; extra == 'airflow-sqlserver'
|
|
299
302
|
Requires-Dist: psycopg2-binary >=2.9.0 ; extra == 'airflow-sqlserver'
|
|
300
303
|
Requires-Dist: pyTenable ; extra == 'airflow-sqlserver'
|
|
@@ -310,7 +313,7 @@ Requires-Dist: python-jwt ==4.1.0 ; extra == 'airflow-sqlserver'
|
|
|
310
313
|
Requires-Dist: pyxnat ==1.5.* ; extra == 'airflow-sqlserver'
|
|
311
314
|
Requires-Dist: rapidfuzz ~=3.7 ; extra == 'airflow-sqlserver'
|
|
312
315
|
Requires-Dist: regscale-python-ssp ; extra == 'airflow-sqlserver'
|
|
313
|
-
Requires-Dist: requests >=2.
|
|
316
|
+
Requires-Dist: requests >=2.32.0 ; extra == 'airflow-sqlserver'
|
|
314
317
|
Requires-Dist: rich ==13.8.0 ; extra == 'airflow-sqlserver'
|
|
315
318
|
Requires-Dist: setuptools ; extra == 'airflow-sqlserver'
|
|
316
319
|
Requires-Dist: setuptools >=69.0.0 ; extra == 'airflow-sqlserver'
|
|
@@ -386,6 +389,7 @@ Requires-Dist: pandas ; extra == 'all'
|
|
|
386
389
|
Requires-Dist: pathlib ~=1.0.1 ; extra == 'all'
|
|
387
390
|
Requires-Dist: pdfplumber ==0.7.6 ; extra == 'all'
|
|
388
391
|
Requires-Dist: pre-commit ; extra == 'all'
|
|
392
|
+
Requires-Dist: protobuf >=4.25.8 ; extra == 'all'
|
|
389
393
|
Requires-Dist: psutil ~=6.1.0 ; extra == 'all'
|
|
390
394
|
Requires-Dist: psycopg2-binary >=2.9.0 ; extra == 'all'
|
|
391
395
|
Requires-Dist: pyTenable ; extra == 'all'
|
|
@@ -399,7 +403,7 @@ Requires-Dist: python-jwt ==4.1.0 ; extra == 'all'
|
|
|
399
403
|
Requires-Dist: pyxnat ==1.5.* ; extra == 'all'
|
|
400
404
|
Requires-Dist: rapidfuzz ~=3.7 ; extra == 'all'
|
|
401
405
|
Requires-Dist: regscale-python-ssp ; extra == 'all'
|
|
402
|
-
Requires-Dist: requests >=2.
|
|
406
|
+
Requires-Dist: requests >=2.32.0 ; extra == 'all'
|
|
403
407
|
Requires-Dist: rich ==13.8.0 ; extra == 'all'
|
|
404
408
|
Requires-Dist: setuptools ; extra == 'all'
|
|
405
409
|
Requires-Dist: setuptools >=69.0.0 ; extra == 'all'
|
|
@@ -462,7 +466,7 @@ Requires-Dist: python-jwt ==4.1.0 ; extra == 'ansible'
|
|
|
462
466
|
Requires-Dist: pyxnat ==1.5.* ; extra == 'ansible'
|
|
463
467
|
Requires-Dist: rapidfuzz ~=3.7 ; extra == 'ansible'
|
|
464
468
|
Requires-Dist: regscale-python-ssp ; extra == 'ansible'
|
|
465
|
-
Requires-Dist: requests >=2.
|
|
469
|
+
Requires-Dist: requests >=2.32.0 ; extra == 'ansible'
|
|
466
470
|
Requires-Dist: rich ==13.8.0 ; extra == 'ansible'
|
|
467
471
|
Requires-Dist: setuptools ; extra == 'ansible'
|
|
468
472
|
Requires-Dist: simple-salesforce ; extra == 'ansible'
|
|
@@ -542,7 +546,7 @@ Requires-Dist: pyxnat ==1.5.* ; extra == 'dev'
|
|
|
542
546
|
Requires-Dist: radon ; extra == 'dev'
|
|
543
547
|
Requires-Dist: rapidfuzz ~=3.7 ; extra == 'dev'
|
|
544
548
|
Requires-Dist: regscale-python-ssp ; extra == 'dev'
|
|
545
|
-
Requires-Dist: requests >=2.
|
|
549
|
+
Requires-Dist: requests >=2.32.0 ; extra == 'dev'
|
|
546
550
|
Requires-Dist: rich ==13.8.0 ; extra == 'dev'
|
|
547
551
|
Requires-Dist: setuptools ; extra == 'dev'
|
|
548
552
|
Requires-Dist: simple-salesforce ; extra == 'dev'
|
|
@@ -614,7 +618,7 @@ Requires-Dist: python-jwt ==4.1.0 ; extra == 'server'
|
|
|
614
618
|
Requires-Dist: pyxnat ==1.5.* ; extra == 'server'
|
|
615
619
|
Requires-Dist: rapidfuzz ~=3.7 ; extra == 'server'
|
|
616
620
|
Requires-Dist: regscale-python-ssp ; extra == 'server'
|
|
617
|
-
Requires-Dist: requests >=2.
|
|
621
|
+
Requires-Dist: requests >=2.32.0 ; extra == 'server'
|
|
618
622
|
Requires-Dist: rich ==13.8.0 ; extra == 'server'
|
|
619
623
|
Requires-Dist: setuptools ; extra == 'server'
|
|
620
624
|
Requires-Dist: simple-salesforce ; extra == 'server'
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
regscale/__init__.py,sha256=
|
|
1
|
+
regscale/__init__.py,sha256=RG6C5KtXDhVHRdvVYoR3hKw6H5VS3ieSg-5VpUtS-bQ,25
|
|
2
2
|
regscale/regscale.py,sha256=2mNIkLGtQjIvl0m255iV20_3DK4oRSTlXYxe-8XQpeo,30764
|
|
3
3
|
regscale/airflow/__init__.py,sha256=yMwN0Bz4JbM0nl5qY_hPegxo_O2ilhTOL9PY5Njhn-s,270
|
|
4
4
|
regscale/airflow/click_dags.py,sha256=H3SUR5jkvInNMv1gu-VG-Ja_H-kH145CpQYNalWNAbE,4520
|
|
@@ -111,9 +111,9 @@ regscale/integrations/api_paginator.py,sha256=73rjaNM9mGv8evHAeoObXEjZPg-bJuGPo6
|
|
|
111
111
|
regscale/integrations/api_paginator_example.py,sha256=lEuYI-xEGcjnXuIzbCobCP0YRuukLF0s8S3d382SAH4,12119
|
|
112
112
|
regscale/integrations/integration_override.py,sha256=PH7t_bf-RCe_it3FJ61tlKX5UghqHuSEQNJWDfCamAg,5480
|
|
113
113
|
regscale/integrations/jsonl_scanner_integration.py,sha256=l8nq_T3rE1XX-6HxrNHm3xzxCNWbIjxQvGMdtZWs7KQ,57003
|
|
114
|
-
regscale/integrations/scanner_integration.py,sha256=
|
|
115
|
-
regscale/integrations/variables.py,sha256=
|
|
116
|
-
regscale/integrations/commercial/__init__.py,sha256=
|
|
114
|
+
regscale/integrations/scanner_integration.py,sha256=PMP-BjSLDvBvdbc2z13zb5w3-HWfv0O41SSyj3TrLQE,135563
|
|
115
|
+
regscale/integrations/variables.py,sha256=AyaG286U-ek2uQ4qeYBAG3eh_QnlBlth1PKZI5Je5sc,2212
|
|
116
|
+
regscale/integrations/commercial/__init__.py,sha256=auu70lB2YZq4zRza4Jg8h9eQeHOAPIXrIEbAOgMBN8g,13838
|
|
117
117
|
regscale/integrations/commercial/ad.py,sha256=YXSmK8vRf6yi2GnREGa5GrE6GelhFrLj44SY8AO1pK0,15509
|
|
118
118
|
regscale/integrations/commercial/burp.py,sha256=3BLNKLfwL1x7jfhd8MJD6hdHEpj58pOEtrtCkn2hcWA,3344
|
|
119
119
|
regscale/integrations/commercial/cpe.py,sha256=eXZeDXicnp1yYgKuyKcthQUYxXi2Pgc__UD8lUqr5H0,4924
|
|
@@ -123,7 +123,7 @@ regscale/integrations/commercial/dependabot.py,sha256=V4VbHbwrxHfe7eCilJ7U_MBeIO
|
|
|
123
123
|
regscale/integrations/commercial/ecr.py,sha256=47iCigssDANlfHYGznU4rfOq6O-1QMGOuP8lBmn7Df0,2693
|
|
124
124
|
regscale/integrations/commercial/gitlab.py,sha256=dzfqJQ68QI1ee_BriNMyPuXLkzOhc2vR1hhVfq2j13Y,12496
|
|
125
125
|
regscale/integrations/commercial/ibm.py,sha256=RQrivu4tOl_8gh5iUa9m9sGbHusphP8rnU2BZZc9IMs,2772
|
|
126
|
-
regscale/integrations/commercial/jira.py,sha256=
|
|
126
|
+
regscale/integrations/commercial/jira.py,sha256=ZGR7aWYqHINp_ZDkaiVbkwmtBMH7ShcIJbW0zsAlDw4,45676
|
|
127
127
|
regscale/integrations/commercial/nexpose.py,sha256=lqPw9yk7ywHDoLwPeXKSz9DaLyVzOQIKOotCgayVTNE,2853
|
|
128
128
|
regscale/integrations/commercial/okta.py,sha256=VNwE848xiBxkha4DibkhLJN-fi0T8rLMd30PPAmRjpk,30837
|
|
129
129
|
regscale/integrations/commercial/prisma.py,sha256=shr71NkaSfcg2m-Ak6EVV9ozAFPibiOoehEty24MtyA,2841
|
|
@@ -151,6 +151,8 @@ regscale/integrations/commercial/aws/inventory/resources/integration.py,sha256=m
|
|
|
151
151
|
regscale/integrations/commercial/aws/inventory/resources/networking.py,sha256=CkPBE2FA5dyaTjUVvVTFjoVCVO7NDs7dKjBvUs3kKYA,11597
|
|
152
152
|
regscale/integrations/commercial/aws/inventory/resources/security.py,sha256=EWH2f_kFUqqAYdcBQ0gNzXTIcpMcJU02-robtiROFOc,10459
|
|
153
153
|
regscale/integrations/commercial/aws/inventory/resources/storage.py,sha256=fEikYzdNATpXwqhHw41yYyyWUVpC-52Iif9NzXThVkI,3427
|
|
154
|
+
regscale/integrations/commercial/axonius/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
155
|
+
regscale/integrations/commercial/axonius/axonius_integration.py,sha256=Zqv8qKn8oNVHmjF-rzaEJIc21knip4nGNxLl37OcbyE,2320
|
|
154
156
|
regscale/integrations/commercial/azure/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
155
157
|
regscale/integrations/commercial/azure/common.py,sha256=yc_yjfPrcgV9ulcMkQQhoqNB9JBwXYlZGQNUuxUpc3A,1078
|
|
156
158
|
regscale/integrations/commercial/azure/intune.py,sha256=6viMZqZc8EaO8a5L2FfDy6v60ExFjCxZ-t59W-Uon4I,17219
|
|
@@ -203,7 +205,7 @@ regscale/integrations/commercial/stigv2/ckl_parser.py,sha256=RPrDGsKqAbTJMsJd3AY
|
|
|
203
205
|
regscale/integrations/commercial/stigv2/click_commands.py,sha256=-765vFF03aSjBxU9SYCpca7x8fPaoTDNQtbk4fKuwYw,2792
|
|
204
206
|
regscale/integrations/commercial/stigv2/stig_integration.py,sha256=-UlfL0BBI3jFGotctOJyTCRAU9zIXW6mwU7ySrRXE9U,11573
|
|
205
207
|
regscale/integrations/commercial/synqly/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
206
|
-
regscale/integrations/commercial/synqly/assets.py,sha256=
|
|
208
|
+
regscale/integrations/commercial/synqly/assets.py,sha256=UfQZi0bJEtICpwmfiBsHRnahX5n4zfA2ad6EndyIZwY,3017
|
|
207
209
|
regscale/integrations/commercial/synqly/edr.py,sha256=qPpsnk9joSoJnbI4rI2qz5LrMUU9bTwNC-3IYHwsfxs,2708
|
|
208
210
|
regscale/integrations/commercial/synqly/ticketing.py,sha256=FvrVyDGvqlDh4znEaF77cuoDZKhIUI5U6d5U2g-rdWI,6399
|
|
209
211
|
regscale/integrations/commercial/synqly/vulnerabilities.py,sha256=B8GwfKVDdoOIikjZO-4KqDNf-ApXlcJNkwmno0FjDOQ,7842
|
|
@@ -223,14 +225,14 @@ regscale/integrations/commercial/trivy/scanner.py,sha256=iiwTvjqRlLRgQvCs_FP0j83
|
|
|
223
225
|
regscale/integrations/commercial/wizv2/WizDataMixin.py,sha256=s7F_rVrP9IZa_x_vh3MswR7W_UBHRfd4kHGVsNX4ips,3606
|
|
224
226
|
regscale/integrations/commercial/wizv2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
225
227
|
regscale/integrations/commercial/wizv2/click.py,sha256=eHIS9TdbZQ2Iu57uwbj3ep0m5gpI0HaK5W_ReL892Y4,12232
|
|
226
|
-
regscale/integrations/commercial/wizv2/constants.py,sha256=
|
|
228
|
+
regscale/integrations/commercial/wizv2/constants.py,sha256=DgxTbtnUixK-IOnmbie7-Hosip3huJPDeRn0GzKlqJU,22854
|
|
227
229
|
regscale/integrations/commercial/wizv2/issue.py,sha256=MbND-Ir4pU4i0OtxsjbRxn_i8Ibll6gt-qYQK2ObstA,13361
|
|
228
230
|
regscale/integrations/commercial/wizv2/models.py,sha256=hZ6557LJfcp1_NRbMM0V_G1erz1jEFmsuKPn86kXE54,5667
|
|
229
231
|
regscale/integrations/commercial/wizv2/parsers.py,sha256=YcFOGdYZZ17hj2pcRMC9Ho2wPY94dfJ4hHwqTR5BB6c,11095
|
|
230
232
|
regscale/integrations/commercial/wizv2/sbom.py,sha256=QcGaYiBGtZ3mBcbo-KGl-I2u6QHKAIinTk26LPy0Kng,4466
|
|
231
|
-
regscale/integrations/commercial/wizv2/scanner.py,sha256=
|
|
232
|
-
regscale/integrations/commercial/wizv2/utils.py,sha256=
|
|
233
|
-
regscale/integrations/commercial/wizv2/variables.py,sha256=
|
|
233
|
+
regscale/integrations/commercial/wizv2/scanner.py,sha256=vPKTV6RhA2_00lBHVsk7jD68Lh_DReCSsmHnSHp8c4w,20964
|
|
234
|
+
regscale/integrations/commercial/wizv2/utils.py,sha256=NlRkIgYY10a9tkRO70m_zE-nXC5svsZuvxfL3l3fEK0,32249
|
|
235
|
+
regscale/integrations/commercial/wizv2/variables.py,sha256=W_m_TSLUDaqyKJZHukp6i8nftFuhQKb4WRVu9lIyMAs,2485
|
|
234
236
|
regscale/integrations/commercial/wizv2/wiz_auth.py,sha256=BpQTYJn3u0QiWC2IAw-bunZpBPsJtDJgOsC2zOL_UU4,5554
|
|
235
237
|
regscale/integrations/integration/__init__.py,sha256=WJgPLnEahD94QLE8NR8QCzlf8xk2ix76_WPDlf98ezU,70
|
|
236
238
|
regscale/integrations/integration/integration.py,sha256=pr_fbqBieYbqp3PdBjuqKuZCYFf0kF4GkFdlViTKG54,586
|
|
@@ -249,7 +251,7 @@ regscale/integrations/public/fedramp/appendix_parser.py,sha256=u3Q_NHxAvYTQ1RAr1
|
|
|
249
251
|
regscale/integrations/public/fedramp/click.py,sha256=8JbWRidFZ9EFoOTp-bwE584u23TzKqWQIpfxmA0-lGo,14975
|
|
250
252
|
regscale/integrations/public/fedramp/components.py,sha256=z6PMObm-kjRR42bT04EfnjisrEULfXlwxb7576uuMmY,27010
|
|
251
253
|
regscale/integrations/public/fedramp/docx_parser.py,sha256=EA9g1iTlB6-GtOzV9JwGW8x_SruhbaIMOzstCBvjiq8,10526
|
|
252
|
-
regscale/integrations/public/fedramp/fedramp_cis_crm.py,sha256=
|
|
254
|
+
regscale/integrations/public/fedramp/fedramp_cis_crm.py,sha256=GoB47AfBVrDPdr8UwU-zIlaU5QLiU3aUdcuHn9qBdNg,60504
|
|
253
255
|
regscale/integrations/public/fedramp/fedramp_common.py,sha256=Mdy3_WdCEcTwSXEEKXiODmr2YJTWcTg6jfyWZJWfruQ,115406
|
|
254
256
|
regscale/integrations/public/fedramp/fedramp_docx.py,sha256=GnRjuWEgE9XSe9egPOQSZ8lMjY4CpqcD2IS5paI-xQc,13742
|
|
255
257
|
regscale/integrations/public/fedramp/fedramp_five.py,sha256=F4KIOdnYaRjJrJHJYsN9Bmf6i5s0nus-t_GaAh8A3ow,92645
|
|
@@ -296,7 +298,7 @@ regscale/models/app_models/__init__.py,sha256=XmrkxwFJx49ofl5ICZniGmmJe8jO4RkKnH
|
|
|
296
298
|
regscale/models/app_models/catalog_compare.py,sha256=gLD8ti933nW70FcGlx6gp0Lbdo8cFnKky7JkRFAKfOU,7557
|
|
297
299
|
regscale/models/app_models/click.py,sha256=2kZuBOpHFjpFKtI7rT_ht26G9bjHL_EUUoYlLC-O3B4,9961
|
|
298
300
|
regscale/models/app_models/datetime_encoder.py,sha256=AvKkXWhrd87jTfNnY5Q2gw5IdXkCQDnE_44Lay2ZUAA,518
|
|
299
|
-
regscale/models/app_models/import_validater.py,sha256=
|
|
301
|
+
regscale/models/app_models/import_validater.py,sha256=GUeUbmw8goPKwRcmzHX4QZR3iytaRyhOzuTwJLxiH44,12830
|
|
300
302
|
regscale/models/app_models/mapping.py,sha256=BDd7PMgQ24IK4S8FPzHJBpNnCtm1xiU1aoSHDUCwx6Q,11142
|
|
301
303
|
regscale/models/app_models/pipeline.py,sha256=qzrkQvvW6d8rqbBjMR8wkT2obez0tnKyY_TxtxLh6VE,909
|
|
302
304
|
regscale/models/integration_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -305,7 +307,7 @@ regscale/models/integration_models/azure_alerts.py,sha256=2etrpvcxa7jVQrc98bJlVG
|
|
|
305
307
|
regscale/models/integration_models/base64.py,sha256=sxV6O5qY1_TstJENX5jBPsSdQwmA83-NNhgJFunXiZE,570
|
|
306
308
|
regscale/models/integration_models/burp.py,sha256=FBEBkH3U0Q8vq71FFoWnvgLRF5Hkr9GYmQFmNNHFrVk,16932
|
|
307
309
|
regscale/models/integration_models/burp_models.py,sha256=UytDTAcCaxyu-knFkm_mEUH6UmWK3OTXKSC9Sc6OjVs,3669
|
|
308
|
-
regscale/models/integration_models/cisa_kev_data.json,sha256=
|
|
310
|
+
regscale/models/integration_models/cisa_kev_data.json,sha256=GMwtP2jamIbTLRTYgvxRXOPogbvVvR_l3xpKk3wCP9g,1214355
|
|
309
311
|
regscale/models/integration_models/defender_data.py,sha256=jsAcjKxiGmumGerj7xSWkFd6r__YpuKDnYX5o7xHDiE,2844
|
|
310
312
|
regscale/models/integration_models/defenderimport.py,sha256=OFwEH0Xu-HFLIZJZ8hP60Ov3lS8RR7KHEsw4wI8QnoE,5766
|
|
311
313
|
regscale/models/integration_models/drf.py,sha256=Aq7AdLa_CH97NrnR-CxaFI22JjVN9uCxVN7Z-BBUaNU,18896
|
|
@@ -325,6 +327,9 @@ regscale/models/integration_models/xray.py,sha256=rnDF9kOAYMhTO9xEi1bwmIrQvfTCQA
|
|
|
325
327
|
regscale/models/integration_models/amazon_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
326
328
|
regscale/models/integration_models/amazon_models/inspector.py,sha256=AcV_Nk4ZJMJqmRMpmpbu8LDqp4F2D6GD_IcKsh9MYcs,12915
|
|
327
329
|
regscale/models/integration_models/amazon_models/inspector_scan.py,sha256=A1uaOvT2r65_oOiZxShNMKJ7ynhoU97Kq3-zVZR8iVI,7584
|
|
330
|
+
regscale/models/integration_models/axonius_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
331
|
+
regscale/models/integration_models/axonius_models/connectors/__init__.py,sha256=UjMN_T802sixmbVIBM43v7KDt3yyUZpAKWQ3r_nvalE,63
|
|
332
|
+
regscale/models/integration_models/axonius_models/connectors/assets.py,sha256=6m9sSyW3z8PEPgtElaI3m6GGQW6STAB4_8liaD3U7i4,4740
|
|
328
333
|
regscale/models/integration_models/ecr_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
329
334
|
regscale/models/integration_models/ecr_models/data.py,sha256=l28DCidXar1JygYBQZL9MYenQA9N-Cx3Skf51IOjZcw,1017
|
|
330
335
|
regscale/models/integration_models/ecr_models/ecr.py,sha256=-s_5mj4BVKImrvfMaOJLT4qc5EqTCbv8qM4uJiH_nKc,9502
|
|
@@ -332,10 +337,10 @@ regscale/models/integration_models/flat_file_importer/__init__.py,sha256=V_P3R0j
|
|
|
332
337
|
regscale/models/integration_models/sbom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
333
338
|
regscale/models/integration_models/sbom/cyclone_dx.py,sha256=0pFR0BWBrF5c8_cC_8mj2MXvNOMHOdHbBYXvTVfFAh8,4058
|
|
334
339
|
regscale/models/integration_models/synqly_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
335
|
-
regscale/models/integration_models/synqly_models/capabilities.json,sha256=
|
|
340
|
+
regscale/models/integration_models/synqly_models/capabilities.json,sha256=hZy_KP-1q3ji7GNIJUgbf7IBnHbCN4eTiHzkh21DrWg,309657
|
|
336
341
|
regscale/models/integration_models/synqly_models/connector_types.py,sha256=8nxptkTexpskySnmL0obNAff_iu_fx6tJ7i1-4hJvao,461
|
|
337
342
|
regscale/models/integration_models/synqly_models/ocsf_mapper.py,sha256=e2kTOhWSNRnzbgMchMx-7c21pCgSv2DqWnxvajKEKJM,16960
|
|
338
|
-
regscale/models/integration_models/synqly_models/param.py,sha256=
|
|
343
|
+
regscale/models/integration_models/synqly_models/param.py,sha256=Xt5Zm6lC_VkLj7LF2qXo72TJZHysqttsp5ai0NCf1po,2643
|
|
339
344
|
regscale/models/integration_models/synqly_models/synqly_model.py,sha256=9wgR0mNTuteMarnMj3iAIj8Ki9-8rc-pIWZpku4hH_k,34701
|
|
340
345
|
regscale/models/integration_models/synqly_models/tenants.py,sha256=kewIZw-iv18bNXJGG3ghwuFJ4CK5iXQhn_x2-xvV0iM,1078
|
|
341
346
|
regscale/models/integration_models/synqly_models/connectors/__init__.py,sha256=J3YS7KXLnTPRzeM3lUQpy6HKH7CxPPsWCB-sPXSWcYA,189
|
|
@@ -346,7 +351,7 @@ regscale/models/integration_models/synqly_models/connectors/vulnerabilities.py,s
|
|
|
346
351
|
regscale/models/integration_models/tenable_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
347
352
|
regscale/models/integration_models/tenable_models/integration.py,sha256=lplL8zmjTFuhLreW-4y7G1fiCOBgzNAaATq800jgTQc,10271
|
|
348
353
|
regscale/models/integration_models/tenable_models/models.py,sha256=dmG7btkN4YkDWwnfW5Ldc3tWEAGjPiaRgJjrqMOkPEU,15846
|
|
349
|
-
regscale/models/regscale_models/__init__.py,sha256=
|
|
354
|
+
regscale/models/regscale_models/__init__.py,sha256=f3i0UQgyaWxWxyQrNrIaV55KOEhMSGWZ6b_6OO7VngQ,2141
|
|
350
355
|
regscale/models/regscale_models/assessment.py,sha256=ekzNlcsfDGBu97PMCi7hBRGbzVgxk7Ij0RfrdGh1Rfw,20440
|
|
351
356
|
regscale/models/regscale_models/assessment_plan.py,sha256=qo2YA5ckSbUKDHnC_2BUc2I9kMTje9Gq-qTCXqvEKCY,1716
|
|
352
357
|
regscale/models/regscale_models/assessment_result.py,sha256=K48yjYKwgY1-d_Y3aQUDcCvaqcTIVYdbKV5Wgicf4Ts,1283
|
|
@@ -388,7 +393,7 @@ regscale/models/regscale_models/implementation_role.py,sha256=ZjJOhjM3dVlulsGx3l
|
|
|
388
393
|
regscale/models/regscale_models/incident.py,sha256=jsS4MfigzjwFphvdIrBk62GfvbceQ8VL-AhfQSQM460,6028
|
|
389
394
|
regscale/models/regscale_models/inherited_control.py,sha256=RuQJgVyZgfoIrUG_vvwQYHECb3wsFjDH-zPj-bIFBNU,2007
|
|
390
395
|
regscale/models/regscale_models/interconnection.py,sha256=B8Y4I6KnN-T_gid08QM_o50OwGZcFfO8SJFY2uB68Ak,1256
|
|
391
|
-
regscale/models/regscale_models/issue.py,sha256=
|
|
396
|
+
regscale/models/regscale_models/issue.py,sha256=qtHB2i9wGu2fO4M1qWTOKWWww4bkgFJFaDCkom4Hw7A,46834
|
|
392
397
|
regscale/models/regscale_models/leveraged_authorization.py,sha256=OUrL8JQV3r7T3ldHlL6Y_ZLv6KuQIC-3eZW5wZ7XFUk,4192
|
|
393
398
|
regscale/models/regscale_models/line_of_inquiry.py,sha256=Uu0lQEhif0W6yTSkJo27GyQGmExSngJvyqGBTr4Q8Fg,1713
|
|
394
399
|
regscale/models/regscale_models/link.py,sha256=lAY4Ig3Menm1EqfcAbVJ7jsCsRO5tWtJIf-9-G9FXT8,6593
|
|
@@ -414,6 +419,7 @@ regscale/models/regscale_models/reference.py,sha256=P_7jT6H-NZIa7TyH3j98N-ZHlB6F
|
|
|
414
419
|
regscale/models/regscale_models/regscale_model.py,sha256=NBlCeW-Gm6WrTwOJ75mweK63X_1hsO2tvEYQFWG2fEY,68343
|
|
415
420
|
regscale/models/regscale_models/requirement.py,sha256=-8PnMbuWAZHol5X1w-fzm-moD784Et0oevSVbz6xLhU,767
|
|
416
421
|
regscale/models/regscale_models/risk.py,sha256=lZFDYPpTt0aEYCrYz5FBKk1Y4y2CKXYU1A8eEKT3zzg,8661
|
|
422
|
+
regscale/models/regscale_models/risk_issue_mapping.py,sha256=j6uR0x6xymJ0BsIwgnadeUQDshHNhU3VnpyItZp4dc4,2393
|
|
417
423
|
regscale/models/regscale_models/risk_trend.py,sha256=GkooEAc4BAq85vT3SxEOKcETACk0bgJYDtIfbNxld2s,1627
|
|
418
424
|
regscale/models/regscale_models/sbom.py,sha256=UYS3lBizGqz7A7vNPYBYzpL8PWIaXLl7ZQox_hlJ2ZQ,1722
|
|
419
425
|
regscale/models/regscale_models/scan_history.py,sha256=o4e9P2rQlqlLj4mbgSPX44jutTJo1nocI1DDXyWyf6w,16741
|
|
@@ -449,7 +455,7 @@ regscale/utils/decorators.py,sha256=3QLjZ4_QfUSdJYYMw4nGE7EPdo2P7P3AERZxHHVgXDI,
|
|
|
449
455
|
regscale/utils/dict_utils.py,sha256=2iCUMUZP8urkmpzB3BpnaSMrEQtrT9u4HINLSXGiXyI,2468
|
|
450
456
|
regscale/utils/files.py,sha256=LtOca6DK4yZxBE037fRi1lsJeHmBmXLBkDq_er3Uhmw,2410
|
|
451
457
|
regscale/utils/fxns.py,sha256=dLmxVkeoYXljAs0JbWaehBqZ2BxrdZ9ilH9FGvWRWx4,914
|
|
452
|
-
regscale/utils/graphql_client.py,sha256=
|
|
458
|
+
regscale/utils/graphql_client.py,sha256=azW55ta9Fi5X6SfvNxcmBkU6b-_vTF9wogQou402d-4,4596
|
|
453
459
|
regscale/utils/lists.py,sha256=CuxSVJNSFQ5TXtzXh5LQqL4yOZhuCmfcKbeQgjeBjok,459
|
|
454
460
|
regscale/utils/numbers.py,sha256=0LkZvewuKXogk6_oWF90OAoGIuzK1fjWZ4gRCC9_TlQ,301
|
|
455
461
|
regscale/utils/shell.py,sha256=H9Zzwt3zxyzWmfiH3tVrcIoAcEHtF_pXzM5ERd7PAGc,4176
|
|
@@ -505,9 +511,9 @@ tests/regscale/models/test_regscale_model.py,sha256=ZsrEZkC4EtdIsoQuayn1xv2gEGcV
|
|
|
505
511
|
tests/regscale/models/test_report.py,sha256=eiSvS_zS0aVeL0HBvtmHVvEzcfF9ZFVn2twj5g8KttY,970
|
|
506
512
|
tests/regscale/models/test_tenable_integrations.py,sha256=PNJC2Zu6lv1xj7y6e1yOsz5FktSU3PRKb5x3n5YG3w0,4072
|
|
507
513
|
tests/regscale/models/test_user_model.py,sha256=e9olv28qBApgnvK6hFHOgXjUC-pkaV8aGDirEIWASL4,4427
|
|
508
|
-
regscale_cli-6.20.
|
|
509
|
-
regscale_cli-6.20.
|
|
510
|
-
regscale_cli-6.20.
|
|
511
|
-
regscale_cli-6.20.
|
|
512
|
-
regscale_cli-6.20.
|
|
513
|
-
regscale_cli-6.20.
|
|
514
|
+
regscale_cli-6.20.3.1.dist-info/LICENSE,sha256=ytNhYQ9Rmhj_m-EX2pPq9Ld6tH5wrqqDYg-fCf46WDU,1076
|
|
515
|
+
regscale_cli-6.20.3.1.dist-info/METADATA,sha256=7hX23chd1X3Lp3cYrTbLJfcJH0EKQv9F5bXeOdrR4TM,34899
|
|
516
|
+
regscale_cli-6.20.3.1.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
517
|
+
regscale_cli-6.20.3.1.dist-info/entry_points.txt,sha256=cLOaIP1eRv1yZ2u7BvpE3aB4x3kDrDwkpeisKOu33z8,269
|
|
518
|
+
regscale_cli-6.20.3.1.dist-info/top_level.txt,sha256=Uv8VUCAdxRm70bgrD4YNEJUmDhBThad_1aaEFGwRByc,15
|
|
519
|
+
regscale_cli-6.20.3.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|