regscale-cli 6.20.1.1__py3-none-any.whl → 6.20.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.

Potentially problematic release.


This version of regscale-cli might be problematic. Click here for more details.

Files changed (39) hide show
  1. regscale/__init__.py +1 -1
  2. regscale/core/app/utils/variables.py +5 -3
  3. regscale/integrations/commercial/__init__.py +2 -0
  4. regscale/integrations/commercial/burp.py +14 -0
  5. regscale/integrations/commercial/grype/commands.py +8 -1
  6. regscale/integrations/commercial/grype/scanner.py +2 -1
  7. regscale/integrations/commercial/jira.py +290 -133
  8. regscale/integrations/commercial/opentext/commands.py +14 -5
  9. regscale/integrations/commercial/opentext/scanner.py +3 -2
  10. regscale/integrations/commercial/qualys/__init__.py +3 -3
  11. regscale/integrations/commercial/stigv2/click_commands.py +6 -37
  12. regscale/integrations/commercial/tenablev2/commands.py +12 -4
  13. regscale/integrations/commercial/tenablev2/sc_scanner.py +21 -1
  14. regscale/integrations/commercial/tenablev2/sync_compliance.py +3 -0
  15. regscale/integrations/commercial/trivy/commands.py +11 -4
  16. regscale/integrations/commercial/trivy/scanner.py +2 -1
  17. regscale/integrations/jsonl_scanner_integration.py +8 -1
  18. regscale/integrations/public/cisa.py +58 -63
  19. regscale/integrations/public/fedramp/fedramp_cis_crm.py +88 -93
  20. regscale/integrations/scanner_integration.py +22 -6
  21. regscale/models/app_models/click.py +49 -1
  22. regscale/models/integration_models/burp.py +11 -8
  23. regscale/models/integration_models/cisa_kev_data.json +142 -21
  24. regscale/models/integration_models/flat_file_importer/__init__.py +36 -176
  25. regscale/models/integration_models/jira_task_sync.py +27 -0
  26. regscale/models/integration_models/qualys.py +6 -7
  27. regscale/models/integration_models/synqly_models/capabilities.json +1 -1
  28. regscale/models/regscale_models/control_implementation.py +39 -2
  29. regscale/models/regscale_models/regscale_model.py +49 -1
  30. regscale/models/regscale_models/task.py +1 -0
  31. regscale/regscale.py +1 -4
  32. regscale/utils/string.py +13 -0
  33. {regscale_cli-6.20.1.1.dist-info → regscale_cli-6.20.2.0.dist-info}/METADATA +1 -1
  34. {regscale_cli-6.20.1.1.dist-info → regscale_cli-6.20.2.0.dist-info}/RECORD +38 -38
  35. regscale/integrations/commercial/synqly_jira.py +0 -840
  36. {regscale_cli-6.20.1.1.dist-info → regscale_cli-6.20.2.0.dist-info}/LICENSE +0 -0
  37. {regscale_cli-6.20.1.1.dist-info → regscale_cli-6.20.2.0.dist-info}/WHEEL +0 -0
  38. {regscale_cli-6.20.1.1.dist-info → regscale_cli-6.20.2.0.dist-info}/entry_points.txt +0 -0
  39. {regscale_cli-6.20.1.1.dist-info → regscale_cli-6.20.2.0.dist-info}/top_level.txt +0 -0
@@ -4,7 +4,7 @@
4
4
  # standard python imports
5
5
  import logging
6
6
  from enum import Enum
7
- from typing import Any, Callable, Dict, List, Optional, Union
7
+ from typing import Any, Callable, Dict, List, Optional, Union, TypeVar
8
8
  from urllib.parse import urljoin
9
9
 
10
10
  import requests
@@ -19,6 +19,7 @@ from regscale.models.regscale_models.implementation_role import ImplementationRo
19
19
  from regscale.models.regscale_models.regscale_model import RegScaleModel
20
20
  from regscale.models.regscale_models.security_control import SecurityControl
21
21
 
22
+
22
23
  logger = logging.getLogger("regscale")
23
24
  PATCH_CONTENT_TYPE = "application/json-patch+json"
24
25
 
@@ -79,7 +80,7 @@ class ControlImplementation(RegScaleModel):
79
80
  parentId: Optional[int] = None
80
81
  parentModule: Optional[str] = None
81
82
  control: Union[SecurityControl, dict, None] = None # Security Control object
82
- createdById: Optional[str] = Field(default_factory=get_current_datetime)
83
+ createdById: Optional[str] = Field(default_factory=RegScaleModel.get_user_id)
83
84
  uuid: Optional[str] = None
84
85
  policy: Optional[str] = None
85
86
  implementation: Optional[str] = None
@@ -1133,3 +1134,39 @@ class ControlImplementation(RegScaleModel):
1133
1134
  ImplementationRole.add_role(
1134
1135
  role_id=role_id, control_implementation_id=self.id, parent_module=self._module_string
1135
1136
  )
1137
+
1138
+ @classmethod
1139
+ def get_list_by_parent(cls, regscale_id: int, regscale_module: str) -> Optional[list[dict]]:
1140
+ """
1141
+ Get a list of control implementations by parent ID and module.
1142
+
1143
+ :param int regscale_id: parent id of control implementation
1144
+ :param str regscale_module: parent module of control implementation
1145
+ :return: list of control implementations, or None if not found
1146
+ :rtype: Optional[list[dict]]
1147
+ """
1148
+ endpoint = cls.get_endpoint("get_list_by_parent").format(int_id=regscale_id, str_module=regscale_module)
1149
+ response = cls._get_api_handler().get(endpoint=endpoint)
1150
+ if response and response.ok:
1151
+ return response.json()
1152
+ return None
1153
+
1154
+ @classmethod
1155
+ def get_list_by_parent_control(
1156
+ cls, regscale_id: int, regscale_module: str, control_id: int
1157
+ ) -> Optional["ControlImplementation"]:
1158
+ """
1159
+ Get a control implementation by parent ID, module, and control ID.
1160
+ :param int regscale_id: parent id of control implementation
1161
+ :param str regscale_module: parent module of control implementation
1162
+ :param int control_id: ID of the parent control
1163
+ :return: list of control implementations for the given parent control and record
1164
+ :rtype: List[ControlImplementation]
1165
+ """
1166
+ endpoint = cls.get_endpoint("get_list_by_parent_control").format(parent_control_id=control_id)
1167
+ response = cls._api_handler.get(endpoint=endpoint)
1168
+ control_imps: List["ControlImplementation"] = cls._handle_list_response(response)
1169
+ for control_imp in control_imps:
1170
+ if (control_imp.parentId == regscale_id) and (control_imp.parentModule == regscale_module):
1171
+ return control_imp
1172
+ return None
@@ -468,7 +468,7 @@ class RegScaleModel(BaseModel, ABC):
468
468
  return []
469
469
 
470
470
  # Check if the first element is a string (old format) or a list (new format)
471
- if cls._unique_fields and isinstance(cls._unique_fields[0], str):
471
+ if isinstance(cls._unique_fields[0], str):
472
472
  import warnings
473
473
 
474
474
  warnings.warn(
@@ -1441,6 +1441,54 @@ class RegScaleModel(BaseModel, ABC):
1441
1441
  logger.warning(f"{cls.__name__}: No matching record found for ID: {cls.__name__} {object_id}")
1442
1442
  return None
1443
1443
 
1444
+ @classmethod
1445
+ def get_objects_and_attachments_by_parent(
1446
+ cls, parent_id: int, parent_module: str
1447
+ ) -> Tuple[List[T], Dict[int, List["File"]]]:
1448
+ """
1449
+ Get a list of objects and their attachments by the provided parent ID and module
1450
+
1451
+ :param int parent_id: The ID of the parent
1452
+ :param str parent_module: The module of the parent
1453
+ :return: A tuple of a list of objects and a list of attachments
1454
+ :rtype: Tuple[List[T], dict[int, List["File"]]]
1455
+ """
1456
+ from regscale.models import File
1457
+
1458
+ # get the existing issues for the parent record that are already in RegScale
1459
+ logger.info("Fetching full %s list from RegScale %s #%i.", cls.__name__, parent_module, parent_id)
1460
+ try:
1461
+ objects_data = cls.get_all_by_parent(
1462
+ parent_id=parent_id,
1463
+ parent_module=parent_module,
1464
+ )
1465
+ except Exception as e:
1466
+ logger.error("Error fetching %s list from RegScale %s #%i: %s", cls.__name__, parent_module, parent_id, e)
1467
+ return [], []
1468
+
1469
+ if len(objects_data) == 0:
1470
+ logger.warning("No existing %s from RegScale %s #%i.", cls.__name__, parent_module, parent_id)
1471
+ return [], []
1472
+
1473
+ attachments = {
1474
+ regscale_object.id: files
1475
+ for regscale_object in objects_data
1476
+ if (
1477
+ files := File.get_files_for_parent_from_regscale(
1478
+ parent_id=regscale_object.id,
1479
+ parent_module=cls.get_module_slug(),
1480
+ )
1481
+ )
1482
+ }
1483
+ logger.info(
1484
+ "Found %i %s(s) from RegScale %s #%i for processing.",
1485
+ len(objects_data),
1486
+ cls.__name__,
1487
+ parent_module,
1488
+ parent_id,
1489
+ )
1490
+ return objects_data, attachments
1491
+
1444
1492
  @classmethod
1445
1493
  def get_list(cls) -> List[T]:
1446
1494
  """
@@ -117,6 +117,7 @@ class Task(RegScaleModel):
117
117
  and self.description == other.description
118
118
  and self.parentId == other.parentId
119
119
  and self.parentModule == other.parentModule
120
+ and self.status == other.status
120
121
  )
121
122
 
122
123
  def __hash__(self) -> int:
regscale/regscale.py CHANGED
@@ -181,7 +181,6 @@ sonarcloud = import_command_with_timing(COMMERCIAL, "sonarcloud")
181
181
  tenable = import_command_with_timing(COMMERCIAL, "tenable")
182
182
  trivy = import_command_with_timing(COMMERCIAL, "trivy")
183
183
  grype = import_command_with_timing(COMMERCIAL, "grype")
184
- tenable_v2 = import_command_with_timing("regscale.integrations.commercial.tenablev2.commands", "tenable")
185
184
  veracode = import_command_with_timing(COMMERCIAL, "veracode")
186
185
  wiz = import_command_with_timing(COMMERCIAL, "wiz")
187
186
  xray = import_command_with_timing(COMMERCIAL, "xray")
@@ -796,12 +795,10 @@ cli.add_command(veracode) # add Veracode Integration
796
795
  cli.add_command(sonarcloud) # add SonarCloud Integration
797
796
  cli.add_command(stig) # add STIGv2 support
798
797
  cli.add_command(stig_mapper) # add STIG Mapper support
799
- cli.add_command(tenable) # add Tenable support
798
+ cli.add_command(tenable) # add Tenable & TenableV2 support
800
799
  cli.add_command(trivy) # add Trivy support
801
800
  cli.add_command(wiz) # add Wiz support
802
801
  cli.add_command(xray) # add JFrog Xray support
803
- tenable_v2.name = "tenable2" # Use a different name to avoid conflict
804
- cli.add_command(tenable_v2) # add Tenable v2 support
805
802
 
806
803
  ############################################################
807
804
  # Add Public Integrations
regscale/utils/string.py CHANGED
@@ -119,3 +119,16 @@ def generate_html_table_from_dict(data: dict) -> str:
119
119
  description += f"<tr><td>{key}</td><td>{value}</td></tr>"
120
120
  description += "</table>"
121
121
  return description
122
+
123
+
124
+ def extract_url(html: str) -> Optional[str]:
125
+ """
126
+ Extract URL from HTML string
127
+
128
+ :param str html: HTML string
129
+ :return: URL
130
+ :rtype: Optional[str]
131
+ """
132
+ if url := re.findall(r"https?://[^\s]+", html):
133
+ return url[0].replace('"', "")
134
+ return None
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: regscale-cli
3
- Version: 6.20.1.1
3
+ Version: 6.20.2.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
@@ -1,5 +1,5 @@
1
- regscale/__init__.py,sha256=R8kQpB2LbsQlXKthcZP_3nYntLB4F_F8_ZKonzaI8y4,25
2
- regscale/regscale.py,sha256=t4uLMzy9P_KeKazI9ZTQupTkbgh28uMilLSpmzn7adE,30983
1
+ regscale/__init__.py,sha256=Zj7ClQEa28QZ5_JlNHHC6GvyCXR02JyBsOvDnhNXUx0,25
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
5
5
  regscale/airflow/click_mixins.py,sha256=BTwKWsEu6KVtlrzFbXpD_RuEpMzc-CSnCCySUzqzCgQ,3571
@@ -61,7 +61,7 @@ regscale/core/app/utils/parser_utils.py,sha256=aBEgcFwbJMD-ARf3wzf-tyWwR6NHvzEcd
61
61
  regscale/core/app/utils/pickle_file_handler.py,sha256=iMdv4N8z00TB5LyPdxIcLKNRpDQVWQ8ZQWAqCKpqmF0,1695
62
62
  regscale/core/app/utils/regscale_utils.py,sha256=fGcYc8lGwBsT3GP2RKkROPztslsNKYVXZvEeIFHeUig,10431
63
63
  regscale/core/app/utils/report_utils.py,sha256=rKn3nmiSPq8LTKM16UiKBSizTsZKh-7JwdOlfX6YSpQ,4210
64
- regscale/core/app/utils/variables.py,sha256=VRLsFIPlhBBvr1DzAT6C8M5GKeSVfNcFzmy-yEEdf-s,8928
64
+ regscale/core/app/utils/variables.py,sha256=h29Qrr6jg-Feo74IeqHz28wYLhgtzZ2pCDMf6g0WJFU,8989
65
65
  regscale/core/app/utils/catalog_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
66
66
  regscale/core/app/utils/catalog_utils/common.py,sha256=LDisn1fyfXC_cPV5rcGuDBKtSug2zv_ju9G9r_k4-BU,2812
67
67
  regscale/core/app/utils/catalog_utils/compare_catalog.py,sha256=WtmRPQYI7Hg5hZ4xeWL8gLG8JcLtWxozonWTITRa4Ow,7336
@@ -110,12 +110,12 @@ regscale/integrations/__init__.py,sha256=Sqthp3Jggo7co_go380cLn3OAb0cHwqL609_4QJ
110
110
  regscale/integrations/api_paginator.py,sha256=73rjaNM9mGv8evHAeoObXEjZPg-bJuGPo60ewCLEil8,33192
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
- regscale/integrations/jsonl_scanner_integration.py,sha256=fglDgJN9alUvbJzNYKrlIf_25oqQ8kIU0moE3f9tDMQ,56717
114
- regscale/integrations/scanner_integration.py,sha256=yc8jNyffno6EgvoulDbPw3zkVnZ5jUZr5DQwa1Stw24,134738
113
+ regscale/integrations/jsonl_scanner_integration.py,sha256=l8nq_T3rE1XX-6HxrNHm3xzxCNWbIjxQvGMdtZWs7KQ,57003
114
+ regscale/integrations/scanner_integration.py,sha256=2Q9_SRqlkY7Wf5KGx2Ch1e5U5pB3AMoMj7rYX4zg34k,135308
115
115
  regscale/integrations/variables.py,sha256=A0R76VAeJFj48wHnNgUY-xaD7QKcSmGO9-9cQLlqDJ8,2071
116
- regscale/integrations/commercial/__init__.py,sha256=BZcCIUdyW027NjOGkcBOT52RPSLrtUv69UEPIkAmq1M,13319
116
+ regscale/integrations/commercial/__init__.py,sha256=CNUGiGTeZRrg_a2nDGgqClXvPqUuvZUMmtkI0zFT-zk,13495
117
117
  regscale/integrations/commercial/ad.py,sha256=YXSmK8vRf6yi2GnREGa5GrE6GelhFrLj44SY8AO1pK0,15509
118
- regscale/integrations/commercial/burp.py,sha256=G7v_sMP2FsskT7N2V1OZgBe_aAwLdCbB1zW2qdzSy6g,2762
118
+ regscale/integrations/commercial/burp.py,sha256=3BLNKLfwL1x7jfhd8MJD6hdHEpj58pOEtrtCkn2hcWA,3344
119
119
  regscale/integrations/commercial/cpe.py,sha256=eXZeDXicnp1yYgKuyKcthQUYxXi2Pgc__UD8lUqr5H0,4924
120
120
  regscale/integrations/commercial/crowdstrike.py,sha256=6x7_GlYDRCZvPZwqgrDT5KMnXCa6H4RKO-FNkiYxHgU,40194
121
121
  regscale/integrations/commercial/defender.py,sha256=SA3cn4tdRcD6ZjbCZgULl3ts2fAUqnf27RkdDo7ULGM,65920
@@ -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=1fBF3y4kotbD9hFtqZxlBIb4Q6iNkhIKyPI_MUiqZ6w,39222
126
+ regscale/integrations/commercial/jira.py,sha256=GMYLLzzQyoCmDxcA1Me5Fa2VxG_zC4haXmbT4qsn01g,46021
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
@@ -132,7 +132,6 @@ regscale/integrations/commercial/servicenow.py,sha256=nUVZwt8-G1rQhwACX6i2BKIAjk
132
132
  regscale/integrations/commercial/snyk.py,sha256=j2cN90BzzcZDeORDcnMbuQwL3__FRd-X5JnH3ZpMKJE,2816
133
133
  regscale/integrations/commercial/sonarcloud.py,sha256=_E4DuKRZUqXNNPsxS3UJ3q6llVu-5sfw5pTHxe_UMk0,9821
134
134
  regscale/integrations/commercial/sqlserver.py,sha256=PcDLmsZ9xU5NlFpwPZyMhhxCgX4JK2Ztn2S6kCG4mws,11614
135
- regscale/integrations/commercial/synqly_jira.py,sha256=dmw3m_lKtii2OpVcrmtNJ-ClUNThV8-1IOrWyE2RQLE,33002
136
135
  regscale/integrations/commercial/veracode.py,sha256=SYJEXRgExwVPTWBcqap2jcsdggp-4TvdETLrSCVEOvo,2919
137
136
  regscale/integrations/commercial/xray.py,sha256=egJO6fCQ8jhSpyu6Gj2xczTtUMEiSAJKDz05dT-YZ6M,2734
138
137
  regscale/integrations/commercial/amazon/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -166,8 +165,8 @@ regscale/integrations/commercial/gcp/auth.py,sha256=DSakDZL9JE67r5W-USqavCyrRS2r
166
165
  regscale/integrations/commercial/gcp/control_tests.py,sha256=AvM6Dv2FgFi3bsgXYxq6yxxlbmXuhtFZkmEAJU_qQiE,9913
167
166
  regscale/integrations/commercial/gcp/variables.py,sha256=tFxPS0SXAmYGpaDTVxOLDp4NpDyIgbEWp6OB3x9Jog4,797
168
167
  regscale/integrations/commercial/grype/__init__.py,sha256=KRuTTlOokQjrkpOmhrefwdB90k1jGSEIiDYFbPcjAJY,81
169
- regscale/integrations/commercial/grype/commands.py,sha256=EH6l8b76u89gfeMqosgKaGqcQ95sXRqgAXE6xQz6Q2w,2027
170
- regscale/integrations/commercial/grype/scanner.py,sha256=nAqTJ1Kf_ipUhGaft_q82y8VuxTIhs3p940NysVUlCg,16882
168
+ regscale/integrations/commercial/grype/commands.py,sha256=ELF1w0HC4Ps8xjAVn7MCGuoPLnt79oXArqf-lh39SH4,2338
169
+ regscale/integrations/commercial/grype/scanner.py,sha256=Hue1iEKuFsDCvf22IGc9Yac2L1I11ODrS4J4TWvzJUU,16987
171
170
  regscale/integrations/commercial/import_all/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
172
171
  regscale/integrations/commercial/import_all/import_all_cmd.py,sha256=87OGCiOeMSAmEZEN4i8MhEK3qyOJUndk-d4i-Q-l_xc,18286
173
172
  regscale/integrations/commercial/import_all/scan_file_fingerprints.json,sha256=8c_hnfwbq9bEHr3f14hzcnA9vrehQ-_ZsAIZ4YTPB6w,1981
@@ -178,9 +177,9 @@ regscale/integrations/commercial/nessus/__init__.py,sha256=47DEQpj8HBSa-_TImW-5J
178
177
  regscale/integrations/commercial/nessus/nessus_utils.py,sha256=lP1_xVmYeyL17muy0jGMnJ5xdON3mi22BVAyDHa9WfU,13525
179
178
  regscale/integrations/commercial/nessus/scanner.py,sha256=xz-OBd98ZbKKWnuxsP7oTqTdqa30TQDQMMuPLm82hfU,17335
180
179
  regscale/integrations/commercial/opentext/__init__.py,sha256=zqCPb_4rYRZZPXfeKn4AoZyyYyQ6MU4C0lCs2ysOBhc,251
181
- regscale/integrations/commercial/opentext/commands.py,sha256=RBsZUOE2qYBbVzKAX4hkhWqT6VUMXAA8l_NtTY2T2WE,2212
182
- regscale/integrations/commercial/opentext/scanner.py,sha256=xDNQlce1OpbS4ZTey6FvDtVMg1If701Tay4t7R1EPHs,22433
183
- regscale/integrations/commercial/qualys/__init__.py,sha256=QfIzQXtVckEFN3lP_wZeeESm23WFkX28lfJbVYoDHhg,78158
180
+ regscale/integrations/commercial/opentext/commands.py,sha256=TTClFg16EzlXQOjdQQ6AdWuVuh7H2zO0V9rXd73-ni0,2572
181
+ regscale/integrations/commercial/opentext/scanner.py,sha256=QAb9FPiYeQCEnqL3dnFBFe64LydwLaR8HWpYmabgcbE,22581
182
+ regscale/integrations/commercial/qualys/__init__.py,sha256=u2VtjX5yC6N0wMrJaxyDuEb9TfAv1VWsbYq64PPtaUE,78172
184
183
  regscale/integrations/commercial/qualys/scanner.py,sha256=G_cBNd0qwyo0K2IgUO_IS6fQh9Jc_1bdNczjTwq5MIU,43398
185
184
  regscale/integrations/commercial/qualys/variables.py,sha256=TPoIW5_yNmU6c0AlLOpHQdxp6OrH8jUmMJikqT7YYz8,962
186
185
  regscale/integrations/commercial/sap/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -201,7 +200,7 @@ regscale/integrations/commercial/stig_mapper_integration/click_commands.py,sha25
201
200
  regscale/integrations/commercial/stig_mapper_integration/mapping_engine.py,sha256=woASLcQVB9Ta__1FteY3cyf9fc8vNOYBSSFvH5lrAVk,14022
202
201
  regscale/integrations/commercial/stigv2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
203
202
  regscale/integrations/commercial/stigv2/ckl_parser.py,sha256=RPrDGsKqAbTJMsJd3AYe_8SCzL00ZsB8RnuL8iPTjS0,11896
204
- regscale/integrations/commercial/stigv2/click_commands.py,sha256=Tywelob4WwZuriSZV7-qgCeNzWtChMPimeBI2unYEqo,3552
203
+ regscale/integrations/commercial/stigv2/click_commands.py,sha256=-765vFF03aSjBxU9SYCpca7x8fPaoTDNQtbk4fKuwYw,2792
205
204
  regscale/integrations/commercial/stigv2/stig_integration.py,sha256=-UlfL0BBI3jFGotctOJyTCRAU9zIXW6mwU7ySrRXE9U,11573
206
205
  regscale/integrations/commercial/synqly/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
207
206
  regscale/integrations/commercial/synqly/assets.py,sha256=V3cDMRCy0nUCD53l9qxQDPe9LIKPUGT8FUyBuhUQ7No,2679
@@ -210,17 +209,17 @@ regscale/integrations/commercial/synqly/ticketing.py,sha256=FvrVyDGvqlDh4znEaF77
210
209
  regscale/integrations/commercial/synqly/vulnerabilities.py,sha256=B8GwfKVDdoOIikjZO-4KqDNf-ApXlcJNkwmno0FjDOQ,7842
211
210
  regscale/integrations/commercial/tenablev2/__init__.py,sha256=UpSY_oww83kz9c7amdbptJKwDB1gAOBQDS-Q9WFp588,295
212
211
  regscale/integrations/commercial/tenablev2/authenticate.py,sha256=VPTmxaVCaah2gJYNeU9P1KoQ734ohGQ-wcVy6JfqDTE,1247
213
- regscale/integrations/commercial/tenablev2/commands.py,sha256=zFwCbGAMlvQXZq5Jw1Ii7NRD5xXH8wtFpX09bawXU6A,27473
212
+ regscale/integrations/commercial/tenablev2/commands.py,sha256=4pUfHv_a3ddbKiS_nQ0W6u86rKGzm9PQbEF67OfsE-4,27862
214
213
  regscale/integrations/commercial/tenablev2/jsonl_scanner.py,sha256=zNruS_Oi6ls6lJTUxwdD6jRiXCvVLuGI2nvpF29pvU4,83485
215
- regscale/integrations/commercial/tenablev2/sc_scanner.py,sha256=Y70eZf_1DM3Np9tlrvZ_OHHjqzHjqrizFcHG8esqLQQ,23220
214
+ regscale/integrations/commercial/tenablev2/sc_scanner.py,sha256=WQ7ctneHz3fYOrR_GvVUJL3BuKNoN515y7pG8ATMjOM,24102
216
215
  regscale/integrations/commercial/tenablev2/scanner.py,sha256=bKm7MmZ_xAjKwNT0x16WvuRbQcip3pXg8xqPNHejgKs,21584
217
216
  regscale/integrations/commercial/tenablev2/stig_parsers.py,sha256=01h5ImYMUsjrVHaGgqj5JVBx6Jzlhg06ufu0SL_uBEs,5983
218
- regscale/integrations/commercial/tenablev2/sync_compliance.py,sha256=xViAWWKI6wAN6OoRVocXWbynKCgAFVki6mbgsKLhM0o,21927
217
+ regscale/integrations/commercial/tenablev2/sync_compliance.py,sha256=_7_VwJm2xHUk-4Pzaz-ywQ3FNuMgRUn9IlRW3m9e97M,22083
219
218
  regscale/integrations/commercial/tenablev2/utils.py,sha256=_MmvcR71PmvH4dQ1k4M-q4PYAg0EE_aQ9w4cUdP7SwE,3359
220
219
  regscale/integrations/commercial/tenablev2/variables.py,sha256=CHK8HpSFHMUF4HWj0xosfEQ-RRNDoWdeRvjJok_mKpU,991
221
220
  regscale/integrations/commercial/trivy/__init__.py,sha256=fTTABeR1Z3Wei3l-A54SoTPn2mrMQrKLmr9SwTyYLTM,117
222
- regscale/integrations/commercial/trivy/commands.py,sha256=uzK-15k6ZNdOQ9TxAIF_3wj5rqiJ9UDRRlZVPnXhQvQ,2068
223
- regscale/integrations/commercial/trivy/scanner.py,sha256=rs7amq0IbJPbV40CJI8Mgr5Nn51XFmv4C1VsYjaWqnk,11204
221
+ regscale/integrations/commercial/trivy/commands.py,sha256=YGQFtpQGkmcLT3X2OVp7lt6dfmfflr_4AGunkcbs7Zc,2374
222
+ regscale/integrations/commercial/trivy/scanner.py,sha256=iiwTvjqRlLRgQvCs_FP0j83B7ApOta0MSXyO0-iHfSk,11309
224
223
  regscale/integrations/commercial/wizv2/WizDataMixin.py,sha256=s7F_rVrP9IZa_x_vh3MswR7W_UBHRfd4kHGVsNX4ips,3606
225
224
  regscale/integrations/commercial/wizv2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
226
225
  regscale/integrations/commercial/wizv2/click.py,sha256=eHIS9TdbZQ2Iu57uwbj3ep0m5gpI0HaK5W_ReL892Y4,12232
@@ -238,7 +237,7 @@ regscale/integrations/integration/integration.py,sha256=pr_fbqBieYbqp3PdBjuqKuZC
238
237
  regscale/integrations/integration/inventory.py,sha256=gHL1a6VSV3zf4DTmksEy8qXNrqhIun8TwLxhRpuEMqY,341
239
238
  regscale/integrations/integration/issue.py,sha256=HaCF_5F_U_E5ecYlMgOZiM-yhXnt7OLj47OAJkf9X3g,3507
240
239
  regscale/integrations/public/__init__.py,sha256=_TpTkqySBuI7GqMiRHtcQS-g9rAG5fcdd8EpCDWmrZ0,2949
241
- regscale/integrations/public/cisa.py,sha256=EtOJjReW9hIZhWnJzUSEPyQm2HANrvq0JN3J-aDldkY,22310
240
+ regscale/integrations/public/cisa.py,sha256=kq_fNlhTvX0Sa0zEfVPXpK1CZBhBb1gX4ixzcIVJnV4,21598
242
241
  regscale/integrations/public/criticality_updater.py,sha256=bekadBBJkym5Dd9JZFNQmY3I0e1xgBvxkyVwgCNOKus,2806
243
242
  regscale/integrations/public/emass.py,sha256=culHHuXUlVYkB6DcVcnUvpBzU1eRyyVGgsJ3KqC8HOw,13672
244
243
  regscale/integrations/public/emass_slcm_import.py,sha256=9nvS2XWjSr65Y120tK_Dxd4uy7Tv_RUKpl__GKZmrWE,23974
@@ -250,7 +249,7 @@ regscale/integrations/public/fedramp/appendix_parser.py,sha256=u3Q_NHxAvYTQ1RAr1
250
249
  regscale/integrations/public/fedramp/click.py,sha256=8JbWRidFZ9EFoOTp-bwE584u23TzKqWQIpfxmA0-lGo,14975
251
250
  regscale/integrations/public/fedramp/components.py,sha256=z6PMObm-kjRR42bT04EfnjisrEULfXlwxb7576uuMmY,27010
252
251
  regscale/integrations/public/fedramp/docx_parser.py,sha256=EA9g1iTlB6-GtOzV9JwGW8x_SruhbaIMOzstCBvjiq8,10526
253
- regscale/integrations/public/fedramp/fedramp_cis_crm.py,sha256=-mQXCah1WuNJcLMprOBuqlPt313J2MkpssvSGXwRQN0,58795
252
+ regscale/integrations/public/fedramp/fedramp_cis_crm.py,sha256=wbCA5ebbhQFrX9ogYDeWk7zX8bTYSS36e8TS7F93if8,58503
254
253
  regscale/integrations/public/fedramp/fedramp_common.py,sha256=Mdy3_WdCEcTwSXEEKXiODmr2YJTWcTg6jfyWZJWfruQ,115406
255
254
  regscale/integrations/public/fedramp/fedramp_docx.py,sha256=GnRjuWEgE9XSe9egPOQSZ8lMjY4CpqcD2IS5paI-xQc,13742
256
255
  regscale/integrations/public/fedramp/fedramp_five.py,sha256=F4KIOdnYaRjJrJHJYsN9Bmf6i5s0nus-t_GaAh8A3ow,92645
@@ -295,7 +294,7 @@ regscale/models/locking.py,sha256=5GumeAP3SBChurTgWRvh0wgCVwfos32mn0OYDwxhUmg,31
295
294
  regscale/models/platform.py,sha256=tTcnBZ-rr1n4X41OF9g3zGx-8ORS8BsOKjzSxwm6fZg,4242
296
295
  regscale/models/app_models/__init__.py,sha256=XmrkxwFJx49ofl5ICZniGmmJe8jO4RkKnHV01fMfrIQ,156
297
296
  regscale/models/app_models/catalog_compare.py,sha256=gLD8ti933nW70FcGlx6gp0Lbdo8cFnKky7JkRFAKfOU,7557
298
- regscale/models/app_models/click.py,sha256=Kgf7j-eaSPVKc7HM8WAIGtEiBTzgP8ipa47dM3hA6OI,8222
297
+ regscale/models/app_models/click.py,sha256=2kZuBOpHFjpFKtI7rT_ht26G9bjHL_EUUoYlLC-O3B4,9961
299
298
  regscale/models/app_models/datetime_encoder.py,sha256=AvKkXWhrd87jTfNnY5Q2gw5IdXkCQDnE_44Lay2ZUAA,518
300
299
  regscale/models/app_models/import_validater.py,sha256=IjyUYPg-pZFEsLWrlZUQ2Z41B4MxDsylx7PpCYrZReQ,12708
301
300
  regscale/models/app_models/mapping.py,sha256=BDd7PMgQ24IK4S8FPzHJBpNnCtm1xiU1aoSHDUCwx6Q,11142
@@ -304,18 +303,19 @@ regscale/models/integration_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQe
304
303
  regscale/models/integration_models/aqua.py,sha256=qJeNik3gFzF7xHz39vz1nWYYktu2BTmiRSAU64MOwUY,9945
305
304
  regscale/models/integration_models/azure_alerts.py,sha256=2etrpvcxa7jVQrc98bJlVGd3xPcw-YwJ65c3pfSf0uA,8408
306
305
  regscale/models/integration_models/base64.py,sha256=sxV6O5qY1_TstJENX5jBPsSdQwmA83-NNhgJFunXiZE,570
307
- regscale/models/integration_models/burp.py,sha256=hPQkmmUdC84MBFTE2Di5NvjbGz1ssISSkZdDaVi-ZoQ,16941
306
+ regscale/models/integration_models/burp.py,sha256=FBEBkH3U0Q8vq71FFoWnvgLRF5Hkr9GYmQFmNNHFrVk,16932
308
307
  regscale/models/integration_models/burp_models.py,sha256=UytDTAcCaxyu-knFkm_mEUH6UmWK3OTXKSC9Sc6OjVs,3669
309
- regscale/models/integration_models/cisa_kev_data.json,sha256=17Aw1gj7q0Wsi6QvpWqKmt86NcUriJyscsPXJjHyvnc,1196182
308
+ regscale/models/integration_models/cisa_kev_data.json,sha256=b23vEO7T2XK7PKBIOmnZXMpFd8VfGopy9bx6A1R1n4Q,1205335
310
309
  regscale/models/integration_models/defender_data.py,sha256=jsAcjKxiGmumGerj7xSWkFd6r__YpuKDnYX5o7xHDiE,2844
311
310
  regscale/models/integration_models/defenderimport.py,sha256=OFwEH0Xu-HFLIZJZ8hP60Ov3lS8RR7KHEsw4wI8QnoE,5766
312
311
  regscale/models/integration_models/drf.py,sha256=Aq7AdLa_CH97NrnR-CxaFI22JjVN9uCxVN7Z-BBUaNU,18896
313
312
  regscale/models/integration_models/grype_import.py,sha256=MgCEK_jCwY7NTXZgxQtnXLbovmH7OuSOmSOm-a7egZg,9710
314
313
  regscale/models/integration_models/ibm.py,sha256=S2LZkHhxfRBTAS8T2mwiQ_pCfoX1-UwvFXRNz1rb7g0,4760
315
314
  regscale/models/integration_models/implementation_results.py,sha256=nJOAFPMS73SudAA2dzxxxRu6h5qagPmr6H9NAOLWzLw,2704
315
+ regscale/models/integration_models/jira_task_sync.py,sha256=FVfIms0fzc9WLprda7rn1wmFFz7tXCuEFHnzln9qkdE,918
316
316
  regscale/models/integration_models/nexpose.py,sha256=mfaVZP9GVbCwdqEYGrGZ0pwSdDXCPKjOK4yR7d7I4oU,5654
317
317
  regscale/models/integration_models/prisma.py,sha256=83LeS96rUgaZvPzl6ei_FWjTFBojsyqzMWoSJ1CnsJ0,8280
318
- regscale/models/integration_models/qualys.py,sha256=PJr9iX7IXH_3dQNzzpf8cmJhIdy_tP3Z8ouVmrKOK2I,26999
318
+ regscale/models/integration_models/qualys.py,sha256=qwpIkb8gyQVxRd76WqlO1DlFK6lCxHYgJ8OXCI-Ldo0,27046
319
319
  regscale/models/integration_models/qualys_scanner.py,sha256=6rAeCR9qI10MM_LWtZtOhWaT6mERWtII2IxxyvQhfKw,6453
320
320
  regscale/models/integration_models/send_reminders.py,sha256=Zon6fyV0nODp8l5KuABe97Rz8l37o4biRb5iML7GHiE,26137
321
321
  regscale/models/integration_models/snyk.py,sha256=Wk04Dbz67s2uniWkfllRHhlEBrRYiZq5CRwkOpDyHls,11524
@@ -328,11 +328,11 @@ regscale/models/integration_models/amazon_models/inspector_scan.py,sha256=A1uaOv
328
328
  regscale/models/integration_models/ecr_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
329
329
  regscale/models/integration_models/ecr_models/data.py,sha256=l28DCidXar1JygYBQZL9MYenQA9N-Cx3Skf51IOjZcw,1017
330
330
  regscale/models/integration_models/ecr_models/ecr.py,sha256=-s_5mj4BVKImrvfMaOJLT4qc5EqTCbv8qM4uJiH_nKc,9502
331
- regscale/models/integration_models/flat_file_importer/__init__.py,sha256=jtZamIzNORcbQNZQvBShPy1UA8qOSt0dnmYmxcRys6U,45021
331
+ regscale/models/integration_models/flat_file_importer/__init__.py,sha256=V_P3R0j_pQJyY_UOYDtYR2CuMDfoHXR9uFoklG6ee_8,39674
332
332
  regscale/models/integration_models/sbom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
333
333
  regscale/models/integration_models/sbom/cyclone_dx.py,sha256=0pFR0BWBrF5c8_cC_8mj2MXvNOMHOdHbBYXvTVfFAh8,4058
334
334
  regscale/models/integration_models/synqly_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
335
- regscale/models/integration_models/synqly_models/capabilities.json,sha256=jiutFpRs-4ndjwki1SOzkjp_mRwctK2sWdBE65R7ESY,299486
335
+ regscale/models/integration_models/synqly_models/capabilities.json,sha256=ON0Efa2RKx3c19h1b2e8P9SOr5PFcGlIy3tTOORLJOw,299501
336
336
  regscale/models/integration_models/synqly_models/connector_types.py,sha256=8nxptkTexpskySnmL0obNAff_iu_fx6tJ7i1-4hJvao,461
337
337
  regscale/models/integration_models/synqly_models/ocsf_mapper.py,sha256=e2kTOhWSNRnzbgMchMx-7c21pCgSv2DqWnxvajKEKJM,16960
338
338
  regscale/models/integration_models/synqly_models/param.py,sha256=45zgYUV4U9Ia8-CdIb4TlE3vfDMMtbfA1y5LOiznnH8,2645
@@ -363,7 +363,7 @@ regscale/models/regscale_models/compliance_settings.py,sha256=e0Ghjozt8iCgzmCPfY
363
363
  regscale/models/regscale_models/component.py,sha256=zURPe-unWeHpkx6OoVq3AxdOYp7Ci14xXMy-AjYmXik,14149
364
364
  regscale/models/regscale_models/component_mapping.py,sha256=g0cbbW4X49SDdlB_YtKMrP4eiK9OkrJqiut0ucdyVDA,2162
365
365
  regscale/models/regscale_models/control.py,sha256=mO46F1IfiXnLSb3YhylaS3SyjtT51s-r8b3hjix9Gbc,1072
366
- regscale/models/regscale_models/control_implementation.py,sha256=NX3C7I8p9Sfqbw2lhnYHIq8C0cAxkpAaUXLhI3NVepI,46558
366
+ regscale/models/regscale_models/control_implementation.py,sha256=nq-kln0V8lD3Bh4lW9-vmA1QILDqdg6qDB4FmlZAIv4,48357
367
367
  regscale/models/regscale_models/control_objective.py,sha256=qGh8OtATjjc4JS-3bC1AX6TbgtRtz-I0dckbuZ2RzVo,9496
368
368
  regscale/models/regscale_models/control_parameter.py,sha256=5VVkbVZTb2Hzy_WiybU2JtrvhQp8DLSWxRcbSKxktiI,3499
369
369
  regscale/models/regscale_models/control_test.py,sha256=FG-fLS9JJf8__a84W2LtBXtEjzOH9iq2EO949vBx3eY,949
@@ -411,7 +411,7 @@ regscale/models/regscale_models/questionnaire.py,sha256=QMSXfNpSoaS8tkeo80C7OWLj
411
411
  regscale/models/regscale_models/questionnaire_instance.py,sha256=1LgGTwFACmWx2xOOqUKhAUOms4_3L6NZySzuteg0_sI,8241
412
412
  regscale/models/regscale_models/rbac.py,sha256=oHzKqwL4bkH2XT4WaslbNlMnWayrSKP9zYbG72e2ijk,4522
413
413
  regscale/models/regscale_models/reference.py,sha256=P_7jT6H-NZIa7TyH3j98N-ZHlB6FsjpZVRZCCpms-D4,3253
414
- regscale/models/regscale_models/regscale_model.py,sha256=3juRztM7ZebNWTuioqedwXDO4ypS1IuJyNP0egGGarA,66524
414
+ regscale/models/regscale_models/regscale_model.py,sha256=NBlCeW-Gm6WrTwOJ75mweK63X_1hsO2tvEYQFWG2fEY,68343
415
415
  regscale/models/regscale_models/requirement.py,sha256=-8PnMbuWAZHol5X1w-fzm-moD784Et0oevSVbz6xLhU,767
416
416
  regscale/models/regscale_models/risk.py,sha256=lZFDYPpTt0aEYCrYz5FBKk1Y4y2CKXYU1A8eEKT3zzg,8661
417
417
  regscale/models/regscale_models/risk_trend.py,sha256=GkooEAc4BAq85vT3SxEOKcETACk0bgJYDtIfbNxld2s,1627
@@ -428,7 +428,7 @@ regscale/models/regscale_models/system_role.py,sha256=cGKhdekD0ZlT_cuUGDhzED9J46
428
428
  regscale/models/regscale_models/system_role_external_assignment.py,sha256=vCI-paDP4gARkHyGareBUdkmK0hcp1cDSe7yFdYMSug,1333
429
429
  regscale/models/regscale_models/tag.py,sha256=D4n5ABDzjI7u1ukjRyHgmgyVd8iNTNJlQrdi55AhYmM,1130
430
430
  regscale/models/regscale_models/tag_mapping.py,sha256=QtafVsWjpBR8BAxRhabk3FL3E4WI5OdCv95fuvNOrZs,657
431
- regscale/models/regscale_models/task.py,sha256=le3N2GIUCEJrFnNh0DLU7RAcle4ULr8OP4M8qK0ZADE,5469
431
+ regscale/models/regscale_models/task.py,sha256=VXMATgP8qeQBq6vfJ7lRE3x49vxhJtBBbk7GOzplVSk,5513
432
432
  regscale/models/regscale_models/threat.py,sha256=4TNZcRnTgmlDwBsYu5Pbh9GRd8ZWAtqqr0Xph3uPNAA,7255
433
433
  regscale/models/regscale_models/user.py,sha256=wiU2qKwp3aYtmaHEmTtv8BbMEgFb913dHgc2VnmsAkg,7186
434
434
  regscale/models/regscale_models/user_group.py,sha256=vzlXHvPNsgJd38H0R3osi46Oj19QO5oPx0qXntQBKWI,1891
@@ -453,7 +453,7 @@ regscale/utils/graphql_client.py,sha256=txu_XIYGkZKRvIYIMcjeqKPEp8i6m3mIbG2MeJzJ
453
453
  regscale/utils/lists.py,sha256=CuxSVJNSFQ5TXtzXh5LQqL4yOZhuCmfcKbeQgjeBjok,459
454
454
  regscale/utils/numbers.py,sha256=0LkZvewuKXogk6_oWF90OAoGIuzK1fjWZ4gRCC9_TlQ,301
455
455
  regscale/utils/shell.py,sha256=H9Zzwt3zxyzWmfiH3tVrcIoAcEHtF_pXzM5ERd7PAGc,4176
456
- regscale/utils/string.py,sha256=3TYMjGHr0T98SswyGl6f54jXKB_-zlW5it9ZxTOm6bg,3918
456
+ regscale/utils/string.py,sha256=pY4eMcXRruCfGRaWKPN5NTWj6bXiKytxmU6XSxK4y6k,4198
457
457
  regscale/utils/synqly_utils.py,sha256=DjkdAxdUJBOU5YfAJ7pFFNBPSP37Gs9NQS10xduaYmA,6324
458
458
  regscale/utils/version.py,sha256=bOH1vlvOEAt1f-fzzFxtZrg3VcnqL5SA4ud1TjZVQGU,4265
459
459
  regscale/utils/threading/__init__.py,sha256=AuPiT3EijkUL4BSxtEQw3TrSvFW6oIfQzxtdy5sBCkk,296
@@ -505,9 +505,9 @@ tests/regscale/models/test_regscale_model.py,sha256=ZsrEZkC4EtdIsoQuayn1xv2gEGcV
505
505
  tests/regscale/models/test_report.py,sha256=eiSvS_zS0aVeL0HBvtmHVvEzcfF9ZFVn2twj5g8KttY,970
506
506
  tests/regscale/models/test_tenable_integrations.py,sha256=PNJC2Zu6lv1xj7y6e1yOsz5FktSU3PRKb5x3n5YG3w0,4072
507
507
  tests/regscale/models/test_user_model.py,sha256=e9olv28qBApgnvK6hFHOgXjUC-pkaV8aGDirEIWASL4,4427
508
- regscale_cli-6.20.1.1.dist-info/LICENSE,sha256=ytNhYQ9Rmhj_m-EX2pPq9Ld6tH5wrqqDYg-fCf46WDU,1076
509
- regscale_cli-6.20.1.1.dist-info/METADATA,sha256=LrMh04f0ytsqzXQtRpy5_xICsU3BR28r4QPg0iN1FaI,34671
510
- regscale_cli-6.20.1.1.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
511
- regscale_cli-6.20.1.1.dist-info/entry_points.txt,sha256=cLOaIP1eRv1yZ2u7BvpE3aB4x3kDrDwkpeisKOu33z8,269
512
- regscale_cli-6.20.1.1.dist-info/top_level.txt,sha256=Uv8VUCAdxRm70bgrD4YNEJUmDhBThad_1aaEFGwRByc,15
513
- regscale_cli-6.20.1.1.dist-info/RECORD,,
508
+ regscale_cli-6.20.2.0.dist-info/LICENSE,sha256=ytNhYQ9Rmhj_m-EX2pPq9Ld6tH5wrqqDYg-fCf46WDU,1076
509
+ regscale_cli-6.20.2.0.dist-info/METADATA,sha256=V5kcS8qNVntV7mfCYiqQKDYPiWW_IY7NrsimJvGOW_4,34671
510
+ regscale_cli-6.20.2.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
511
+ regscale_cli-6.20.2.0.dist-info/entry_points.txt,sha256=cLOaIP1eRv1yZ2u7BvpE3aB4x3kDrDwkpeisKOu33z8,269
512
+ regscale_cli-6.20.2.0.dist-info/top_level.txt,sha256=Uv8VUCAdxRm70bgrD4YNEJUmDhBThad_1aaEFGwRByc,15
513
+ regscale_cli-6.20.2.0.dist-info/RECORD,,