regscale-cli 6.21.1.0__py3-none-any.whl → 6.21.2.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.
- regscale/_version.py +1 -1
- regscale/core/app/application.py +7 -0
- regscale/integrations/commercial/__init__.py +8 -8
- regscale/integrations/commercial/import_all/import_all_cmd.py +2 -2
- regscale/integrations/commercial/microsoft_defender/__init__.py +0 -0
- regscale/integrations/commercial/{defender.py → microsoft_defender/defender.py} +38 -612
- regscale/integrations/commercial/microsoft_defender/defender_api.py +286 -0
- regscale/integrations/commercial/microsoft_defender/defender_constants.py +80 -0
- regscale/integrations/commercial/microsoft_defender/defender_scanner.py +168 -0
- regscale/integrations/commercial/qualys/__init__.py +24 -86
- regscale/integrations/commercial/qualys/containers.py +2 -0
- regscale/integrations/commercial/qualys/scanner.py +7 -2
- regscale/integrations/commercial/sonarcloud.py +110 -71
- regscale/integrations/commercial/wizv2/click.py +4 -1
- regscale/integrations/commercial/wizv2/data_fetcher.py +401 -0
- regscale/integrations/commercial/wizv2/finding_processor.py +295 -0
- regscale/integrations/commercial/wizv2/policy_compliance.py +1402 -203
- regscale/integrations/commercial/wizv2/policy_compliance_helpers.py +564 -0
- regscale/integrations/commercial/wizv2/scanner.py +4 -4
- regscale/integrations/compliance_integration.py +212 -60
- regscale/integrations/public/fedramp/fedramp_five.py +92 -7
- regscale/integrations/scanner_integration.py +27 -4
- regscale/models/__init__.py +1 -1
- regscale/models/integration_models/cisa_kev_data.json +33 -3
- regscale/models/integration_models/synqly_models/capabilities.json +1 -1
- regscale/models/regscale_models/issue.py +29 -9
- {regscale_cli-6.21.1.0.dist-info → regscale_cli-6.21.2.0.dist-info}/METADATA +1 -1
- {regscale_cli-6.21.1.0.dist-info → regscale_cli-6.21.2.0.dist-info}/RECORD +32 -27
- tests/regscale/test_authorization.py +0 -65
- tests/regscale/test_init.py +0 -96
- {regscale_cli-6.21.1.0.dist-info → regscale_cli-6.21.2.0.dist-info}/LICENSE +0 -0
- {regscale_cli-6.21.1.0.dist-info → regscale_cli-6.21.2.0.dist-info}/WHEEL +0 -0
- {regscale_cli-6.21.1.0.dist-info → regscale_cli-6.21.2.0.dist-info}/entry_points.txt +0 -0
- {regscale_cli-6.21.1.0.dist-info → regscale_cli-6.21.2.0.dist-info}/top_level.txt +0 -0
regscale/_version.py
CHANGED
regscale/core/app/application.py
CHANGED
|
@@ -172,6 +172,13 @@ class Application(metaclass=Singleton):
|
|
|
172
172
|
"minimumSeverity": "low",
|
|
173
173
|
"useKev": True, # Override the issue due date with the KEV date
|
|
174
174
|
},
|
|
175
|
+
"sonarcloud": {
|
|
176
|
+
"blocker": 7,
|
|
177
|
+
"critical": 30,
|
|
178
|
+
"major": 90,
|
|
179
|
+
"minor": 365,
|
|
180
|
+
"status": "Open",
|
|
181
|
+
},
|
|
175
182
|
"nexpose": {
|
|
176
183
|
"critical": 30,
|
|
177
184
|
"high": 30,
|
|
@@ -110,14 +110,14 @@ def crowdstrike():
|
|
|
110
110
|
@click.group(
|
|
111
111
|
cls=LazyGroup,
|
|
112
112
|
lazy_subcommands={
|
|
113
|
-
"authenticate": "regscale.integrations.commercial.defender.authenticate_in_defender",
|
|
114
|
-
"sync_365_alerts": "regscale.integrations.commercial.defender.sync_365_alerts",
|
|
115
|
-
"sync_365_recommendations": "regscale.integrations.commercial.defender.sync_365_recommendations",
|
|
116
|
-
"sync_cloud_resources": "regscale.integrations.commercial.defender.sync_cloud_resources",
|
|
117
|
-
"export_resources": "regscale.integrations.commercial.defender.export_resources_to_csv",
|
|
118
|
-
"sync_cloud_alerts": "regscale.integrations.commercial.defender.sync_cloud_alerts",
|
|
119
|
-
"sync_cloud_recommendations": "regscale.integrations.commercial.defender.sync_cloud_recommendations",
|
|
120
|
-
"import_alerts": "regscale.integrations.commercial.defender.import_alerts",
|
|
113
|
+
"authenticate": "regscale.integrations.commercial.microsoft_defender.defender.authenticate_in_defender",
|
|
114
|
+
"sync_365_alerts": "regscale.integrations.commercial.microsoft_defender.defender.sync_365_alerts",
|
|
115
|
+
"sync_365_recommendations": "regscale.integrations.commercial.microsoft_defender.defender.sync_365_recommendations",
|
|
116
|
+
"sync_cloud_resources": "regscale.integrations.commercial.microsoft_defender.defender.sync_cloud_resources",
|
|
117
|
+
"export_resources": "regscale.integrations.commercial.microsoft_defender.defender.export_resources_to_csv",
|
|
118
|
+
"sync_cloud_alerts": "regscale.integrations.commercial.microsoft_defender.defender.sync_cloud_alerts",
|
|
119
|
+
"sync_cloud_recommendations": "regscale.integrations.commercial.microsoft_defender.defender.sync_cloud_recommendations",
|
|
120
|
+
"import_alerts": "regscale.integrations.commercial.microsoft_defender.defender.import_alerts",
|
|
121
121
|
},
|
|
122
122
|
name="defender",
|
|
123
123
|
)
|
|
@@ -87,7 +87,7 @@ def import_all_scans(
|
|
|
87
87
|
from regscale.integrations.commercial.aqua.aqua import import_aqua
|
|
88
88
|
from regscale.integrations.commercial.aws.cli import import_scans as import_aws
|
|
89
89
|
from regscale.integrations.commercial.burp import import_burp
|
|
90
|
-
from regscale.integrations.commercial.defender import import_alerts
|
|
90
|
+
from regscale.integrations.commercial.microsoft_defender.defender import import_alerts
|
|
91
91
|
from regscale.integrations.commercial.ecr import import_ecr
|
|
92
92
|
from regscale.integrations.commercial.grype.commands import import_scans as import_grype_scans
|
|
93
93
|
from regscale.integrations.commercial.ibm import import_appscan
|
|
@@ -96,7 +96,7 @@ def import_all_scans(
|
|
|
96
96
|
from regscale.integrations.commercial.prisma import import_prisma
|
|
97
97
|
from regscale.integrations.commercial.qualys import import_scans as import_qualys
|
|
98
98
|
from regscale.integrations.commercial.snyk import import_snyk
|
|
99
|
-
from regscale.integrations.commercial.tenablev2.
|
|
99
|
+
from regscale.integrations.commercial.tenablev2.commands import import_nessus
|
|
100
100
|
from regscale.integrations.commercial.trivy import import_scans as import_trivy_scans
|
|
101
101
|
from regscale.integrations.commercial.veracode import import_veracode
|
|
102
102
|
from regscale.integrations.commercial.xray import import_xray
|
|
File without changes
|