regscale-cli 6.26.0.0__py3-none-any.whl → 6.27.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.
- regscale/_version.py +1 -1
- regscale/core/app/application.py +1 -1
- regscale/core/app/internal/evidence.py +419 -2
- regscale/dev/code_gen.py +24 -20
- regscale/integrations/commercial/jira.py +367 -126
- regscale/integrations/commercial/qualys/__init__.py +7 -8
- regscale/integrations/commercial/qualys/scanner.py +8 -3
- regscale/integrations/commercial/synqly/assets.py +17 -0
- regscale/integrations/commercial/synqly/vulnerabilities.py +45 -28
- regscale/integrations/commercial/tenablev2/cis_parsers.py +453 -0
- regscale/integrations/commercial/tenablev2/cis_scanner.py +447 -0
- regscale/integrations/commercial/tenablev2/commands.py +142 -1
- regscale/integrations/commercial/tenablev2/scanner.py +0 -1
- regscale/integrations/commercial/tenablev2/stig_parsers.py +113 -57
- regscale/integrations/commercial/wizv2/WizDataMixin.py +1 -1
- regscale/integrations/commercial/wizv2/click.py +44 -59
- regscale/integrations/commercial/wizv2/compliance/__init__.py +15 -0
- regscale/integrations/commercial/wizv2/{policy_compliance_helpers.py → compliance/helpers.py} +78 -60
- regscale/integrations/commercial/wizv2/compliance_report.py +10 -9
- regscale/integrations/commercial/wizv2/core/__init__.py +133 -0
- regscale/integrations/commercial/wizv2/{async_client.py → core/client.py} +3 -3
- regscale/integrations/commercial/wizv2/{constants.py → core/constants.py} +1 -17
- regscale/integrations/commercial/wizv2/core/file_operations.py +237 -0
- regscale/integrations/commercial/wizv2/fetchers/__init__.py +11 -0
- regscale/integrations/commercial/wizv2/{data_fetcher.py → fetchers/policy_assessment.py} +5 -9
- regscale/integrations/commercial/wizv2/issue.py +1 -1
- regscale/integrations/commercial/wizv2/models/__init__.py +0 -0
- regscale/integrations/commercial/wizv2/parsers/__init__.py +34 -0
- regscale/integrations/commercial/wizv2/{parsers.py → parsers/main.py} +1 -1
- regscale/integrations/commercial/wizv2/processors/__init__.py +11 -0
- regscale/integrations/commercial/wizv2/{finding_processor.py → processors/finding.py} +1 -1
- regscale/integrations/commercial/wizv2/reports.py +1 -1
- regscale/integrations/commercial/wizv2/sbom.py +1 -1
- regscale/integrations/commercial/wizv2/scanner.py +40 -100
- regscale/integrations/commercial/wizv2/utils/__init__.py +48 -0
- regscale/integrations/commercial/wizv2/{utils.py → utils/main.py} +116 -61
- regscale/integrations/commercial/wizv2/variables.py +89 -3
- regscale/integrations/compliance_integration.py +0 -46
- regscale/integrations/control_matcher.py +22 -3
- regscale/integrations/due_date_handler.py +14 -8
- regscale/integrations/public/fedramp/docx_parser.py +10 -1
- regscale/integrations/public/fedramp/fedramp_cis_crm.py +393 -340
- regscale/integrations/public/fedramp/fedramp_five.py +1 -1
- regscale/integrations/scanner_integration.py +127 -57
- regscale/models/integration_models/cisa_kev_data.json +132 -9
- regscale/models/integration_models/qualys.py +3 -4
- regscale/models/integration_models/synqly_models/capabilities.json +1 -1
- regscale/models/integration_models/synqly_models/connectors/vulnerabilities.py +24 -7
- regscale/models/integration_models/synqly_models/synqly_model.py +8 -1
- regscale/models/regscale_models/control_implementation.py +1 -1
- regscale/models/regscale_models/issue.py +0 -1
- {regscale_cli-6.26.0.0.dist-info → regscale_cli-6.27.0.0.dist-info}/METADATA +1 -17
- {regscale_cli-6.26.0.0.dist-info → regscale_cli-6.27.0.0.dist-info}/RECORD +93 -60
- tests/regscale/integrations/commercial/test_jira.py +481 -91
- tests/regscale/integrations/commercial/test_wiz.py +96 -200
- tests/regscale/integrations/commercial/wizv2/__init__.py +1 -1
- tests/regscale/integrations/commercial/wizv2/compliance/__init__.py +1 -0
- tests/regscale/integrations/commercial/wizv2/compliance/test_helpers.py +903 -0
- tests/regscale/integrations/commercial/wizv2/core/__init__.py +1 -0
- tests/regscale/integrations/commercial/wizv2/core/test_auth.py +701 -0
- tests/regscale/integrations/commercial/wizv2/core/test_client.py +1037 -0
- tests/regscale/integrations/commercial/wizv2/core/test_file_operations.py +989 -0
- tests/regscale/integrations/commercial/wizv2/fetchers/__init__.py +1 -0
- tests/regscale/integrations/commercial/wizv2/fetchers/test_policy_assessment.py +805 -0
- tests/regscale/integrations/commercial/wizv2/parsers/__init__.py +1 -0
- tests/regscale/integrations/commercial/wizv2/parsers/test_main.py +1153 -0
- tests/regscale/integrations/commercial/wizv2/processors/__init__.py +1 -0
- tests/regscale/integrations/commercial/wizv2/processors/test_finding.py +671 -0
- tests/regscale/integrations/commercial/wizv2/test_WizDataMixin.py +537 -0
- tests/regscale/integrations/commercial/wizv2/test_click_comprehensive.py +851 -0
- tests/regscale/integrations/commercial/wizv2/test_compliance_report_comprehensive.py +910 -0
- tests/regscale/integrations/commercial/wizv2/test_file_cleanup.py +283 -0
- tests/regscale/integrations/commercial/wizv2/test_file_operations.py +260 -0
- tests/regscale/integrations/commercial/wizv2/test_issue.py +1 -1
- tests/regscale/integrations/commercial/wizv2/test_issue_comprehensive.py +1203 -0
- tests/regscale/integrations/commercial/wizv2/test_reports.py +497 -0
- tests/regscale/integrations/commercial/wizv2/test_sbom.py +643 -0
- tests/regscale/integrations/commercial/wizv2/test_scanner_comprehensive.py +805 -0
- tests/regscale/integrations/commercial/wizv2/test_wiz_click_client_id.py +1 -1
- tests/regscale/integrations/commercial/wizv2/test_wiz_compliance_report.py +72 -29
- tests/regscale/integrations/commercial/wizv2/test_wiz_findings_comprehensive.py +364 -0
- tests/regscale/integrations/commercial/wizv2/test_wiz_inventory_comprehensive.py +644 -0
- tests/regscale/integrations/commercial/wizv2/test_wizv2.py +946 -78
- tests/regscale/integrations/commercial/wizv2/test_wizv2_utils.py +97 -202
- tests/regscale/integrations/commercial/wizv2/utils/__init__.py +1 -0
- tests/regscale/integrations/commercial/wizv2/utils/test_main.py +1523 -0
- tests/regscale/integrations/public/test_fedramp.py +301 -0
- tests/regscale/integrations/test_control_matcher.py +83 -0
- regscale/integrations/commercial/wizv2/policy_compliance.py +0 -3543
- tests/regscale/integrations/commercial/wizv2/test_wiz_policy_compliance.py +0 -750
- /regscale/integrations/commercial/wizv2/{wiz_auth.py → core/auth.py} +0 -0
- {regscale_cli-6.26.0.0.dist-info → regscale_cli-6.27.0.0.dist-info}/LICENSE +0 -0
- {regscale_cli-6.26.0.0.dist-info → regscale_cli-6.27.0.0.dist-info}/WHEEL +0 -0
- {regscale_cli-6.26.0.0.dist-info → regscale_cli-6.27.0.0.dist-info}/entry_points.txt +0 -0
- {regscale_cli-6.26.0.0.dist-info → regscale_cli-6.27.0.0.dist-info}/top_level.txt +0 -0
|
@@ -61,7 +61,28 @@ class Vulnerabilities(SynqlyModel):
|
|
|
61
61
|
self.can_fetch_vulns = "query_findings" in self.capabilities
|
|
62
62
|
|
|
63
63
|
@staticmethod
|
|
64
|
-
def
|
|
64
|
+
def _build_severity_filter(severity: Optional[str] = None) -> str:
|
|
65
|
+
"""
|
|
66
|
+
Build severity filter string for Synqly queries
|
|
67
|
+
|
|
68
|
+
:param Optional[str] severity: Minimum severity level, if None, defaults to 'low'
|
|
69
|
+
:return: Comma-separated severity filter string
|
|
70
|
+
:rtype: str
|
|
71
|
+
"""
|
|
72
|
+
if not severity:
|
|
73
|
+
severity = "low"
|
|
74
|
+
severity_map = {
|
|
75
|
+
"critical": ["critical"],
|
|
76
|
+
"high": ["high", "critical"],
|
|
77
|
+
"medium": ["medium", "high", "critical"],
|
|
78
|
+
"low": ["low", "medium", "high", "critical"],
|
|
79
|
+
"info": ["info", "low", "medium", "high", "critical"],
|
|
80
|
+
}
|
|
81
|
+
mapped_severities = severity_map.get(severity.lower(), severity)
|
|
82
|
+
severity_filter = f"severity[in]{','.join(mapped_severities)}"
|
|
83
|
+
return severity_filter
|
|
84
|
+
|
|
85
|
+
def _handle_scan_date_options(self, regscale_ssp_id: int, **kwargs) -> list[str]:
|
|
65
86
|
"""
|
|
66
87
|
Handle scan date options for the integration sync process
|
|
67
88
|
|
|
@@ -71,12 +92,8 @@ class Vulnerabilities(SynqlyModel):
|
|
|
71
92
|
"""
|
|
72
93
|
from regscale.integrations.commercial.tenablev2.utils import get_last_pull_epoch
|
|
73
94
|
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
if isinstance(vuln_filter, str):
|
|
77
|
-
vuln_filter = [f"severity[in]{vuln_filter}"]
|
|
78
|
-
else:
|
|
79
|
-
vuln_filter = ["severity[in]critical,high,medium,low"]
|
|
95
|
+
vuln_filter = [self._build_severity_filter(kwargs.get("minimum_severity_filter"))]
|
|
96
|
+
|
|
80
97
|
if kwargs.get("all_scans"):
|
|
81
98
|
vuln_filter.append("finding.last_seen_time[gte]915148800") # Friday, January 1, 1999 12:00:00 AM UTC
|
|
82
99
|
elif scan_date := kwargs.get("scan_date"):
|
|
@@ -243,7 +243,14 @@ class SynqlyModel(BaseModel, ABC):
|
|
|
243
243
|
config[f"{self._connector_type}_{self.integration}_{key}"] = attribute[key].default
|
|
244
244
|
elif not skip_prompts:
|
|
245
245
|
self.logger.info(f"Enter the {key} for {self.integration}. Description: {attribute[key].description}")
|
|
246
|
-
|
|
246
|
+
if key.lower() in ["secret", "password"] or "token" in key.lower():
|
|
247
|
+
from getpass import getpass
|
|
248
|
+
|
|
249
|
+
print(f"{attribute[key].description} (input will be hidden)")
|
|
250
|
+
provided_secret = getpass(f"{key}: ")
|
|
251
|
+
else:
|
|
252
|
+
print(f"{attribute[key].description} (input will be visible)")
|
|
253
|
+
provided_secret = input(f"{key}: ")
|
|
247
254
|
kwargs[key] = provided_secret
|
|
248
255
|
config[f"{self._connector_type}_{self.integration}_{key}"] = provided_secret
|
|
249
256
|
else:
|
|
@@ -80,7 +80,7 @@ class ControlImplementation(RegScaleModel):
|
|
|
80
80
|
controlOwnersIds: Optional[List[str]] = Field(default=None)
|
|
81
81
|
status: str # Required
|
|
82
82
|
controlID: int # Required foreign key to Security Control
|
|
83
|
-
status_lst: List[ControlImplementationStatus] = []
|
|
83
|
+
status_lst: List[ControlImplementationStatus] = Field(default=[], exclude=True)
|
|
84
84
|
id: int = 0
|
|
85
85
|
parentId: Optional[int] = None
|
|
86
86
|
parentModule: Optional[str] = None
|
|
@@ -512,7 +512,6 @@ class Issue(RegScaleModel):
|
|
|
512
512
|
|
|
513
513
|
if severity == IssueSeverity.Critical.value:
|
|
514
514
|
days = cls._get_days_for_values(["critical"], config, key)
|
|
515
|
-
start_date = start_date + datetime.timedelta(days=days)
|
|
516
515
|
elif severity == IssueSeverity.High.value:
|
|
517
516
|
days = cls._get_days_for_values(["high"], config, key)
|
|
518
517
|
elif severity == IssueSeverity.Moderate.value:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: regscale-cli
|
|
3
|
-
Version: 6.
|
|
3
|
+
Version: 6.27.0.0
|
|
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
|
|
@@ -30,7 +30,6 @@ Requires-Dist: distro ==1.8.0
|
|
|
30
30
|
Requires-Dist: docx ==0.2.4
|
|
31
31
|
Requires-Dist: filelock ~=3.13.1
|
|
32
32
|
Requires-Dist: frontend
|
|
33
|
-
Requires-Dist: future ~=0.18.3
|
|
34
33
|
Requires-Dist: google-api-python-client
|
|
35
34
|
Requires-Dist: google-cloud-asset ~=3.22
|
|
36
35
|
Requires-Dist: google-cloud-securitycenter ~=1.25
|
|
@@ -59,7 +58,6 @@ Requires-Dist: pytest
|
|
|
59
58
|
Requires-Dist: python-dateutil ~=2.9.0
|
|
60
59
|
Requires-Dist: python-docx
|
|
61
60
|
Requires-Dist: python-jwt ==4.1.0
|
|
62
|
-
Requires-Dist: pyxnat ==1.5.*
|
|
63
61
|
Requires-Dist: rapidfuzz ~=3.7
|
|
64
62
|
Requires-Dist: regscale-python-ssp
|
|
65
63
|
Requires-Dist: requests >=2.32.0
|
|
@@ -96,7 +94,6 @@ Requires-Dist: filelock ~=3.13.1 ; extra == 'airflow'
|
|
|
96
94
|
Requires-Dist: flask-appbuilder >=4.0.0 ; extra == 'airflow'
|
|
97
95
|
Requires-Dist: flask >=2.3.2 ; extra == 'airflow'
|
|
98
96
|
Requires-Dist: frontend ; extra == 'airflow'
|
|
99
|
-
Requires-Dist: future ~=0.18.3 ; extra == 'airflow'
|
|
100
97
|
Requires-Dist: google-api-python-client ; extra == 'airflow'
|
|
101
98
|
Requires-Dist: google-cloud-asset ~=3.22 ; extra == 'airflow'
|
|
102
99
|
Requires-Dist: google-cloud-securitycenter ~=1.25 ; extra == 'airflow'
|
|
@@ -140,7 +137,6 @@ Requires-Dist: pytest ; extra == 'airflow'
|
|
|
140
137
|
Requires-Dist: python-dateutil ~=2.9.0 ; extra == 'airflow'
|
|
141
138
|
Requires-Dist: python-docx ; extra == 'airflow'
|
|
142
139
|
Requires-Dist: python-jwt ==4.1.0 ; extra == 'airflow'
|
|
143
|
-
Requires-Dist: pyxnat ==1.5.* ; extra == 'airflow'
|
|
144
140
|
Requires-Dist: rapidfuzz ~=3.7 ; extra == 'airflow'
|
|
145
141
|
Requires-Dist: regscale-python-ssp ; extra == 'airflow'
|
|
146
142
|
Requires-Dist: requests >=2.32.0 ; extra == 'airflow'
|
|
@@ -180,7 +176,6 @@ Requires-Dist: filelock ~=3.13.1 ; extra == 'airflow-azure'
|
|
|
180
176
|
Requires-Dist: flask-appbuilder >=4.0.0 ; extra == 'airflow-azure'
|
|
181
177
|
Requires-Dist: flask >=2.3.2 ; extra == 'airflow-azure'
|
|
182
178
|
Requires-Dist: frontend ; extra == 'airflow-azure'
|
|
183
|
-
Requires-Dist: future ~=0.18.3 ; extra == 'airflow-azure'
|
|
184
179
|
Requires-Dist: google-api-python-client ; extra == 'airflow-azure'
|
|
185
180
|
Requires-Dist: google-cloud-asset ~=3.22 ; extra == 'airflow-azure'
|
|
186
181
|
Requires-Dist: google-cloud-securitycenter ~=1.25 ; extra == 'airflow-azure'
|
|
@@ -225,7 +220,6 @@ Requires-Dist: pytest ; extra == 'airflow-azure'
|
|
|
225
220
|
Requires-Dist: python-dateutil ~=2.9.0 ; extra == 'airflow-azure'
|
|
226
221
|
Requires-Dist: python-docx ; extra == 'airflow-azure'
|
|
227
222
|
Requires-Dist: python-jwt ==4.1.0 ; extra == 'airflow-azure'
|
|
228
|
-
Requires-Dist: pyxnat ==1.5.* ; extra == 'airflow-azure'
|
|
229
223
|
Requires-Dist: rapidfuzz ~=3.7 ; extra == 'airflow-azure'
|
|
230
224
|
Requires-Dist: regscale-python-ssp ; extra == 'airflow-azure'
|
|
231
225
|
Requires-Dist: requests >=2.32.0 ; extra == 'airflow-azure'
|
|
@@ -264,7 +258,6 @@ Requires-Dist: filelock ~=3.13.1 ; extra == 'airflow-sqlserver'
|
|
|
264
258
|
Requires-Dist: flask-appbuilder >=4.0.0 ; extra == 'airflow-sqlserver'
|
|
265
259
|
Requires-Dist: flask >=2.3.2 ; extra == 'airflow-sqlserver'
|
|
266
260
|
Requires-Dist: frontend ; extra == 'airflow-sqlserver'
|
|
267
|
-
Requires-Dist: future ~=0.18.3 ; extra == 'airflow-sqlserver'
|
|
268
261
|
Requires-Dist: google-api-python-client ; extra == 'airflow-sqlserver'
|
|
269
262
|
Requires-Dist: google-cloud-asset ~=3.22 ; extra == 'airflow-sqlserver'
|
|
270
263
|
Requires-Dist: google-cloud-securitycenter ~=1.25 ; extra == 'airflow-sqlserver'
|
|
@@ -310,7 +303,6 @@ Requires-Dist: pytest ; extra == 'airflow-sqlserver'
|
|
|
310
303
|
Requires-Dist: python-dateutil ~=2.9.0 ; extra == 'airflow-sqlserver'
|
|
311
304
|
Requires-Dist: python-docx ; extra == 'airflow-sqlserver'
|
|
312
305
|
Requires-Dist: python-jwt ==4.1.0 ; extra == 'airflow-sqlserver'
|
|
313
|
-
Requires-Dist: pyxnat ==1.5.* ; extra == 'airflow-sqlserver'
|
|
314
306
|
Requires-Dist: rapidfuzz ~=3.7 ; extra == 'airflow-sqlserver'
|
|
315
307
|
Requires-Dist: regscale-python-ssp ; extra == 'airflow-sqlserver'
|
|
316
308
|
Requires-Dist: requests >=2.32.0 ; extra == 'airflow-sqlserver'
|
|
@@ -354,7 +346,6 @@ Requires-Dist: flask-rebar ; extra == 'all'
|
|
|
354
346
|
Requires-Dist: flask-restx ; extra == 'all'
|
|
355
347
|
Requires-Dist: flask >=2.3.2 ; extra == 'all'
|
|
356
348
|
Requires-Dist: frontend ; extra == 'all'
|
|
357
|
-
Requires-Dist: future ~=0.18.3 ; extra == 'all'
|
|
358
349
|
Requires-Dist: google-api-python-client ; extra == 'all'
|
|
359
350
|
Requires-Dist: google-cloud-asset ~=3.22 ; extra == 'all'
|
|
360
351
|
Requires-Dist: google-cloud-securitycenter ~=1.25 ; extra == 'all'
|
|
@@ -400,7 +391,6 @@ Requires-Dist: pytest ; extra == 'all'
|
|
|
400
391
|
Requires-Dist: python-dateutil ~=2.9.0 ; extra == 'all'
|
|
401
392
|
Requires-Dist: python-docx ; extra == 'all'
|
|
402
393
|
Requires-Dist: python-jwt ==4.1.0 ; extra == 'all'
|
|
403
|
-
Requires-Dist: pyxnat ==1.5.* ; extra == 'all'
|
|
404
394
|
Requires-Dist: rapidfuzz ~=3.7 ; extra == 'all'
|
|
405
395
|
Requires-Dist: regscale-python-ssp ; extra == 'all'
|
|
406
396
|
Requires-Dist: requests >=2.32.0 ; extra == 'all'
|
|
@@ -433,7 +423,6 @@ Requires-Dist: distro ==1.8.0 ; extra == 'ansible'
|
|
|
433
423
|
Requires-Dist: docx ==0.2.4 ; extra == 'ansible'
|
|
434
424
|
Requires-Dist: filelock ~=3.13.1 ; extra == 'ansible'
|
|
435
425
|
Requires-Dist: frontend ; extra == 'ansible'
|
|
436
|
-
Requires-Dist: future ~=0.18.3 ; extra == 'ansible'
|
|
437
426
|
Requires-Dist: google-api-python-client ; extra == 'ansible'
|
|
438
427
|
Requires-Dist: google-cloud-asset ~=3.22 ; extra == 'ansible'
|
|
439
428
|
Requires-Dist: google-cloud-securitycenter ~=1.25 ; extra == 'ansible'
|
|
@@ -463,7 +452,6 @@ Requires-Dist: pytest ; extra == 'ansible'
|
|
|
463
452
|
Requires-Dist: python-dateutil ~=2.9.0 ; extra == 'ansible'
|
|
464
453
|
Requires-Dist: python-docx ; extra == 'ansible'
|
|
465
454
|
Requires-Dist: python-jwt ==4.1.0 ; extra == 'ansible'
|
|
466
|
-
Requires-Dist: pyxnat ==1.5.* ; extra == 'ansible'
|
|
467
455
|
Requires-Dist: rapidfuzz ~=3.7 ; extra == 'ansible'
|
|
468
456
|
Requires-Dist: regscale-python-ssp ; extra == 'ansible'
|
|
469
457
|
Requires-Dist: requests >=2.32.0 ; extra == 'ansible'
|
|
@@ -499,7 +487,6 @@ Requires-Dist: filelock ~=3.13.1 ; extra == 'dev'
|
|
|
499
487
|
Requires-Dist: flake8 ; extra == 'dev'
|
|
500
488
|
Requires-Dist: freezegun ; extra == 'dev'
|
|
501
489
|
Requires-Dist: frontend ; extra == 'dev'
|
|
502
|
-
Requires-Dist: future ~=0.18.3 ; extra == 'dev'
|
|
503
490
|
Requires-Dist: google-api-python-client ; extra == 'dev'
|
|
504
491
|
Requires-Dist: google-cloud-asset ~=3.22 ; extra == 'dev'
|
|
505
492
|
Requires-Dist: google-cloud-securitycenter ~=1.25 ; extra == 'dev'
|
|
@@ -542,7 +529,6 @@ Requires-Dist: pytest >=5 ; extra == 'dev'
|
|
|
542
529
|
Requires-Dist: python-dateutil ~=2.9.0 ; extra == 'dev'
|
|
543
530
|
Requires-Dist: python-docx ; extra == 'dev'
|
|
544
531
|
Requires-Dist: python-jwt ==4.1.0 ; extra == 'dev'
|
|
545
|
-
Requires-Dist: pyxnat ==1.5.* ; extra == 'dev'
|
|
546
532
|
Requires-Dist: radon ; extra == 'dev'
|
|
547
533
|
Requires-Dist: rapidfuzz ~=3.7 ; extra == 'dev'
|
|
548
534
|
Requires-Dist: regscale-python-ssp ; extra == 'dev'
|
|
@@ -585,7 +571,6 @@ Requires-Dist: flask-appbuilder ; extra == 'server'
|
|
|
585
571
|
Requires-Dist: flask-rebar ; extra == 'server'
|
|
586
572
|
Requires-Dist: flask-restx ; extra == 'server'
|
|
587
573
|
Requires-Dist: frontend ; extra == 'server'
|
|
588
|
-
Requires-Dist: future ~=0.18.3 ; extra == 'server'
|
|
589
574
|
Requires-Dist: google-api-python-client ; extra == 'server'
|
|
590
575
|
Requires-Dist: google-cloud-asset ~=3.22 ; extra == 'server'
|
|
591
576
|
Requires-Dist: google-cloud-securitycenter ~=1.25 ; extra == 'server'
|
|
@@ -615,7 +600,6 @@ Requires-Dist: pytest ; extra == 'server'
|
|
|
615
600
|
Requires-Dist: python-dateutil ~=2.9.0 ; extra == 'server'
|
|
616
601
|
Requires-Dist: python-docx ; extra == 'server'
|
|
617
602
|
Requires-Dist: python-jwt ==4.1.0 ; extra == 'server'
|
|
618
|
-
Requires-Dist: pyxnat ==1.5.* ; extra == 'server'
|
|
619
603
|
Requires-Dist: rapidfuzz ~=3.7 ; extra == 'server'
|
|
620
604
|
Requires-Dist: regscale-python-ssp ; extra == 'server'
|
|
621
605
|
Requires-Dist: requests >=2.32.0 ; extra == 'server'
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
regscale/__init__.py,sha256=ZygAIkX6Nbjag1czWdQa-yP-GM1mBE_9ss21Xh__JFc,34
|
|
2
|
-
regscale/_version.py,sha256=
|
|
2
|
+
regscale/_version.py,sha256=7vrJUSy6yUulxohFtU6V1-t_j4E6-52RFtUIgs7MP64,1198
|
|
3
3
|
regscale/regscale.py,sha256=4LzcbkBxPh23cCLANVEEr6uNoZ0sebHec0N-VJm5_vA,31480
|
|
4
4
|
regscale/airflow/__init__.py,sha256=yMwN0Bz4JbM0nl5qY_hPegxo_O2ilhTOL9PY5Njhn-s,270
|
|
5
5
|
regscale/airflow/click_dags.py,sha256=H3SUR5jkvInNMv1gu-VG-Ja_H-kH145CpQYNalWNAbE,4520
|
|
@@ -36,7 +36,7 @@ regscale/core/lazy_group.py,sha256=S2-nA5tzm47A929NOTqGkzrzKuZQDlq2OAPbNnG1W1Q,2
|
|
|
36
36
|
regscale/core/login.py,sha256=-8vy1HVAtv1iARnZh6uzYtwmx8VFYPwLYR0QAf1ttCk,2714
|
|
37
37
|
regscale/core/app/__init__.py,sha256=nGcCN1vWBAnZzoccIlt0jwWQdegCOrBWOB7LPhQkQSs,96
|
|
38
38
|
regscale/core/app/api.py,sha256=yJhlKICpy8irEcZaFWq36_Bi2I_VcQ7Fh_LtGm0-H98,23632
|
|
39
|
-
regscale/core/app/application.py,sha256=
|
|
39
|
+
regscale/core/app/application.py,sha256=vN2ppgS9sNXg7KAYt3RtQKErTckln1aUADFnRDXKN30,33141
|
|
40
40
|
regscale/core/app/logz.py,sha256=8AdBKmquv45JGi5fCMc38JqQg6-FpUONGmqfd5EGwrI,2583
|
|
41
41
|
regscale/core/app/internal/__init__.py,sha256=rod4nmE7rrYDdbuYF4mCWz49TK_2r-v4tWy1UHW63r0,4808
|
|
42
42
|
regscale/core/app/internal/admin_actions.py,sha256=hOdma7QGwFblmxEj9UTjiWWmZGUS5_ZFtxL2qZdhf-Q,7443
|
|
@@ -45,7 +45,7 @@ regscale/core/app/internal/catalog.py,sha256=svBAgFZaGrkNHh2gZEo1ex2vdjllAIc4940
|
|
|
45
45
|
regscale/core/app/internal/comparison.py,sha256=eRnCKhq3Kyzh-aUgD6phQH0eONCSCkl5Vz0dr2ymDpQ,16720
|
|
46
46
|
regscale/core/app/internal/control_editor.py,sha256=bvltPfUJERVcPW14njFzMHLzb4KLcXlmtAJMRDXegXI,19338
|
|
47
47
|
regscale/core/app/internal/encrypt.py,sha256=yOEMDDlpI0Sc0LkoeCtXbypnOF8cxoDrzKRU5d3POFQ,5927
|
|
48
|
-
regscale/core/app/internal/evidence.py,sha256=
|
|
48
|
+
regscale/core/app/internal/evidence.py,sha256=yXHBWWYfo471oJ9jTgGkWDtiB0wsVuq6AQ2zQEWFP6E,68006
|
|
49
49
|
regscale/core/app/internal/file_uploads.py,sha256=EfQ4ViJBHzU9bxnFunK3ahA6T9A6pnA-Jk2NrtgmrQY,4776
|
|
50
50
|
regscale/core/app/internal/healthcheck.py,sha256=ef4Mwk19vi71bv-Xkny5_EGG1UXTbCO5dvEIzHyyfVA,2010
|
|
51
51
|
regscale/core/app/internal/login.py,sha256=AKmZq9kxwpNV3LnAGwtdI2dn0qh1SG_mZ7OtIRSce1Q,10968
|
|
@@ -100,7 +100,7 @@ regscale/core/utils/urls.py,sha256=ZcU9OJqDmVQXgu6BrLESIp2KMkkUuzTZZ_wHsZMzfA4,6
|
|
|
100
100
|
regscale/dev/__init__.py,sha256=wVP59B1iurp36ul8pD_CjmunJLHOdKWWodz1r5loNvw,190
|
|
101
101
|
regscale/dev/analysis.py,sha256=9s6pfTGK6FBqV-karQQnCc_GYHloETmFyvsvVJ5jBm8,15603
|
|
102
102
|
regscale/dev/cli.py,sha256=VT9QHhfJX10KdJlSL9zBx-D__0H7qqS8G1GPwOb59Xs,8783
|
|
103
|
-
regscale/dev/code_gen.py,sha256=
|
|
103
|
+
regscale/dev/code_gen.py,sha256=9oNDyS4TccRMb9v-tuexak7eXUMQqrqRjBpU5-N_-xE,26569
|
|
104
104
|
regscale/dev/dirs.py,sha256=wmEKM4UZjMXDiNi6a17JchhyfQNvJg6ACQmqT_Xt6V0,2044
|
|
105
105
|
regscale/dev/docs.py,sha256=Ngtd2Z0vYXYQXUIAqhL02f-_fUuIpmTPa5YIO3wAOHY,14678
|
|
106
106
|
regscale/dev/monitoring.py,sha256=h0pewRSXF8bLEtQ9dB3D0XqGTM4HtjaCiUUH3ijEllM,835
|
|
@@ -111,13 +111,13 @@ regscale/exceptions/validation_exception.py,sha256=_DW_GARtPr_Dyy8tolnvC_AYsHRsU
|
|
|
111
111
|
regscale/integrations/__init__.py,sha256=Sqthp3Jggo7co_go380cLn3OAb0cHwqL609_4QJSFBY,58
|
|
112
112
|
regscale/integrations/api_paginator.py,sha256=73rjaNM9mGv8evHAeoObXEjZPg-bJuGPo60ewCLEil8,33192
|
|
113
113
|
regscale/integrations/api_paginator_example.py,sha256=lEuYI-xEGcjnXuIzbCobCP0YRuukLF0s8S3d382SAH4,12119
|
|
114
|
-
regscale/integrations/compliance_integration.py,sha256=
|
|
115
|
-
regscale/integrations/control_matcher.py,sha256=
|
|
116
|
-
regscale/integrations/due_date_handler.py,sha256=
|
|
114
|
+
regscale/integrations/compliance_integration.py,sha256=_KzzmUGoXvA2o4nXR3jzdd4-yO56nSn2fMDLNzRgJRI,91699
|
|
115
|
+
regscale/integrations/control_matcher.py,sha256=vZjzQz2NhFwP6in-jLDQeBGnigQ78e2mcSaKumkUrZI,14595
|
|
116
|
+
regscale/integrations/due_date_handler.py,sha256=EAKSOsqpj5CpFQphzvkYcHgDrJ4BQlKayDGeiZVUvWo,14122
|
|
117
117
|
regscale/integrations/integration_override.py,sha256=HjYBCuvNpU3t3FptaqYAkdexLFOZBAFrFE9xU0RD1Nc,5867
|
|
118
118
|
regscale/integrations/jsonl_scanner_integration.py,sha256=l8nq_T3rE1XX-6HxrNHm3xzxCNWbIjxQvGMdtZWs7KQ,57003
|
|
119
119
|
regscale/integrations/milestone_manager.py,sha256=td5m-2LIUkHY7S3rtGwj-SLLuSGN4aiJOPAiKRcE4A4,10779
|
|
120
|
-
regscale/integrations/scanner_integration.py,sha256=
|
|
120
|
+
regscale/integrations/scanner_integration.py,sha256=VcHldJCmSIy0oGL0G5tF6ivnrLAUuhGgWisC_F24G3g,194028
|
|
121
121
|
regscale/integrations/variables.py,sha256=MfQ34WuYVN5437A9sZ2ssHRkA3gFhMHfk1DVasceGmY,2336
|
|
122
122
|
regscale/integrations/commercial/__init__.py,sha256=U2RIsRe4lKufADRwMJY0RhSbL6TX4jLxpCtbcnzvI3k,14607
|
|
123
123
|
regscale/integrations/commercial/ad.py,sha256=YXSmK8vRf6yi2GnREGa5GrE6GelhFrLj44SY8AO1pK0,15509
|
|
@@ -128,7 +128,7 @@ regscale/integrations/commercial/dependabot.py,sha256=V4VbHbwrxHfe7eCilJ7U_MBeIO
|
|
|
128
128
|
regscale/integrations/commercial/ecr.py,sha256=oQafB_Lx4CbGDLb6fqNtY1oAWci6-XWsm39URNbqgrk,2687
|
|
129
129
|
regscale/integrations/commercial/gitlab.py,sha256=dzfqJQ68QI1ee_BriNMyPuXLkzOhc2vR1hhVfq2j13Y,12496
|
|
130
130
|
regscale/integrations/commercial/ibm.py,sha256=vFloNxSrM2BzoicMSiInYN5dF10BbYHJpJDyyMqZu2I,2766
|
|
131
|
-
regscale/integrations/commercial/jira.py,sha256=
|
|
131
|
+
regscale/integrations/commercial/jira.py,sha256=4rqKzAbpZvgGFOcj7I8ODHZnBAyK4eyTMnZUsNUS7Sk,58974
|
|
132
132
|
regscale/integrations/commercial/nexpose.py,sha256=fx6O__y7eY0GaAbX8p24_V1VTFfOM7oia4r3aa_qVnE,2847
|
|
133
133
|
regscale/integrations/commercial/okta.py,sha256=VNwE848xiBxkha4DibkhLJN-fi0T8rLMd30PPAmRjpk,30837
|
|
134
134
|
regscale/integrations/commercial/prisma.py,sha256=oYS31HlI7GiShUy0r9Luv57Ex3cGqdJcIoVMrwDAC2c,2835
|
|
@@ -191,10 +191,10 @@ regscale/integrations/commercial/nessus/scanner.py,sha256=sQWoO1qCEl43Ww1fjJ3v23
|
|
|
191
191
|
regscale/integrations/commercial/opentext/__init__.py,sha256=zqCPb_4rYRZZPXfeKn4AoZyyYyQ6MU4C0lCs2ysOBhc,251
|
|
192
192
|
regscale/integrations/commercial/opentext/commands.py,sha256=TTClFg16EzlXQOjdQQ6AdWuVuh7H2zO0V9rXd73-ni0,2572
|
|
193
193
|
regscale/integrations/commercial/opentext/scanner.py,sha256=QAb9FPiYeQCEnqL3dnFBFe64LydwLaR8HWpYmabgcbE,22581
|
|
194
|
-
regscale/integrations/commercial/qualys/__init__.py,sha256=
|
|
194
|
+
regscale/integrations/commercial/qualys/__init__.py,sha256=nxTRhTjt2hEsCn7zmLbE-pUfskrn0cw0h0lapz_2Gco,92720
|
|
195
195
|
regscale/integrations/commercial/qualys/containers.py,sha256=KD9DJlE7E9y0_BM-HJtizr03p9dMEi-2uO4bwdwCP8M,12163
|
|
196
196
|
regscale/integrations/commercial/qualys/qualys_error_handler.py,sha256=2nlxeNLQMOpkiTij39VTsZg-2AFQsM6-rwlBW2pVpKY,18594
|
|
197
|
-
regscale/integrations/commercial/qualys/scanner.py,sha256=
|
|
197
|
+
regscale/integrations/commercial/qualys/scanner.py,sha256=n68pjyEbB6GCBLNUMWxrW-ssVBta9VYLvQgxCvzS2HU,68476
|
|
198
198
|
regscale/integrations/commercial/qualys/variables.py,sha256=TPoIW5_yNmU6c0AlLOpHQdxp6OrH8jUmMJikqT7YYz8,962
|
|
199
199
|
regscale/integrations/commercial/sap/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
200
200
|
regscale/integrations/commercial/sap/click.py,sha256=pWgjUOA_4WKkDUWcE8z4EshnJUdrTl15NKUfKpKyqzE,522
|
|
@@ -220,43 +220,52 @@ regscale/integrations/commercial/stigv2/ckl_parser.py,sha256=_tpKT7xO_alqkT9h_Tf
|
|
|
220
220
|
regscale/integrations/commercial/stigv2/click_commands.py,sha256=-765vFF03aSjBxU9SYCpca7x8fPaoTDNQtbk4fKuwYw,2792
|
|
221
221
|
regscale/integrations/commercial/stigv2/stig_integration.py,sha256=-UlfL0BBI3jFGotctOJyTCRAU9zIXW6mwU7ySrRXE9U,11573
|
|
222
222
|
regscale/integrations/commercial/synqly/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
223
|
-
regscale/integrations/commercial/synqly/assets.py,sha256=
|
|
223
|
+
regscale/integrations/commercial/synqly/assets.py,sha256=Lwv_qVuQVwZTBWJuJjyjdhiYc8LxUJA_SN6_1_LfczI,8145
|
|
224
224
|
regscale/integrations/commercial/synqly/edr.py,sha256=4EQSI2-5QnaWXh1idhndToFDOHOb3xycWAdc8NY4Auk,2836
|
|
225
225
|
regscale/integrations/commercial/synqly/query_builder.py,sha256=1MAheCLG_3zUkvDeXbnCFEBybbG09OV-vUtBD0GLx0o,19306
|
|
226
226
|
regscale/integrations/commercial/synqly/ticketing.py,sha256=akucc9Ok4cTcivH_rmG927WJetJDhZ0L4IF27OC_KOE,8352
|
|
227
|
-
regscale/integrations/commercial/synqly/vulnerabilities.py,sha256=
|
|
227
|
+
regscale/integrations/commercial/synqly/vulnerabilities.py,sha256=R9n_2AfB_CVKEza7MQ92YNdw1r36_rTvLzNHnQkpHvo,13623
|
|
228
228
|
regscale/integrations/commercial/tenablev2/__init__.py,sha256=UpSY_oww83kz9c7amdbptJKwDB1gAOBQDS-Q9WFp588,295
|
|
229
229
|
regscale/integrations/commercial/tenablev2/authenticate.py,sha256=VPTmxaVCaah2gJYNeU9P1KoQ734ohGQ-wcVy6JfqDTE,1247
|
|
230
|
-
regscale/integrations/commercial/tenablev2/
|
|
230
|
+
regscale/integrations/commercial/tenablev2/cis_parsers.py,sha256=7F6OSgYXSKMNpEyyWxPilt1u9SZRuQY21Qbp9fGbD9o,17167
|
|
231
|
+
regscale/integrations/commercial/tenablev2/cis_scanner.py,sha256=uMuE48-ZfYSMyFBdJsPgR-biV7OtGYV64-2QZBwKsn0,17550
|
|
232
|
+
regscale/integrations/commercial/tenablev2/commands.py,sha256=ZB2rZ0RKQ0rkRGrbuw2CJogbEBee8u0I-2WAy4qYvnc,32605
|
|
231
233
|
regscale/integrations/commercial/tenablev2/jsonl_scanner.py,sha256=6dv92JslX_p_N6vuwCj4hj1OPy935a-ZjPz0dsWaXuw,83577
|
|
232
234
|
regscale/integrations/commercial/tenablev2/sc_scanner.py,sha256=WQ7ctneHz3fYOrR_GvVUJL3BuKNoN515y7pG8ATMjOM,24102
|
|
233
|
-
regscale/integrations/commercial/tenablev2/scanner.py,sha256=
|
|
234
|
-
regscale/integrations/commercial/tenablev2/stig_parsers.py,sha256=
|
|
235
|
+
regscale/integrations/commercial/tenablev2/scanner.py,sha256=vQAa5_oSSceg6BlGCizsT3cHCG2-rphvN1ww_KAcfnE,21527
|
|
236
|
+
regscale/integrations/commercial/tenablev2/stig_parsers.py,sha256=xv68Vk7BhTIAM5RZqlCRK3fOd2qcVTGgtTM3DFiuhuY,7780
|
|
235
237
|
regscale/integrations/commercial/tenablev2/sync_compliance.py,sha256=_7_VwJm2xHUk-4Pzaz-ywQ3FNuMgRUn9IlRW3m9e97M,22083
|
|
236
238
|
regscale/integrations/commercial/tenablev2/utils.py,sha256=_MmvcR71PmvH4dQ1k4M-q4PYAg0EE_aQ9w4cUdP7SwE,3359
|
|
237
239
|
regscale/integrations/commercial/tenablev2/variables.py,sha256=CHK8HpSFHMUF4HWj0xosfEQ-RRNDoWdeRvjJok_mKpU,991
|
|
238
240
|
regscale/integrations/commercial/trivy/__init__.py,sha256=fTTABeR1Z3Wei3l-A54SoTPn2mrMQrKLmr9SwTyYLTM,117
|
|
239
241
|
regscale/integrations/commercial/trivy/commands.py,sha256=YGQFtpQGkmcLT3X2OVp7lt6dfmfflr_4AGunkcbs7Zc,2374
|
|
240
242
|
regscale/integrations/commercial/trivy/scanner.py,sha256=iiwTvjqRlLRgQvCs_FP0j83B7ApOta0MSXyO0-iHfSk,11309
|
|
241
|
-
regscale/integrations/commercial/wizv2/WizDataMixin.py,sha256=
|
|
243
|
+
regscale/integrations/commercial/wizv2/WizDataMixin.py,sha256=ubYP8EwCxnv8dIMv05Src8cdiWUlx9wMkDypm-XNmww,3611
|
|
242
244
|
regscale/integrations/commercial/wizv2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
243
|
-
regscale/integrations/commercial/wizv2/
|
|
244
|
-
regscale/integrations/commercial/wizv2/
|
|
245
|
-
regscale/integrations/commercial/wizv2/compliance_report.py,sha256=q-Jwba3Iq3UaYJxczm5hYFmUCsDhnq0JpV7MoPC95bc,67719
|
|
246
|
-
regscale/integrations/commercial/wizv2/constants.py,sha256=q5oxB4bMM0e45K4zQUqS_B-hHsEe8gpT3K9jrkg4_cg,48314
|
|
247
|
-
regscale/integrations/commercial/wizv2/data_fetcher.py,sha256=CmJyUCeTQIkYBu2LPicpTNwXJrYkRP3xxM55BJQhr2A,16258
|
|
245
|
+
regscale/integrations/commercial/wizv2/click.py,sha256=xjqK-LMYRM5qBB0NoDLvTQX9GuYHOC1WFnBEbgSUZW8,19419
|
|
246
|
+
regscale/integrations/commercial/wizv2/compliance_report.py,sha256=bFIjUHAw6g8XF2kUTMzLmZev_2K4Ctt7MMOk2_qcngs,67768
|
|
248
247
|
regscale/integrations/commercial/wizv2/file_cleanup.py,sha256=ENBO9RDXL2kyHkBYaSai83i4kVTUJUF_F0JCj84i-ow,4178
|
|
249
|
-
regscale/integrations/commercial/wizv2/
|
|
250
|
-
regscale/integrations/commercial/wizv2/
|
|
251
|
-
regscale/integrations/commercial/wizv2/
|
|
252
|
-
regscale/integrations/commercial/wizv2/
|
|
253
|
-
regscale/integrations/commercial/wizv2/
|
|
254
|
-
regscale/integrations/commercial/wizv2/
|
|
255
|
-
regscale/integrations/commercial/wizv2/
|
|
256
|
-
regscale/integrations/commercial/wizv2/
|
|
257
|
-
regscale/integrations/commercial/wizv2/
|
|
258
|
-
regscale/integrations/commercial/wizv2/
|
|
259
|
-
regscale/integrations/commercial/wizv2/
|
|
248
|
+
regscale/integrations/commercial/wizv2/issue.py,sha256=fTYRTpf1bjWfPe1MgKhUkv7-ahQzib4hDGJVCTbvDpI,46238
|
|
249
|
+
regscale/integrations/commercial/wizv2/reports.py,sha256=GTP_bNGqxofKNEucDfbbE5RmjIEmMZgZLZT_sYdi0Ew,8794
|
|
250
|
+
regscale/integrations/commercial/wizv2/sbom.py,sha256=gdjB33PG67LrZXZUji7KCLjJ_CuiXE5nX_EcACo-DNk,4471
|
|
251
|
+
regscale/integrations/commercial/wizv2/scanner.py,sha256=AbNvmOHsLd-toVvQStft7sGhHd8c6KHFc8SB1qTt3gg,93886
|
|
252
|
+
regscale/integrations/commercial/wizv2/variables.py,sha256=SdMZyKsAn-JxjVNMCWA6Im4h_7Sb2JlJ3vS6aorzHpc,3812
|
|
253
|
+
regscale/integrations/commercial/wizv2/compliance/__init__.py,sha256=t0WhxpC75lVQ1P_abMlyrTqXJKXGI4ZRp9C-5_gF4A0,377
|
|
254
|
+
regscale/integrations/commercial/wizv2/compliance/helpers.py,sha256=HXSFgYtYDE6TdpbEYxvqaz4s673oaveurnyuuG5lgV8,22983
|
|
255
|
+
regscale/integrations/commercial/wizv2/core/__init__.py,sha256=qy2nWhbVfBzKRJJPjF1xm-7VrQUeYZs40nGr0PY6dek,3564
|
|
256
|
+
regscale/integrations/commercial/wizv2/core/auth.py,sha256=qGcUhpC9eRkJIngmv3i9yHdp0q9rv6AvA5gHkypYzCE,5549
|
|
257
|
+
regscale/integrations/commercial/wizv2/core/client.py,sha256=f4skQAMJAuKvTz62ntmghXb21_8butZ5MiGMNEafW80,12956
|
|
258
|
+
regscale/integrations/commercial/wizv2/core/constants.py,sha256=U5bCo0P6sL0_5W6vA2urABSB9oh6U3XR1nKy7zr1tIw,47967
|
|
259
|
+
regscale/integrations/commercial/wizv2/core/file_operations.py,sha256=4F4qGXoGDIfMTHYzSGthSfV659v4--pF8hNggrSz3PQ,8495
|
|
260
|
+
regscale/integrations/commercial/wizv2/fetchers/__init__.py,sha256=8sBEF-_w9z87BPrSwDQWPVMOQ9ozpxUenJT5tfNTDUM,269
|
|
261
|
+
regscale/integrations/commercial/wizv2/fetchers/policy_assessment.py,sha256=TvwX0G6dq9qqjdcdyENRu8mHR9A2nen-H5YlQyhNFx8,16058
|
|
262
|
+
regscale/integrations/commercial/wizv2/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
263
|
+
regscale/integrations/commercial/wizv2/parsers/__init__.py,sha256=9nnHVGQq9aEDVMCb4mthvOr8l4p7Q8oWOorLALyNcgw,932
|
|
264
|
+
regscale/integrations/commercial/wizv2/parsers/main.py,sha256=agcaiekDiMVGKp6Hy5kei_b0F4fGaprVOOjfvhF8Ipo,11824
|
|
265
|
+
regscale/integrations/commercial/wizv2/processors/__init__.py,sha256=CGEDBdKCaOEl0vJ_DIhBAGodEE4cEGmS5OCaU690ggk,289
|
|
266
|
+
regscale/integrations/commercial/wizv2/processors/finding.py,sha256=2OlLMSHYHga_0iaOK3r1SPZLLhzpK33SjMNT09sFb0M,11354
|
|
267
|
+
regscale/integrations/commercial/wizv2/utils/__init__.py,sha256=MYaVSpvmY3Glv9_ioz0UrR4_XpwWnHAbMiVX5BiMeFE,1312
|
|
268
|
+
regscale/integrations/commercial/wizv2/utils/main.py,sha256=gLdH1NJm4V0hrLs_tIMbEJvs8iEKZ1L3WTYNYvi8wP0,57423
|
|
260
269
|
regscale/integrations/integration/__init__.py,sha256=WJgPLnEahD94QLE8NR8QCzlf8xk2ix76_WPDlf98ezU,70
|
|
261
270
|
regscale/integrations/integration/integration.py,sha256=pr_fbqBieYbqp3PdBjuqKuZCYFf0kF4GkFdlViTKG54,586
|
|
262
271
|
regscale/integrations/integration/inventory.py,sha256=gHL1a6VSV3zf4DTmksEy8qXNrqhIun8TwLxhRpuEMqY,341
|
|
@@ -276,11 +285,11 @@ regscale/integrations/public/fedramp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeu
|
|
|
276
285
|
regscale/integrations/public/fedramp/appendix_parser.py,sha256=u3Q_NHxAvYTQ1RAr1T-y3hOfqcFnkLnTmJoWnndrzeA,38281
|
|
277
286
|
regscale/integrations/public/fedramp/click.py,sha256=kacrGQ0D4L2rfxWd3KMsES_l96lL-O-oZWv_e8PfOlI,16795
|
|
278
287
|
regscale/integrations/public/fedramp/components.py,sha256=z6PMObm-kjRR42bT04EfnjisrEULfXlwxb7576uuMmY,27010
|
|
279
|
-
regscale/integrations/public/fedramp/docx_parser.py,sha256=
|
|
280
|
-
regscale/integrations/public/fedramp/fedramp_cis_crm.py,sha256=
|
|
288
|
+
regscale/integrations/public/fedramp/docx_parser.py,sha256=9QP4GoPxv23A553fXrz2Tvvfci8454re3XoWgC58YwE,10989
|
|
289
|
+
regscale/integrations/public/fedramp/fedramp_cis_crm.py,sha256=5yOOszmC4fo1wmCZ8yXnsSSnp7X_qDRE_SWgq8UMb5k,70526
|
|
281
290
|
regscale/integrations/public/fedramp/fedramp_common.py,sha256=Mdy3_WdCEcTwSXEEKXiODmr2YJTWcTg6jfyWZJWfruQ,115406
|
|
282
291
|
regscale/integrations/public/fedramp/fedramp_docx.py,sha256=eKkRwfcIi4aHJp4ajKDUGJECItwrZwYfCiKzmfB2W1Q,13703
|
|
283
|
-
regscale/integrations/public/fedramp/fedramp_five.py,sha256=
|
|
292
|
+
regscale/integrations/public/fedramp/fedramp_five.py,sha256=oaLcbTTDfm1korv4fmVrMfZzmgoOyVMQV2CK1d_R3-g,96739
|
|
284
293
|
regscale/integrations/public/fedramp/fedramp_traversal.py,sha256=BkgwsFluZO5g0Rc0WujYgbc1_YLofamJzFP7Z5UYfao,4528
|
|
285
294
|
regscale/integrations/public/fedramp/import_fedramp_r4_ssp.py,sha256=Opld0vEZ4b71cIDogu6ykTUL86tXZVTSnwQzjz8w_4U,9925
|
|
286
295
|
regscale/integrations/public/fedramp/import_workbook.py,sha256=VFNBjBNLLRL3WjkJmE9CamizNsLgfdX5g8YolOr8lPY,19658
|
|
@@ -332,7 +341,7 @@ regscale/models/integration_models/azure_alerts.py,sha256=2etrpvcxa7jVQrc98bJlVG
|
|
|
332
341
|
regscale/models/integration_models/base64.py,sha256=sxV6O5qY1_TstJENX5jBPsSdQwmA83-NNhgJFunXiZE,570
|
|
333
342
|
regscale/models/integration_models/burp.py,sha256=FBEBkH3U0Q8vq71FFoWnvgLRF5Hkr9GYmQFmNNHFrVk,16932
|
|
334
343
|
regscale/models/integration_models/burp_models.py,sha256=UytDTAcCaxyu-knFkm_mEUH6UmWK3OTXKSC9Sc6OjVs,3669
|
|
335
|
-
regscale/models/integration_models/cisa_kev_data.json,sha256=
|
|
344
|
+
regscale/models/integration_models/cisa_kev_data.json,sha256=NQpI-0sN-kJdasvfcqjmjlWJZpNJbgYVs-l_MlOuTD8,1295585
|
|
336
345
|
regscale/models/integration_models/defender_data.py,sha256=jsAcjKxiGmumGerj7xSWkFd6r__YpuKDnYX5o7xHDiE,2844
|
|
337
346
|
regscale/models/integration_models/defenderimport.py,sha256=Ze4kgwns-IYPyO7sBjEzW8PXWlxwU-DAo2fIyRcTC3k,6242
|
|
338
347
|
regscale/models/integration_models/drf.py,sha256=Aq7AdLa_CH97NrnR-CxaFI22JjVN9uCxVN7Z-BBUaNU,18896
|
|
@@ -342,7 +351,7 @@ regscale/models/integration_models/implementation_results.py,sha256=nJOAFPMS73Su
|
|
|
342
351
|
regscale/models/integration_models/jira_task_sync.py,sha256=FVfIms0fzc9WLprda7rn1wmFFz7tXCuEFHnzln9qkdE,918
|
|
343
352
|
regscale/models/integration_models/nexpose.py,sha256=l2yEu93dLJ14NtHl8q20ZsYYc-yBBfiiJs32I6vGGbE,10114
|
|
344
353
|
regscale/models/integration_models/prisma.py,sha256=YJrJoSizkE5lzPjTkNme2akHqAux5BJ1oRXaMATNzrU,7509
|
|
345
|
-
regscale/models/integration_models/qualys.py,sha256=
|
|
354
|
+
regscale/models/integration_models/qualys.py,sha256=y2dmPxHTEZY2pQskn_FZ_6UK1QIt7Kilw1YQVwWvPMs,28153
|
|
346
355
|
regscale/models/integration_models/qualys_scanner.py,sha256=6rAeCR9qI10MM_LWtZtOhWaT6mERWtII2IxxyvQhfKw,6453
|
|
347
356
|
regscale/models/integration_models/send_reminders.py,sha256=h9zOX5Hb7e4K7qFmG-FixuNK1cHF0OF4HQl2W9fiIqE,26358
|
|
348
357
|
regscale/models/integration_models/snyk.py,sha256=uxPAKcfbMX6GyNaPmKOex1OHJIcSkXTdnLK2TKBkjO4,13986
|
|
@@ -363,18 +372,18 @@ regscale/models/integration_models/flat_file_importer/__init__.py,sha256=HYO7mrq
|
|
|
363
372
|
regscale/models/integration_models/sbom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
364
373
|
regscale/models/integration_models/sbom/cyclone_dx.py,sha256=0pFR0BWBrF5c8_cC_8mj2MXvNOMHOdHbBYXvTVfFAh8,4058
|
|
365
374
|
regscale/models/integration_models/synqly_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
366
|
-
regscale/models/integration_models/synqly_models/capabilities.json,sha256=
|
|
375
|
+
regscale/models/integration_models/synqly_models/capabilities.json,sha256=MqbVQ3qdu4cDHkAXF50zanx4CnFiIhIwW1Iw8CS-4j0,442882
|
|
367
376
|
regscale/models/integration_models/synqly_models/connector_types.py,sha256=8nxptkTexpskySnmL0obNAff_iu_fx6tJ7i1-4hJvao,461
|
|
368
377
|
regscale/models/integration_models/synqly_models/filter_parser.py,sha256=8rdnHH7gW1A_uWRTexZXzCH-HzRVy5nlvFgtc7ztcsQ,12160
|
|
369
378
|
regscale/models/integration_models/synqly_models/ocsf_mapper.py,sha256=ftObPhGg9CamnwRZ5z6qi8pW2Gu4JYy8apEo33o7q00,16960
|
|
370
379
|
regscale/models/integration_models/synqly_models/param.py,sha256=Xt5Zm6lC_VkLj7LF2qXo72TJZHysqttsp5ai0NCf1po,2643
|
|
371
|
-
regscale/models/integration_models/synqly_models/synqly_model.py,sha256=
|
|
380
|
+
regscale/models/integration_models/synqly_models/synqly_model.py,sha256=3nNELO4TcbvzS8u0eZqGVUUFycS5BR0NA8oWAbw3R_k,36801
|
|
372
381
|
regscale/models/integration_models/synqly_models/tenants.py,sha256=kewIZw-iv18bNXJGG3ghwuFJ4CK5iXQhn_x2-xvV0iM,1078
|
|
373
382
|
regscale/models/integration_models/synqly_models/connectors/__init__.py,sha256=J3YS7KXLnTPRzeM3lUQpy6HKH7CxPPsWCB-sPXSWcYA,189
|
|
374
383
|
regscale/models/integration_models/synqly_models/connectors/assets.py,sha256=HHNIAVh5pRuJe8sStqhFEc6VnX2wT0FcY5178nbQgkQ,3705
|
|
375
384
|
regscale/models/integration_models/synqly_models/connectors/edr.py,sha256=kio3uoEYubCHretpDOJqxdwmzid1IzbVYz0BF64zeL0,5547
|
|
376
385
|
regscale/models/integration_models/synqly_models/connectors/ticketing.py,sha256=yRBuCkRAVfa_C91r3WqJ9gxrQsoD0qV9cY48YXpJl70,25358
|
|
377
|
-
regscale/models/integration_models/synqly_models/connectors/vulnerabilities.py,sha256=
|
|
386
|
+
regscale/models/integration_models/synqly_models/connectors/vulnerabilities.py,sha256=nGS3XqRGTITz2XLSSr766DAfbngOT_D9DUFhaG--Plc,8239
|
|
378
387
|
regscale/models/integration_models/tenable_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
379
388
|
regscale/models/integration_models/tenable_models/integration.py,sha256=lplL8zmjTFuhLreW-4y7G1fiCOBgzNAaATq800jgTQc,10271
|
|
380
389
|
regscale/models/integration_models/tenable_models/models.py,sha256=dmG7btkN4YkDWwnfW5Ldc3tWEAGjPiaRgJjrqMOkPEU,15846
|
|
@@ -396,7 +405,7 @@ regscale/models/regscale_models/compliance_settings.py,sha256=F2q7OQEgYK-HrPmDHM
|
|
|
396
405
|
regscale/models/regscale_models/component.py,sha256=Zbl-glM2WYtDRKtnQSyhXRDY9fqBTSSGz_2pMkAsawg,14196
|
|
397
406
|
regscale/models/regscale_models/component_mapping.py,sha256=g0cbbW4X49SDdlB_YtKMrP4eiK9OkrJqiut0ucdyVDA,2162
|
|
398
407
|
regscale/models/regscale_models/control.py,sha256=mO46F1IfiXnLSb3YhylaS3SyjtT51s-r8b3hjix9Gbc,1072
|
|
399
|
-
regscale/models/regscale_models/control_implementation.py,sha256=
|
|
408
|
+
regscale/models/regscale_models/control_implementation.py,sha256=oLDypbjM1yi4OkkN5FdeAUo7UFoQ-b-eISl_scyNc1I,57484
|
|
400
409
|
regscale/models/regscale_models/control_objective.py,sha256=qGh8OtATjjc4JS-3bC1AX6TbgtRtz-I0dckbuZ2RzVo,9496
|
|
401
410
|
regscale/models/regscale_models/control_parameter.py,sha256=5VVkbVZTb2Hzy_WiybU2JtrvhQp8DLSWxRcbSKxktiI,3499
|
|
402
411
|
regscale/models/regscale_models/control_test.py,sha256=FG-fLS9JJf8__a84W2LtBXtEjzOH9iq2EO949vBx3eY,949
|
|
@@ -423,7 +432,7 @@ regscale/models/regscale_models/incident.py,sha256=jsS4MfigzjwFphvdIrBk62GfvbceQ
|
|
|
423
432
|
regscale/models/regscale_models/inheritance.py,sha256=n8CtDQZ8WPQ-AwC0kq5D0nMwK1_njfB-rUN5PdjiMOs,1314
|
|
424
433
|
regscale/models/regscale_models/inherited_control.py,sha256=RuQJgVyZgfoIrUG_vvwQYHECb3wsFjDH-zPj-bIFBNU,2007
|
|
425
434
|
regscale/models/regscale_models/interconnection.py,sha256=8Q9CGeHEX9TXQrim_NIAj9KuM4MwaUTpBLs_LKaXAlw,1256
|
|
426
|
-
regscale/models/regscale_models/issue.py,sha256=
|
|
435
|
+
regscale/models/regscale_models/issue.py,sha256=HhvhekeSOLePpLFEYz15ZbyFNJr78gJGTrCNluOmHNs,64848
|
|
427
436
|
regscale/models/regscale_models/leveraged_authorization.py,sha256=OUrL8JQV3r7T3ldHlL6Y_ZLv6KuQIC-3eZW5wZ7XFUk,4192
|
|
428
437
|
regscale/models/regscale_models/line_of_inquiry.py,sha256=Uu0lQEhif0W6yTSkJo27GyQGmExSngJvyqGBTr4Q8Fg,1713
|
|
429
438
|
regscale/models/regscale_models/link.py,sha256=lAY4Ig3Menm1EqfcAbVJ7jsCsRO5tWtJIf-9-G9FXT8,6593
|
|
@@ -528,7 +537,7 @@ tests/regscale/core/test_version.py,sha256=q8F2ERXxdToXbYxfOcP9f6lkUYaxF4jEmsPUm
|
|
|
528
537
|
tests/regscale/core/test_version_regscale.py,sha256=9DA1hFltt7pSWdFb3wP2bL3t4hAHsojoHvs1bolUjUw,2052
|
|
529
538
|
tests/regscale/integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
530
539
|
tests/regscale/integrations/test_api_paginator.py,sha256=42-F8FMkJwkZ1Xlsj7YYVyOb6-rbxwI4F4H6Y4ZI9jA,18973
|
|
531
|
-
tests/regscale/integrations/test_control_matcher.py,sha256=
|
|
540
|
+
tests/regscale/integrations/test_control_matcher.py,sha256=ff-1vZmOBZKErZqd6-M842TQhGxgSS82_BgFszsC5JA,58191
|
|
532
541
|
tests/regscale/integrations/test_control_matching.py,sha256=lejjVlnNA6aX2e4qgMGFpvEGG-ofzepyjeArax9J8aQ,4593
|
|
533
542
|
tests/regscale/integrations/test_integration_mapping.py,sha256=cXfWuE1h5Wrs-Nb--d83v0fllMQOs_IxYxquBJ90YNg,22549
|
|
534
543
|
tests/regscale/integrations/test_issue_creation.py,sha256=L4Fjww16S6sst2kqLoE0PK6WYL_pijSMzzxpWzdajRo,12089
|
|
@@ -546,7 +555,7 @@ tests/regscale/integrations/commercial/test_dependabot.py,sha256=etke2B9Z11dJj7k
|
|
|
546
555
|
tests/regscale/integrations/commercial/test_gcp.py,sha256=64AjFOMWdqg9Ul5sAaXrXHe7SmfS5OW1UVbFuURiyh4,72765
|
|
547
556
|
tests/regscale/integrations/commercial/test_gitlab.py,sha256=o0fAEjPXVvGEmQOotTb1jzBCz7nMaLBTIcS2p1j2IBI,20394
|
|
548
557
|
tests/regscale/integrations/commercial/test_ip_mac_address_length.py,sha256=sjIrC9RxhFecgqQ810l3UwtLdsOID31M-bEGOPnsMPE,2988
|
|
549
|
-
tests/regscale/integrations/commercial/test_jira.py,sha256=
|
|
558
|
+
tests/regscale/integrations/commercial/test_jira.py,sha256=oyPdDpjh4MiKlUYN14Za9XAHWc2HsrBVwiw4r3i0F54,86433
|
|
550
559
|
tests/regscale/integrations/commercial/test_npm_audit.py,sha256=g8Dyvb3hmYPKgTF6l7MNKnuiBEStK5tM8jFbs594IBQ,988
|
|
551
560
|
tests/regscale/integrations/commercial/test_okta.py,sha256=J3bBdotRRkIqdsEVLZLyt5PBI5u_dpmxXZnVFuSG1bs,47149
|
|
552
561
|
tests/regscale/integrations/commercial/test_sarif_converter.py,sha256=uONCJEfiV2flUIDa-iwFd_h5RnHSaFHoyvNrXtcOhVU,11251
|
|
@@ -557,30 +566,54 @@ tests/regscale/integrations/commercial/test_sqlserver.py,sha256=TktSuFoyLUmdimRx
|
|
|
557
566
|
tests/regscale/integrations/commercial/test_stig.py,sha256=fAG_GmqBvTP9EnqJF7jFPFm47SWo5JQ2Bbfjfif7x7A,860
|
|
558
567
|
tests/regscale/integrations/commercial/test_stig_mapper.py,sha256=wHHbvnIGCQqIeocq-XSQc73lkLuVQ-_TVT9WBMF36ns,7504
|
|
559
568
|
tests/regscale/integrations/commercial/test_stigv2.py,sha256=-y5bWHEdxHJY1xp4hqaW3PPaSz9tIw7Qg5EL69DZnHA,20102
|
|
560
|
-
tests/regscale/integrations/commercial/test_wiz.py,sha256=
|
|
569
|
+
tests/regscale/integrations/commercial/test_wiz.py,sha256=B_eafWUcGzYyY4SznrVgSgwObFMcoULju8lQJQtLWoA,57121
|
|
561
570
|
tests/regscale/integrations/commercial/test_wiz_inventory.py,sha256=796B5A7qW7XhALLwK_8U4bXUVHF0yAy8OPpw4oQNWDw,12157
|
|
562
571
|
tests/regscale/integrations/commercial/microsoft_defender/__init__.py,sha256=QbnltJbah_YSW6fOhcOdaJJJINghN67A28dhAIxT_xs,43
|
|
563
572
|
tests/regscale/integrations/commercial/microsoft_defender/test_defender.py,sha256=zRfEKhtrUA0p6MbxrPB_cCPhjNQPL6lmdZaPRoehJRc,63295
|
|
564
573
|
tests/regscale/integrations/commercial/microsoft_defender/test_defender_api.py,sha256=VvHpno51w03CUHGX1JZBjJOIpfHIxuh7QCh_lh5gcjM,72518
|
|
565
574
|
tests/regscale/integrations/commercial/microsoft_defender/test_defender_constants.py,sha256=P4gCPY3Bf-o6PQz-wjCHaNzOMZoOrB87lSwAHlWegI8,15266
|
|
566
575
|
tests/regscale/integrations/commercial/microsoft_defender/test_defender_scanner.py,sha256=fanEQJhDD-V_kXrhZP-3qVnM3nv2Ip7WcUqO9V_deWI,20141
|
|
567
|
-
tests/regscale/integrations/commercial/wizv2/__init__.py,sha256=
|
|
576
|
+
tests/regscale/integrations/commercial/wizv2/__init__.py,sha256=T_O4nc_w1TjwLiwPZAMGGb6lQl_lYKbnV2E9abaXzkM,15923
|
|
577
|
+
tests/regscale/integrations/commercial/wizv2/test_WizDataMixin.py,sha256=5WAczkw1WNMSUdCdk_LAggSIEYnkxKo6HbTysj1GAMQ,21406
|
|
578
|
+
tests/regscale/integrations/commercial/wizv2/test_click_comprehensive.py,sha256=7-hq4vKoZoUVxfi3jXiwwP6cJ5n1B9VOpTfll8IlHTY,34044
|
|
579
|
+
tests/regscale/integrations/commercial/wizv2/test_compliance_report_comprehensive.py,sha256=xBZzrRoSSszlp4LcVdedgOuqlqClp_5tcyOM68ve4sA,39711
|
|
568
580
|
tests/regscale/integrations/commercial/wizv2/test_compliance_report_normalization.py,sha256=dojmnptZTSwPBHrSumXZD0h6yHZ9kG3NSEQW_ZuhKrw,6278
|
|
569
|
-
tests/regscale/integrations/commercial/wizv2/
|
|
570
|
-
tests/regscale/integrations/commercial/wizv2/
|
|
571
|
-
tests/regscale/integrations/commercial/wizv2/
|
|
581
|
+
tests/regscale/integrations/commercial/wizv2/test_file_cleanup.py,sha256=vtJEgl-NYlZvW8rki8N1PTl-hPQ8T2naLnqyfMJaKi0,12266
|
|
582
|
+
tests/regscale/integrations/commercial/wizv2/test_file_operations.py,sha256=mUiOkyF1DOlvqEpkOFB-xxUAgWPWCGxzAakvlJujBhg,9304
|
|
583
|
+
tests/regscale/integrations/commercial/wizv2/test_issue.py,sha256=1Nt6q0VPrdW09Fif7uQEf_VTQiwSPO38R_3tjrSPZKo,14163
|
|
584
|
+
tests/regscale/integrations/commercial/wizv2/test_issue_comprehensive.py,sha256=9LgCdqtnFfYPkAgv8uUKLr-vIZO5O2Kpa53x9EQFmD8,44763
|
|
585
|
+
tests/regscale/integrations/commercial/wizv2/test_reports.py,sha256=MsUy617vLUKwmOqhCjOSBePRK1Z-cppbzIy9RfQld5w,21467
|
|
586
|
+
tests/regscale/integrations/commercial/wizv2/test_sbom.py,sha256=9SbeinArSIQMpdfz_KJv4UhJGnP8aCWUCTf8dnpO6Og,26168
|
|
587
|
+
tests/regscale/integrations/commercial/wizv2/test_scanner_comprehensive.py,sha256=WX96rZv8zwxsKOg-dzb1L6wuvcF94kxh7kZGFYTmgAA,40437
|
|
588
|
+
tests/regscale/integrations/commercial/wizv2/test_wiz_click_client_id.py,sha256=J0WkX2gCqXZgpX8hbSa1q_Ch5tsr5BJMZjvJA1kL_CQ,6079
|
|
589
|
+
tests/regscale/integrations/commercial/wizv2/test_wiz_compliance_report.py,sha256=-DMNwBBZIP_bRL81Hi7KLFwst-GyYIGY6tgjBdF9Ze4,67636
|
|
572
590
|
tests/regscale/integrations/commercial/wizv2/test_wiz_compliance_unit.py,sha256=NOzEk-Pxk8w8YpueKgH0fNEZ7kKyOGcdSFdKAZXX5FI,15049
|
|
573
591
|
tests/regscale/integrations/commercial/wizv2/test_wiz_control_normalization.py,sha256=26AaPUNUmQFXXT2G6unuWMF289B6LZMQRtHgC4W3iOw,5011
|
|
574
|
-
tests/regscale/integrations/commercial/wizv2/
|
|
592
|
+
tests/regscale/integrations/commercial/wizv2/test_wiz_findings_comprehensive.py,sha256=zieuADKOAlBjPPlUkgSvMMZOr4CvnIZTl_0MvsyK4XA,14955
|
|
593
|
+
tests/regscale/integrations/commercial/wizv2/test_wiz_inventory_comprehensive.py,sha256=2vEB9Hz_M1D2YQyZC3fD6RJCeXlRbUT3PRsu3DDek-A,27089
|
|
575
594
|
tests/regscale/integrations/commercial/wizv2/test_wiz_status_mapping.py,sha256=ZUeRHUt547FV0svfiGEIwyRuItoTDKtMeJFvBWuhWhg,6967
|
|
576
|
-
tests/regscale/integrations/commercial/wizv2/test_wizv2.py,sha256=
|
|
577
|
-
tests/regscale/integrations/commercial/wizv2/test_wizv2_utils.py,sha256
|
|
595
|
+
tests/regscale/integrations/commercial/wizv2/test_wizv2.py,sha256=qZ6Dh54NTfIJHy5PbaoLl1W4syTPl3htVqZvM5o6pAc,61072
|
|
596
|
+
tests/regscale/integrations/commercial/wizv2/test_wizv2_utils.py,sha256=U3qOibYbzF1adPPdpTbqyeWCT6t8cRaLy__o9F8mLO0,25182
|
|
597
|
+
tests/regscale/integrations/commercial/wizv2/compliance/__init__.py,sha256=_ceZ5sfxe2B6jHQuisE8iYg_G68IkArHYq1oTC9Ede0,47
|
|
598
|
+
tests/regscale/integrations/commercial/wizv2/compliance/test_helpers.py,sha256=0fuC9cuSSXzWeRrm9Y0KC7uOZsOPpiOz48m_C8nF6lg,35411
|
|
599
|
+
tests/regscale/integrations/commercial/wizv2/core/__init__.py,sha256=FcNmuWtmM-GquJ9in4MMQ7tt1aPAAo3pujCl0ttMAnI,33
|
|
600
|
+
tests/regscale/integrations/commercial/wizv2/core/test_auth.py,sha256=Gxn-__hdJY3SS2MO08O454F1ADpCpRa-FPnS9PLMU9w,25394
|
|
601
|
+
tests/regscale/integrations/commercial/wizv2/core/test_client.py,sha256=-1Pamzs7UhxXFvQ0YaJ9JTYPDKCK8POivmqHoWwxwG4,40507
|
|
602
|
+
tests/regscale/integrations/commercial/wizv2/core/test_file_operations.py,sha256=hfIRq0kgf9H624rTtZuqhB178eg3bJYTOTDANA-NTC4,36949
|
|
603
|
+
tests/regscale/integrations/commercial/wizv2/fetchers/__init__.py,sha256=DfXIBU4ItIuc0mdQT7QKBJYyiUhtCtjt8GQAHLbtN9g,37
|
|
604
|
+
tests/regscale/integrations/commercial/wizv2/fetchers/test_policy_assessment.py,sha256=OEwFKc7GeUItwK1ZbLWhU3WE2BIX59Ek42X6XdgGud8,32889
|
|
605
|
+
tests/regscale/integrations/commercial/wizv2/parsers/__init__.py,sha256=-qS5M8Ih9gQz0EuC2b6cMdT-mSiBaOZ2k2Pg_wbM5Bk,37
|
|
606
|
+
tests/regscale/integrations/commercial/wizv2/parsers/test_main.py,sha256=AOtz2Qp5IL7x1Mr-ba3NcWu-EjBvader3tnpPnabK0o,42377
|
|
607
|
+
tests/regscale/integrations/commercial/wizv2/processors/__init__.py,sha256=0AebADu2ssB_3bMPzoqT5gxwDYGtOnJFUxOQ7ioeLKo,39
|
|
608
|
+
tests/regscale/integrations/commercial/wizv2/processors/test_finding.py,sha256=xxYq7vCAWJirpt8-HklaQ0TRF4eFadOoUN2PmSzVNGw,26711
|
|
609
|
+
tests/regscale/integrations/commercial/wizv2/utils/__init__.py,sha256=PIKcAU5kcqFEy7awIYM-1uqSGgZbP27H4DrI82K0ep4,29
|
|
610
|
+
tests/regscale/integrations/commercial/wizv2/utils/test_main.py,sha256=VExH4ORw3C4KBzZiQwwtRpeGnsQhl5r0FMk0wD6OCBo,60749
|
|
578
611
|
tests/regscale/integrations/public/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
579
612
|
tests/regscale/integrations/public/test_alienvault.py,sha256=epxuflNgibIl1aYCU0FTVXXFWJbiqt0mYBV4HVaZYuw,9211
|
|
580
613
|
tests/regscale/integrations/public/test_cci.py,sha256=Zv5igmyYJpAwIAHrGQ-3Pd8MLvY8bh-B5FALL41PPU8,19525
|
|
581
614
|
tests/regscale/integrations/public/test_cisa.py,sha256=onfmI-8Nuhr7g0C87gweGoWhAubcqkmammRUD8QCQFE,41376
|
|
582
615
|
tests/regscale/integrations/public/test_emass.py,sha256=fDjQcsiXFhWGB399fikfW_khCrixB3nEL3cBlAm4XbQ,21797
|
|
583
|
-
tests/regscale/integrations/public/test_fedramp.py,sha256=
|
|
616
|
+
tests/regscale/integrations/public/test_fedramp.py,sha256=ppVsyj-zQRq5isH0Ht1_s9jrJUSBJSs9y976-LDHpwE,70161
|
|
584
617
|
tests/regscale/integrations/public/test_fedramp_cis_crm.py,sha256=i97r1ZdJHOdpQYPD-C2e8sFKllb8nhDgFm8gJVS-Kks,148169
|
|
585
618
|
tests/regscale/integrations/public/test_file_uploads.py,sha256=9hAxz8fM-pZzJye_E619gJCqXNTP1pKr8ML270QE3gU,21001
|
|
586
619
|
tests/regscale/integrations/public/test_oscal.py,sha256=XVAM2WicWH6trvk4jcCKVuMiJUFjsoAJmf2J-Q3aeY8,16900
|
|
@@ -602,9 +635,9 @@ tests/regscale/models/test_regscale_model.py,sha256=ZsrEZkC4EtdIsoQuayn1xv2gEGcV
|
|
|
602
635
|
tests/regscale/models/test_report.py,sha256=IqUq7C__a1_q_mLaz0PE9Lq6fHggBsB14-AzEYNBxLw,4666
|
|
603
636
|
tests/regscale/models/test_tenable_integrations.py,sha256=y1qaW77H094VSGHjZdlvF66UCt-nPEib9Mv3cdwbM94,32435
|
|
604
637
|
tests/regscale/models/test_user_model.py,sha256=e9olv28qBApgnvK6hFHOgXjUC-pkaV8aGDirEIWASL4,4427
|
|
605
|
-
regscale_cli-6.
|
|
606
|
-
regscale_cli-6.
|
|
607
|
-
regscale_cli-6.
|
|
608
|
-
regscale_cli-6.
|
|
609
|
-
regscale_cli-6.
|
|
610
|
-
regscale_cli-6.
|
|
638
|
+
regscale_cli-6.27.0.0.dist-info/LICENSE,sha256=ytNhYQ9Rmhj_m-EX2pPq9Ld6tH5wrqqDYg-fCf46WDU,1076
|
|
639
|
+
regscale_cli-6.27.0.0.dist-info/METADATA,sha256=jBcjE10GoVhVysBlr4ICwEcVGPRCCrkBmXVSW0TOBH8,34231
|
|
640
|
+
regscale_cli-6.27.0.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
641
|
+
regscale_cli-6.27.0.0.dist-info/entry_points.txt,sha256=cLOaIP1eRv1yZ2u7BvpE3aB4x3kDrDwkpeisKOu33z8,269
|
|
642
|
+
regscale_cli-6.27.0.0.dist-info/top_level.txt,sha256=Uv8VUCAdxRm70bgrD4YNEJUmDhBThad_1aaEFGwRByc,15
|
|
643
|
+
regscale_cli-6.27.0.0.dist-info/RECORD,,
|