regscale-cli 6.22.0.0__py3-none-any.whl → 6.22.0.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/_version.py +1 -1
- regscale/integrations/commercial/synqly/edr.py +2 -8
- regscale/integrations/public/csam/__init__.py +0 -0
- regscale/integrations/public/csam/csam.py +1129 -0
- regscale/models/integration_models/cisa_kev_data.json +33 -3
- regscale/models/integration_models/synqly_models/capabilities.json +1 -1
- {regscale_cli-6.22.0.0.dist-info → regscale_cli-6.22.0.1.dist-info}/METADATA +1 -1
- {regscale_cli-6.22.0.0.dist-info → regscale_cli-6.22.0.1.dist-info}/RECORD +12 -10
- {regscale_cli-6.22.0.0.dist-info → regscale_cli-6.22.0.1.dist-info}/LICENSE +0 -0
- {regscale_cli-6.22.0.0.dist-info → regscale_cli-6.22.0.1.dist-info}/WHEEL +0 -0
- {regscale_cli-6.22.0.0.dist-info → regscale_cli-6.22.0.1.dist-info}/entry_points.txt +0 -0
- {regscale_cli-6.22.0.0.dist-info → regscale_cli-6.22.0.1.dist-info}/top_level.txt +0 -0
regscale/_version.py
CHANGED
|
@@ -73,18 +73,12 @@ def sync_sentinelone(regscale_ssp_id: int, edr_events_url: str) -> None:
|
|
|
73
73
|
|
|
74
74
|
@edr.command(name="sync_sophos")
|
|
75
75
|
@regscale_ssp_id()
|
|
76
|
-
|
|
77
|
-
"--url",
|
|
78
|
-
type=click.STRING,
|
|
79
|
-
help="Base URL for the Sophos Endpoint API.",
|
|
80
|
-
required=False,
|
|
81
|
-
)
|
|
82
|
-
def sync_sophos(regscale_ssp_id: int, url: str) -> None:
|
|
76
|
+
def sync_sophos(regscale_ssp_id: int) -> None:
|
|
83
77
|
"""Sync Edr from Sophos to RegScale."""
|
|
84
78
|
from regscale.models.integration_models.synqly_models.connectors import Edr
|
|
85
79
|
|
|
86
80
|
edr_sophos = Edr("sophos")
|
|
87
|
-
edr_sophos.run_sync(regscale_ssp_id=regscale_ssp_id
|
|
81
|
+
edr_sophos.run_sync(regscale_ssp_id=regscale_ssp_id)
|
|
88
82
|
|
|
89
83
|
|
|
90
84
|
@edr.command(name="sync_tanium")
|
|
File without changes
|