regscale-cli 6.20.9.0__py3-none-any.whl → 6.20.9.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/core/app/application.py +1 -1
- regscale/integrations/commercial/synqly/vulnerabilities.py +33 -0
- regscale/models/integration_models/cisa_kev_data.json +8 -8
- regscale/models/integration_models/synqly_models/capabilities.json +1 -1
- {regscale_cli-6.20.9.0.dist-info → regscale_cli-6.20.9.1.dist-info}/METADATA +1 -1
- {regscale_cli-6.20.9.0.dist-info → regscale_cli-6.20.9.1.dist-info}/RECORD +12 -12
- tests/regscale/core/test_app.py +17 -0
- {regscale_cli-6.20.9.0.dist-info → regscale_cli-6.20.9.1.dist-info}/LICENSE +0 -0
- {regscale_cli-6.20.9.0.dist-info → regscale_cli-6.20.9.1.dist-info}/WHEEL +0 -0
- {regscale_cli-6.20.9.0.dist-info → regscale_cli-6.20.9.1.dist-info}/entry_points.txt +0 -0
- {regscale_cli-6.20.9.0.dist-info → regscale_cli-6.20.9.1.dist-info}/top_level.txt +0 -0
regscale/_version.py
CHANGED
regscale/core/app/application.py
CHANGED
|
@@ -467,7 +467,7 @@ class Application(metaclass=Singleton):
|
|
|
467
467
|
key = hashlib.sha256(bearer_token.encode()).digest()
|
|
468
468
|
|
|
469
469
|
# Create cipher
|
|
470
|
-
cipher = Cipher(algorithms.AES(key), modes.
|
|
470
|
+
cipher = Cipher(algorithms.AES(key), modes.CBC(iv), backend=default_backend())
|
|
471
471
|
|
|
472
472
|
# Decrypt
|
|
473
473
|
decryptor = cipher.decryptor()
|
|
@@ -148,6 +148,39 @@ def sync_rapid7_insight_cloud(regscale_ssp_id: int, vuln_filter: str, scan_date:
|
|
|
148
148
|
)
|
|
149
149
|
|
|
150
150
|
|
|
151
|
+
@vulnerabilities.command(name="sync_servicenow_vr")
|
|
152
|
+
@regscale_ssp_id()
|
|
153
|
+
@click.option(
|
|
154
|
+
"--vuln_filter",
|
|
155
|
+
help="Filter the vulnerabilities for the selected severity. (Options: critical, high, medium, low, info)",
|
|
156
|
+
required=False,
|
|
157
|
+
type=click.Choice(["critical", "high", "medium", "low", "info"]),
|
|
158
|
+
default=None,
|
|
159
|
+
)
|
|
160
|
+
@click.option(
|
|
161
|
+
"--scan_date",
|
|
162
|
+
help="The date of the scan to sync vulnerabilities from Servicenow Vr",
|
|
163
|
+
required=False,
|
|
164
|
+
type=click.DateTime(formats=["%Y-%m-%d"]),
|
|
165
|
+
default=None,
|
|
166
|
+
)
|
|
167
|
+
@click.option(
|
|
168
|
+
"--all_scans",
|
|
169
|
+
help="Whether to sync all vulnerabilities from Servicenow Vr",
|
|
170
|
+
required=False,
|
|
171
|
+
is_flag=True,
|
|
172
|
+
default=False,
|
|
173
|
+
)
|
|
174
|
+
def sync_servicenow_vr(regscale_ssp_id: int, vuln_filter: str, scan_date: datetime, all_scans: bool) -> None:
|
|
175
|
+
"""Sync Vulnerabilities from Servicenow Vr to RegScale."""
|
|
176
|
+
from regscale.models.integration_models.synqly_models.connectors import Vulnerabilities
|
|
177
|
+
|
|
178
|
+
vulnerabilities_servicenow_vr = Vulnerabilities("servicenow_vr")
|
|
179
|
+
vulnerabilities_servicenow_vr.run_sync(
|
|
180
|
+
regscale_ssp_id=regscale_ssp_id, vuln_filter=vuln_filter, scan_date=scan_date, all_scans=all_scans
|
|
181
|
+
)
|
|
182
|
+
|
|
183
|
+
|
|
151
184
|
@vulnerabilities.command(name="sync_tanium_cloud")
|
|
152
185
|
@regscale_ssp_id()
|
|
153
186
|
@click.option(
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"title": "CISA Catalog of Known Exploited Vulnerabilities",
|
|
3
|
-
"catalogVersion": "2025.07.
|
|
4
|
-
"dateReleased": "2025-07-
|
|
3
|
+
"catalogVersion": "2025.07.29",
|
|
4
|
+
"dateReleased": "2025-07-29T12:46:00.2038Z",
|
|
5
5
|
"count": 1391,
|
|
6
6
|
"vulnerabilities": [
|
|
7
7
|
{
|
|
@@ -115,8 +115,8 @@
|
|
|
115
115
|
"product": "SharePoint",
|
|
116
116
|
"vulnerabilityName": "Microsoft SharePoint Code Injection Vulnerability",
|
|
117
117
|
"dateAdded": "2025-07-22",
|
|
118
|
-
"shortDescription": "Microsoft SharePoint contains a code injection vulnerability that could allow an authorized attacker to execute code over a network. This vulnerability could be chained with CVE-2025-49706.
|
|
119
|
-
"requiredAction": "
|
|
118
|
+
"shortDescription": "Microsoft SharePoint contains a code injection vulnerability that could allow an authorized attacker to execute code over a network. This vulnerability could be chained with CVE-2025-49706. CVE-2025-53770 is a patch bypass for CVE-2025-49704, and the updates for CVE-2025-53770 include more robust protection than those for CVE-2025-49704.",
|
|
119
|
+
"requiredAction": "Disconnect public-facing versions of SharePoint Server that have reached their end-of-life (EOL) or end-of-service (EOS) to include SharePoint Server 2013 and earlier versions. For supported versions, please follow the mitigations according to CISA (URL listed below in Notes) and vendor instructions (URL listed below in Notes). Adhere to the applicable BOD 22-01 guidance for cloud services or discontinue use of the product if mitigations are not available.",
|
|
120
120
|
"dueDate": "2025-07-23",
|
|
121
121
|
"knownRansomwareCampaignUse": "Known",
|
|
122
122
|
"notes": "CISA Mitigation Instructions: https:\/\/www.cisa.gov\/news-events\/alerts\/2025\/07\/20\/microsoft-releases-guidance-exploitation-sharepoint-vulnerability-cve-2025-53770; https:\/\/www.microsoft.com\/en-us\/security\/blog\/2025\/07\/22\/disrupting-active-exploitation-of-on-premises-sharepoint-vulnerabilities\/ ; https:\/\/msrc.microsoft.com\/update-guide\/vulnerability\/CVE-2025-49704 ; https:\/\/nvd.nist.gov\/vuln\/detail\/CVE-2025-49704",
|
|
@@ -130,8 +130,8 @@
|
|
|
130
130
|
"product": "SharePoint",
|
|
131
131
|
"vulnerabilityName": "Microsoft SharePoint Improper Authentication Vulnerability",
|
|
132
132
|
"dateAdded": "2025-07-22",
|
|
133
|
-
"shortDescription": "Microsoft SharePoint contains an improper authentication vulnerability that allows an authorized attacker to perform spoofing over a network. Successfully exploitation could allow an attacker to view sensitive information and make some changes to disclosed information. This vulnerability could be chained with CVE-2025-49704.
|
|
134
|
-
"requiredAction": "
|
|
133
|
+
"shortDescription": "Microsoft SharePoint contains an improper authentication vulnerability that allows an authorized attacker to perform spoofing over a network. Successfully exploitation could allow an attacker to view sensitive information and make some changes to disclosed information. This vulnerability could be chained with CVE-2025-49704. CVE-2025-53771 is a patch bypass for CVE-2025-49706, and the updates for CVE-2025-53771 include more robust protection than those for CVE-2025-49706.",
|
|
134
|
+
"requiredAction": "Disconnect public-facing versions of SharePoint Server that have reached their end-of-life (EOL) or end-of-service (EOS) to include SharePoint Server 2013 and earlier versions. For supported versions, please follow the mitigations according to CISA (URL listed below in Notes) and vendor instructions (URL listed below in Notes). Adhere to the applicable BOD 22-01 guidance for cloud services or discontinue use of the product if mitigations are not available.",
|
|
135
135
|
"dueDate": "2025-07-23",
|
|
136
136
|
"knownRansomwareCampaignUse": "Known",
|
|
137
137
|
"notes": "CISA Mitigation Instructions: https:\/\/www.cisa.gov\/news-events\/alerts\/2025\/07\/20\/microsoft-releases-guidance-exploitation-sharepoint-vulnerability-cve-2025-53770 ; https:\/\/www.microsoft.com\/en-us\/security\/blog\/2025\/07\/22\/disrupting-active-exploitation-of-on-premises-sharepoint-vulnerabilities\/ ; https:\/\/msrc.microsoft.com\/update-guide\/vulnerability\/CVE-2025-49706 ; https:\/\/nvd.nist.gov\/vuln\/detail\/CVE-2025-49706",
|
|
@@ -145,8 +145,8 @@
|
|
|
145
145
|
"product": "SharePoint",
|
|
146
146
|
"vulnerabilityName": "Microsoft SharePoint Deserialization of Untrusted Data Vulnerability",
|
|
147
147
|
"dateAdded": "2025-07-20",
|
|
148
|
-
"shortDescription": "Microsoft SharePoint Server on-premises contains a deserialization of untrusted data vulnerability that could allow an unauthorized attacker to execute code over a network.",
|
|
149
|
-
"requiredAction": "
|
|
148
|
+
"shortDescription": "Microsoft SharePoint Server on-premises contains a deserialization of untrusted data vulnerability that could allow an unauthorized attacker to execute code over a network. This vulnerability could be chained with CVE-2025-53771. CVE-2025-53770 is a patch bypass for CVE-2025-49704, and the updates for CVE-2025-53770 include more robust protection than those for CVE-2025-49704.",
|
|
149
|
+
"requiredAction": "Disconnect public-facing versions of SharePoint Server that have reached their end-of-life (EOL) or end-of-service (EOS) to include SharePoint Server 2013 and earlier versions. For supported versions, please follow the mitigations according to CISA (URL listed below in Notes) and vendor instructions (URL listed below in Notes). Adhere to the applicable BOD 22-01 guidance for cloud services or discontinue use of the product if mitigations are not available.",
|
|
150
150
|
"dueDate": "2025-07-21",
|
|
151
151
|
"knownRansomwareCampaignUse": "Unknown",
|
|
152
152
|
"notes": "CISA Mitigation Instructions: https:\/\/www.cisa.gov\/news-events\/alerts\/2025\/07\/20\/microsoft-releases-guidance-exploitation-sharepoint-vulnerability-cve-2025-53770; https:\/\/www.microsoft.com\/en-us\/security\/blog\/2025\/07\/22\/disrupting-active-exploitation-of-on-premises-sharepoint-vulnerabilities\/ ; https:\/\/msrc.microsoft.com\/update-guide\/vulnerability\/CVE-2025-53770 ; https:\/\/nvd.nist.gov\/vuln\/detail\/CVE-2025-53770",
|