regscale-cli 6.20.1.1__py3-none-any.whl → 6.20.3.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 (55) hide show
  1. regscale/__init__.py +1 -1
  2. regscale/core/app/utils/variables.py +5 -3
  3. regscale/integrations/commercial/__init__.py +15 -0
  4. regscale/integrations/commercial/axonius/__init__.py +0 -0
  5. regscale/integrations/commercial/axonius/axonius_integration.py +70 -0
  6. regscale/integrations/commercial/burp.py +14 -0
  7. regscale/integrations/commercial/grype/commands.py +8 -1
  8. regscale/integrations/commercial/grype/scanner.py +2 -1
  9. regscale/integrations/commercial/jira.py +288 -137
  10. regscale/integrations/commercial/opentext/commands.py +14 -5
  11. regscale/integrations/commercial/opentext/scanner.py +3 -2
  12. regscale/integrations/commercial/qualys/__init__.py +3 -3
  13. regscale/integrations/commercial/stigv2/click_commands.py +6 -37
  14. regscale/integrations/commercial/synqly/assets.py +10 -0
  15. regscale/integrations/commercial/tenablev2/commands.py +12 -4
  16. regscale/integrations/commercial/tenablev2/sc_scanner.py +21 -1
  17. regscale/integrations/commercial/tenablev2/sync_compliance.py +3 -0
  18. regscale/integrations/commercial/trivy/commands.py +11 -4
  19. regscale/integrations/commercial/trivy/scanner.py +2 -1
  20. regscale/integrations/commercial/wizv2/constants.py +4 -0
  21. regscale/integrations/commercial/wizv2/scanner.py +67 -14
  22. regscale/integrations/commercial/wizv2/utils.py +24 -10
  23. regscale/integrations/commercial/wizv2/variables.py +7 -0
  24. regscale/integrations/jsonl_scanner_integration.py +8 -1
  25. regscale/integrations/public/cisa.py +58 -63
  26. regscale/integrations/public/fedramp/fedramp_cis_crm.py +153 -104
  27. regscale/integrations/scanner_integration.py +30 -8
  28. regscale/integrations/variables.py +1 -0
  29. regscale/models/app_models/click.py +49 -1
  30. regscale/models/app_models/import_validater.py +3 -1
  31. regscale/models/integration_models/axonius_models/__init__.py +0 -0
  32. regscale/models/integration_models/axonius_models/connectors/__init__.py +3 -0
  33. regscale/models/integration_models/axonius_models/connectors/assets.py +111 -0
  34. regscale/models/integration_models/burp.py +11 -8
  35. regscale/models/integration_models/cisa_kev_data.json +204 -23
  36. regscale/models/integration_models/flat_file_importer/__init__.py +36 -176
  37. regscale/models/integration_models/jira_task_sync.py +27 -0
  38. regscale/models/integration_models/qualys.py +6 -7
  39. regscale/models/integration_models/synqly_models/capabilities.json +1 -1
  40. regscale/models/regscale_models/__init__.py +2 -1
  41. regscale/models/regscale_models/control_implementation.py +39 -2
  42. regscale/models/regscale_models/issue.py +1 -0
  43. regscale/models/regscale_models/regscale_model.py +49 -1
  44. regscale/models/regscale_models/risk_issue_mapping.py +61 -0
  45. regscale/models/regscale_models/task.py +1 -0
  46. regscale/regscale.py +1 -4
  47. regscale/utils/graphql_client.py +4 -4
  48. regscale/utils/string.py +13 -0
  49. {regscale_cli-6.20.1.1.dist-info → regscale_cli-6.20.3.0.dist-info}/METADATA +1 -1
  50. {regscale_cli-6.20.1.1.dist-info → regscale_cli-6.20.3.0.dist-info}/RECORD +54 -48
  51. regscale/integrations/commercial/synqly_jira.py +0 -840
  52. {regscale_cli-6.20.1.1.dist-info → regscale_cli-6.20.3.0.dist-info}/LICENSE +0 -0
  53. {regscale_cli-6.20.1.1.dist-info → regscale_cli-6.20.3.0.dist-info}/WHEEL +0 -0
  54. {regscale_cli-6.20.1.1.dist-info → regscale_cli-6.20.3.0.dist-info}/entry_points.txt +0 -0
  55. {regscale_cli-6.20.1.1.dist-info → regscale_cli-6.20.3.0.dist-info}/top_level.txt +0 -0
@@ -22,9 +22,9 @@ from .control_test_result import *
22
22
  from .custom_field import *
23
23
  from .data import *
24
24
  from .data_center import *
25
+ from .email import *
25
26
  from .evidence import *
26
27
  from .evidence_mapping import *
27
- from .email import *
28
28
  from .facility import *
29
29
  from .file import *
30
30
  from .implementation_objective import *
@@ -53,6 +53,7 @@ from .questionnaire_instance import *
53
53
  from .reference import *
54
54
  from .requirement import *
55
55
  from .risk import *
56
+ from .risk_issue_mapping import *
56
57
  from .risk_trend import *
57
58
  from .sbom import *
58
59
  from .scan_history import *
@@ -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
@@ -188,6 +188,7 @@ class Issue(RegScaleModel):
188
188
  vulnerabilityId: Optional[int] = None
189
189
  riskAdjustment: Optional[str] = None
190
190
  controlImplementationIds: List[int] = Field(default_factory=list)
191
+ affectedControls: Optional[str] = None
191
192
 
192
193
  @staticmethod
193
194
  def is_multiple_controls_supported() -> bool:
@@ -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
  """
@@ -0,0 +1,61 @@
1
+ #!/usr/bin/env python3
2
+ # -*- coding: utf-8 -*-
3
+ """Risk Issue Mapping Model"""
4
+
5
+ from pydantic import ConfigDict, Field
6
+
7
+ from regscale.models.regscale_models.regscale_model import RegScaleModel
8
+
9
+
10
+ class RiskIssueMapping(RegScaleModel):
11
+ """Pydantic model for Risk Issue Mapping."""
12
+
13
+ _module_slug = "riskissuemapping"
14
+
15
+ id: int = Field(default=0, description="Unique identifier for the risk issue mapping")
16
+ uuid: str = Field(default="", description="UUID for the risk issue mapping")
17
+ riskId: int = Field(description="ID of the associated risk")
18
+ issueId: int = Field(description="ID of the associated issue")
19
+
20
+ @staticmethod
21
+ def _get_additional_endpoints() -> ConfigDict:
22
+ """
23
+ Get additional endpoints for the RiskIssueMapping model, using {model_slug} as a placeholder for the model slug.
24
+
25
+ :return: A dictionary of additional endpoints
26
+ :rtype: ConfigDict
27
+ """
28
+ return ConfigDict( # type: ignore
29
+ filter_mappings="/api/{model_slug}/filterRiskIssueMappings/{intRisk}/{intIssues}/{strSearch}/{intPage}/{intPageSize}",
30
+ find_mappings="/api/{model_slug}/findMappings/{intID}",
31
+ get_mappings_as_issues="/api/{model_slug}/getMappingsAsIssues/{intID}",
32
+ get_mappings_as_risks="/api/{model_slug}/getMappingsAsRisks/{intID}",
33
+ )
34
+
35
+ @classmethod
36
+ def get_mappings_as_issue(cls, risk_id: int) -> list[dict]:
37
+ """
38
+ Filter mappings by risk.
39
+
40
+ :param int risk_id: The ID of the risk to filter mappings by
41
+ :return: A list of RiskIssueMapping objects
42
+ :rtype: list[dict]
43
+ """
44
+ endpoint = cls.get_endpoint("get_mappings_as_issues").format(model_slug=cls._module_slug, intID=risk_id)
45
+ response = cls._get_api_handler().get(endpoint)
46
+ response.raise_for_status()
47
+ return response.json()
48
+
49
+ @classmethod
50
+ def get_mappings_as_risks(cls, issue_id: int) -> list[dict]:
51
+ """
52
+ Filter mappings by issue.
53
+
54
+ :param int issue_id: The ID of the issue to filter mappings by
55
+ :return: A list of RiskIssueMapping objects
56
+ :rtype: list[dict]
57
+ """
58
+ endpoint = cls.get_endpoint("get_mappings_as_risks").format(model_slug=cls._module_slug, intID=issue_id)
59
+ response = cls._get_api_handler().get(endpoint)
60
+ response.raise_for_status()
61
+ return response.json()
@@ -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
@@ -60,10 +60,10 @@ class PaginatedGraphQLClient:
60
60
  has_next_page = True
61
61
  page_info_default = {"hasNextPage": False, "endCursor": None}
62
62
  while has_next_page:
63
- data = self.fetch_page(variables=variables, after=next_cursor)
64
- if data:
65
- results.extend(data.get(topic_key, {}).get("nodes", []))
66
- page_info = data.get(topic_key, {}).get("pageInfo", page_info_default)
63
+ if data := self.fetch_page(variables=variables, after=next_cursor):
64
+ if nodes := data.get(topic_key, {}).get("nodes"):
65
+ results.extend(nodes)
66
+ page_info = data.get(topic_key, {}).get("pageInfo") or page_info_default
67
67
  logger.debug(f"pageInfo: {page_info}")
68
68
  has_next_page = page_info.get("hasNextPage", False)
69
69
  next_cursor = page_info.get("endCursor", None)
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.3.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=KLAu6B8Yc3O4fW3EeeFtTaFXVW8VvKWup0Hwl7NqIZc,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
115
- regscale/integrations/variables.py,sha256=A0R76VAeJFj48wHnNgUY-xaD7QKcSmGO9-9cQLlqDJ8,2071
116
- regscale/integrations/commercial/__init__.py,sha256=BZcCIUdyW027NjOGkcBOT52RPSLrtUv69UEPIkAmq1M,13319
113
+ regscale/integrations/jsonl_scanner_integration.py,sha256=l8nq_T3rE1XX-6HxrNHm3xzxCNWbIjxQvGMdtZWs7KQ,57003
114
+ regscale/integrations/scanner_integration.py,sha256=PMP-BjSLDvBvdbc2z13zb5w3-HWfv0O41SSyj3TrLQE,135563
115
+ regscale/integrations/variables.py,sha256=AyaG286U-ek2uQ4qeYBAG3eh_QnlBlth1PKZI5Je5sc,2212
116
+ regscale/integrations/commercial/__init__.py,sha256=auu70lB2YZq4zRza4Jg8h9eQeHOAPIXrIEbAOgMBN8g,13838
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=ZGR7aWYqHINp_ZDkaiVbkwmtBMH7ShcIJbW0zsAlDw4,45676
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
@@ -152,6 +151,8 @@ regscale/integrations/commercial/aws/inventory/resources/integration.py,sha256=m
152
151
  regscale/integrations/commercial/aws/inventory/resources/networking.py,sha256=CkPBE2FA5dyaTjUVvVTFjoVCVO7NDs7dKjBvUs3kKYA,11597
153
152
  regscale/integrations/commercial/aws/inventory/resources/security.py,sha256=EWH2f_kFUqqAYdcBQ0gNzXTIcpMcJU02-robtiROFOc,10459
154
153
  regscale/integrations/commercial/aws/inventory/resources/storage.py,sha256=fEikYzdNATpXwqhHw41yYyyWUVpC-52Iif9NzXThVkI,3427
154
+ regscale/integrations/commercial/axonius/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
155
+ regscale/integrations/commercial/axonius/axonius_integration.py,sha256=Zqv8qKn8oNVHmjF-rzaEJIc21knip4nGNxLl37OcbyE,2320
155
156
  regscale/integrations/commercial/azure/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
156
157
  regscale/integrations/commercial/azure/common.py,sha256=yc_yjfPrcgV9ulcMkQQhoqNB9JBwXYlZGQNUuxUpc3A,1078
157
158
  regscale/integrations/commercial/azure/intune.py,sha256=6viMZqZc8EaO8a5L2FfDy6v60ExFjCxZ-t59W-Uon4I,17219
@@ -166,8 +167,8 @@ regscale/integrations/commercial/gcp/auth.py,sha256=DSakDZL9JE67r5W-USqavCyrRS2r
166
167
  regscale/integrations/commercial/gcp/control_tests.py,sha256=AvM6Dv2FgFi3bsgXYxq6yxxlbmXuhtFZkmEAJU_qQiE,9913
167
168
  regscale/integrations/commercial/gcp/variables.py,sha256=tFxPS0SXAmYGpaDTVxOLDp4NpDyIgbEWp6OB3x9Jog4,797
168
169
  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
170
+ regscale/integrations/commercial/grype/commands.py,sha256=ELF1w0HC4Ps8xjAVn7MCGuoPLnt79oXArqf-lh39SH4,2338
171
+ regscale/integrations/commercial/grype/scanner.py,sha256=Hue1iEKuFsDCvf22IGc9Yac2L1I11ODrS4J4TWvzJUU,16987
171
172
  regscale/integrations/commercial/import_all/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
172
173
  regscale/integrations/commercial/import_all/import_all_cmd.py,sha256=87OGCiOeMSAmEZEN4i8MhEK3qyOJUndk-d4i-Q-l_xc,18286
173
174
  regscale/integrations/commercial/import_all/scan_file_fingerprints.json,sha256=8c_hnfwbq9bEHr3f14hzcnA9vrehQ-_ZsAIZ4YTPB6w,1981
@@ -178,9 +179,9 @@ regscale/integrations/commercial/nessus/__init__.py,sha256=47DEQpj8HBSa-_TImW-5J
178
179
  regscale/integrations/commercial/nessus/nessus_utils.py,sha256=lP1_xVmYeyL17muy0jGMnJ5xdON3mi22BVAyDHa9WfU,13525
179
180
  regscale/integrations/commercial/nessus/scanner.py,sha256=xz-OBd98ZbKKWnuxsP7oTqTdqa30TQDQMMuPLm82hfU,17335
180
181
  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
182
+ regscale/integrations/commercial/opentext/commands.py,sha256=TTClFg16EzlXQOjdQQ6AdWuVuh7H2zO0V9rXd73-ni0,2572
183
+ regscale/integrations/commercial/opentext/scanner.py,sha256=QAb9FPiYeQCEnqL3dnFBFe64LydwLaR8HWpYmabgcbE,22581
184
+ regscale/integrations/commercial/qualys/__init__.py,sha256=u2VtjX5yC6N0wMrJaxyDuEb9TfAv1VWsbYq64PPtaUE,78172
184
185
  regscale/integrations/commercial/qualys/scanner.py,sha256=G_cBNd0qwyo0K2IgUO_IS6fQh9Jc_1bdNczjTwq5MIU,43398
185
186
  regscale/integrations/commercial/qualys/variables.py,sha256=TPoIW5_yNmU6c0AlLOpHQdxp6OrH8jUmMJikqT7YYz8,962
186
187
  regscale/integrations/commercial/sap/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -201,44 +202,44 @@ regscale/integrations/commercial/stig_mapper_integration/click_commands.py,sha25
201
202
  regscale/integrations/commercial/stig_mapper_integration/mapping_engine.py,sha256=woASLcQVB9Ta__1FteY3cyf9fc8vNOYBSSFvH5lrAVk,14022
202
203
  regscale/integrations/commercial/stigv2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
203
204
  regscale/integrations/commercial/stigv2/ckl_parser.py,sha256=RPrDGsKqAbTJMsJd3AYe_8SCzL00ZsB8RnuL8iPTjS0,11896
204
- regscale/integrations/commercial/stigv2/click_commands.py,sha256=Tywelob4WwZuriSZV7-qgCeNzWtChMPimeBI2unYEqo,3552
205
+ regscale/integrations/commercial/stigv2/click_commands.py,sha256=-765vFF03aSjBxU9SYCpca7x8fPaoTDNQtbk4fKuwYw,2792
205
206
  regscale/integrations/commercial/stigv2/stig_integration.py,sha256=-UlfL0BBI3jFGotctOJyTCRAU9zIXW6mwU7ySrRXE9U,11573
206
207
  regscale/integrations/commercial/synqly/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
207
- regscale/integrations/commercial/synqly/assets.py,sha256=V3cDMRCy0nUCD53l9qxQDPe9LIKPUGT8FUyBuhUQ7No,2679
208
+ regscale/integrations/commercial/synqly/assets.py,sha256=UfQZi0bJEtICpwmfiBsHRnahX5n4zfA2ad6EndyIZwY,3017
208
209
  regscale/integrations/commercial/synqly/edr.py,sha256=qPpsnk9joSoJnbI4rI2qz5LrMUU9bTwNC-3IYHwsfxs,2708
209
210
  regscale/integrations/commercial/synqly/ticketing.py,sha256=FvrVyDGvqlDh4znEaF77cuoDZKhIUI5U6d5U2g-rdWI,6399
210
211
  regscale/integrations/commercial/synqly/vulnerabilities.py,sha256=B8GwfKVDdoOIikjZO-4KqDNf-ApXlcJNkwmno0FjDOQ,7842
211
212
  regscale/integrations/commercial/tenablev2/__init__.py,sha256=UpSY_oww83kz9c7amdbptJKwDB1gAOBQDS-Q9WFp588,295
212
213
  regscale/integrations/commercial/tenablev2/authenticate.py,sha256=VPTmxaVCaah2gJYNeU9P1KoQ734ohGQ-wcVy6JfqDTE,1247
213
- regscale/integrations/commercial/tenablev2/commands.py,sha256=zFwCbGAMlvQXZq5Jw1Ii7NRD5xXH8wtFpX09bawXU6A,27473
214
+ regscale/integrations/commercial/tenablev2/commands.py,sha256=4pUfHv_a3ddbKiS_nQ0W6u86rKGzm9PQbEF67OfsE-4,27862
214
215
  regscale/integrations/commercial/tenablev2/jsonl_scanner.py,sha256=zNruS_Oi6ls6lJTUxwdD6jRiXCvVLuGI2nvpF29pvU4,83485
215
- regscale/integrations/commercial/tenablev2/sc_scanner.py,sha256=Y70eZf_1DM3Np9tlrvZ_OHHjqzHjqrizFcHG8esqLQQ,23220
216
+ regscale/integrations/commercial/tenablev2/sc_scanner.py,sha256=WQ7ctneHz3fYOrR_GvVUJL3BuKNoN515y7pG8ATMjOM,24102
216
217
  regscale/integrations/commercial/tenablev2/scanner.py,sha256=bKm7MmZ_xAjKwNT0x16WvuRbQcip3pXg8xqPNHejgKs,21584
217
218
  regscale/integrations/commercial/tenablev2/stig_parsers.py,sha256=01h5ImYMUsjrVHaGgqj5JVBx6Jzlhg06ufu0SL_uBEs,5983
218
- regscale/integrations/commercial/tenablev2/sync_compliance.py,sha256=xViAWWKI6wAN6OoRVocXWbynKCgAFVki6mbgsKLhM0o,21927
219
+ regscale/integrations/commercial/tenablev2/sync_compliance.py,sha256=_7_VwJm2xHUk-4Pzaz-ywQ3FNuMgRUn9IlRW3m9e97M,22083
219
220
  regscale/integrations/commercial/tenablev2/utils.py,sha256=_MmvcR71PmvH4dQ1k4M-q4PYAg0EE_aQ9w4cUdP7SwE,3359
220
221
  regscale/integrations/commercial/tenablev2/variables.py,sha256=CHK8HpSFHMUF4HWj0xosfEQ-RRNDoWdeRvjJok_mKpU,991
221
222
  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
223
+ regscale/integrations/commercial/trivy/commands.py,sha256=YGQFtpQGkmcLT3X2OVp7lt6dfmfflr_4AGunkcbs7Zc,2374
224
+ regscale/integrations/commercial/trivy/scanner.py,sha256=iiwTvjqRlLRgQvCs_FP0j83B7ApOta0MSXyO0-iHfSk,11309
224
225
  regscale/integrations/commercial/wizv2/WizDataMixin.py,sha256=s7F_rVrP9IZa_x_vh3MswR7W_UBHRfd4kHGVsNX4ips,3606
225
226
  regscale/integrations/commercial/wizv2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
226
227
  regscale/integrations/commercial/wizv2/click.py,sha256=eHIS9TdbZQ2Iu57uwbj3ep0m5gpI0HaK5W_ReL892Y4,12232
227
- regscale/integrations/commercial/wizv2/constants.py,sha256=wS_BcZrtNYm_BMuuDUgsLkdgGBGRXs2OGKHaIyoIhaI,22788
228
+ regscale/integrations/commercial/wizv2/constants.py,sha256=DgxTbtnUixK-IOnmbie7-Hosip3huJPDeRn0GzKlqJU,22854
228
229
  regscale/integrations/commercial/wizv2/issue.py,sha256=MbND-Ir4pU4i0OtxsjbRxn_i8Ibll6gt-qYQK2ObstA,13361
229
230
  regscale/integrations/commercial/wizv2/models.py,sha256=hZ6557LJfcp1_NRbMM0V_G1erz1jEFmsuKPn86kXE54,5667
230
231
  regscale/integrations/commercial/wizv2/parsers.py,sha256=YcFOGdYZZ17hj2pcRMC9Ho2wPY94dfJ4hHwqTR5BB6c,11095
231
232
  regscale/integrations/commercial/wizv2/sbom.py,sha256=QcGaYiBGtZ3mBcbo-KGl-I2u6QHKAIinTk26LPy0Kng,4466
232
- regscale/integrations/commercial/wizv2/scanner.py,sha256=3Vx2vCvwDlNAogYa3-qFgRDSVjUFtIIzBW4PFSYpe5k,18419
233
- regscale/integrations/commercial/wizv2/utils.py,sha256=VuAus03sSK_IZaZQnVvEkxDRg4MrvhT2UOoOawb4NQg,31326
234
- regscale/integrations/commercial/wizv2/variables.py,sha256=BRtYjMNPqZDLgql-bbBJ0dlVx0KkR647aXKc0HGdWVo,2132
233
+ regscale/integrations/commercial/wizv2/scanner.py,sha256=vPKTV6RhA2_00lBHVsk7jD68Lh_DReCSsmHnSHp8c4w,20964
234
+ regscale/integrations/commercial/wizv2/utils.py,sha256=NlRkIgYY10a9tkRO70m_zE-nXC5svsZuvxfL3l3fEK0,32249
235
+ regscale/integrations/commercial/wizv2/variables.py,sha256=W_m_TSLUDaqyKJZHukp6i8nftFuhQKb4WRVu9lIyMAs,2485
235
236
  regscale/integrations/commercial/wizv2/wiz_auth.py,sha256=BpQTYJn3u0QiWC2IAw-bunZpBPsJtDJgOsC2zOL_UU4,5554
236
237
  regscale/integrations/integration/__init__.py,sha256=WJgPLnEahD94QLE8NR8QCzlf8xk2ix76_WPDlf98ezU,70
237
238
  regscale/integrations/integration/integration.py,sha256=pr_fbqBieYbqp3PdBjuqKuZCYFf0kF4GkFdlViTKG54,586
238
239
  regscale/integrations/integration/inventory.py,sha256=gHL1a6VSV3zf4DTmksEy8qXNrqhIun8TwLxhRpuEMqY,341
239
240
  regscale/integrations/integration/issue.py,sha256=HaCF_5F_U_E5ecYlMgOZiM-yhXnt7OLj47OAJkf9X3g,3507
240
241
  regscale/integrations/public/__init__.py,sha256=_TpTkqySBuI7GqMiRHtcQS-g9rAG5fcdd8EpCDWmrZ0,2949
241
- regscale/integrations/public/cisa.py,sha256=EtOJjReW9hIZhWnJzUSEPyQm2HANrvq0JN3J-aDldkY,22310
242
+ regscale/integrations/public/cisa.py,sha256=kq_fNlhTvX0Sa0zEfVPXpK1CZBhBb1gX4ixzcIVJnV4,21598
242
243
  regscale/integrations/public/criticality_updater.py,sha256=bekadBBJkym5Dd9JZFNQmY3I0e1xgBvxkyVwgCNOKus,2806
243
244
  regscale/integrations/public/emass.py,sha256=culHHuXUlVYkB6DcVcnUvpBzU1eRyyVGgsJ3KqC8HOw,13672
244
245
  regscale/integrations/public/emass_slcm_import.py,sha256=9nvS2XWjSr65Y120tK_Dxd4uy7Tv_RUKpl__GKZmrWE,23974
@@ -250,7 +251,7 @@ regscale/integrations/public/fedramp/appendix_parser.py,sha256=u3Q_NHxAvYTQ1RAr1
250
251
  regscale/integrations/public/fedramp/click.py,sha256=8JbWRidFZ9EFoOTp-bwE584u23TzKqWQIpfxmA0-lGo,14975
251
252
  regscale/integrations/public/fedramp/components.py,sha256=z6PMObm-kjRR42bT04EfnjisrEULfXlwxb7576uuMmY,27010
252
253
  regscale/integrations/public/fedramp/docx_parser.py,sha256=EA9g1iTlB6-GtOzV9JwGW8x_SruhbaIMOzstCBvjiq8,10526
253
- regscale/integrations/public/fedramp/fedramp_cis_crm.py,sha256=-mQXCah1WuNJcLMprOBuqlPt313J2MkpssvSGXwRQN0,58795
254
+ regscale/integrations/public/fedramp/fedramp_cis_crm.py,sha256=GoB47AfBVrDPdr8UwU-zIlaU5QLiU3aUdcuHn9qBdNg,60504
254
255
  regscale/integrations/public/fedramp/fedramp_common.py,sha256=Mdy3_WdCEcTwSXEEKXiODmr2YJTWcTg6jfyWZJWfruQ,115406
255
256
  regscale/integrations/public/fedramp/fedramp_docx.py,sha256=GnRjuWEgE9XSe9egPOQSZ8lMjY4CpqcD2IS5paI-xQc,13742
256
257
  regscale/integrations/public/fedramp/fedramp_five.py,sha256=F4KIOdnYaRjJrJHJYsN9Bmf6i5s0nus-t_GaAh8A3ow,92645
@@ -295,27 +296,28 @@ regscale/models/locking.py,sha256=5GumeAP3SBChurTgWRvh0wgCVwfos32mn0OYDwxhUmg,31
295
296
  regscale/models/platform.py,sha256=tTcnBZ-rr1n4X41OF9g3zGx-8ORS8BsOKjzSxwm6fZg,4242
296
297
  regscale/models/app_models/__init__.py,sha256=XmrkxwFJx49ofl5ICZniGmmJe8jO4RkKnHV01fMfrIQ,156
297
298
  regscale/models/app_models/catalog_compare.py,sha256=gLD8ti933nW70FcGlx6gp0Lbdo8cFnKky7JkRFAKfOU,7557
298
- regscale/models/app_models/click.py,sha256=Kgf7j-eaSPVKc7HM8WAIGtEiBTzgP8ipa47dM3hA6OI,8222
299
+ regscale/models/app_models/click.py,sha256=2kZuBOpHFjpFKtI7rT_ht26G9bjHL_EUUoYlLC-O3B4,9961
299
300
  regscale/models/app_models/datetime_encoder.py,sha256=AvKkXWhrd87jTfNnY5Q2gw5IdXkCQDnE_44Lay2ZUAA,518
300
- regscale/models/app_models/import_validater.py,sha256=IjyUYPg-pZFEsLWrlZUQ2Z41B4MxDsylx7PpCYrZReQ,12708
301
+ regscale/models/app_models/import_validater.py,sha256=GUeUbmw8goPKwRcmzHX4QZR3iytaRyhOzuTwJLxiH44,12830
301
302
  regscale/models/app_models/mapping.py,sha256=BDd7PMgQ24IK4S8FPzHJBpNnCtm1xiU1aoSHDUCwx6Q,11142
302
303
  regscale/models/app_models/pipeline.py,sha256=qzrkQvvW6d8rqbBjMR8wkT2obez0tnKyY_TxtxLh6VE,909
303
304
  regscale/models/integration_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
304
305
  regscale/models/integration_models/aqua.py,sha256=qJeNik3gFzF7xHz39vz1nWYYktu2BTmiRSAU64MOwUY,9945
305
306
  regscale/models/integration_models/azure_alerts.py,sha256=2etrpvcxa7jVQrc98bJlVGd3xPcw-YwJ65c3pfSf0uA,8408
306
307
  regscale/models/integration_models/base64.py,sha256=sxV6O5qY1_TstJENX5jBPsSdQwmA83-NNhgJFunXiZE,570
307
- regscale/models/integration_models/burp.py,sha256=hPQkmmUdC84MBFTE2Di5NvjbGz1ssISSkZdDaVi-ZoQ,16941
308
+ regscale/models/integration_models/burp.py,sha256=FBEBkH3U0Q8vq71FFoWnvgLRF5Hkr9GYmQFmNNHFrVk,16932
308
309
  regscale/models/integration_models/burp_models.py,sha256=UytDTAcCaxyu-knFkm_mEUH6UmWK3OTXKSC9Sc6OjVs,3669
309
- regscale/models/integration_models/cisa_kev_data.json,sha256=17Aw1gj7q0Wsi6QvpWqKmt86NcUriJyscsPXJjHyvnc,1196182
310
+ regscale/models/integration_models/cisa_kev_data.json,sha256=RsANIILs9u1iZZfU1p7QWYumz4bfvgrZb88o3K57M00,1210559
310
311
  regscale/models/integration_models/defender_data.py,sha256=jsAcjKxiGmumGerj7xSWkFd6r__YpuKDnYX5o7xHDiE,2844
311
312
  regscale/models/integration_models/defenderimport.py,sha256=OFwEH0Xu-HFLIZJZ8hP60Ov3lS8RR7KHEsw4wI8QnoE,5766
312
313
  regscale/models/integration_models/drf.py,sha256=Aq7AdLa_CH97NrnR-CxaFI22JjVN9uCxVN7Z-BBUaNU,18896
313
314
  regscale/models/integration_models/grype_import.py,sha256=MgCEK_jCwY7NTXZgxQtnXLbovmH7OuSOmSOm-a7egZg,9710
314
315
  regscale/models/integration_models/ibm.py,sha256=S2LZkHhxfRBTAS8T2mwiQ_pCfoX1-UwvFXRNz1rb7g0,4760
315
316
  regscale/models/integration_models/implementation_results.py,sha256=nJOAFPMS73SudAA2dzxxxRu6h5qagPmr6H9NAOLWzLw,2704
317
+ regscale/models/integration_models/jira_task_sync.py,sha256=FVfIms0fzc9WLprda7rn1wmFFz7tXCuEFHnzln9qkdE,918
316
318
  regscale/models/integration_models/nexpose.py,sha256=mfaVZP9GVbCwdqEYGrGZ0pwSdDXCPKjOK4yR7d7I4oU,5654
317
319
  regscale/models/integration_models/prisma.py,sha256=83LeS96rUgaZvPzl6ei_FWjTFBojsyqzMWoSJ1CnsJ0,8280
318
- regscale/models/integration_models/qualys.py,sha256=PJr9iX7IXH_3dQNzzpf8cmJhIdy_tP3Z8ouVmrKOK2I,26999
320
+ regscale/models/integration_models/qualys.py,sha256=qwpIkb8gyQVxRd76WqlO1DlFK6lCxHYgJ8OXCI-Ldo0,27046
319
321
  regscale/models/integration_models/qualys_scanner.py,sha256=6rAeCR9qI10MM_LWtZtOhWaT6mERWtII2IxxyvQhfKw,6453
320
322
  regscale/models/integration_models/send_reminders.py,sha256=Zon6fyV0nODp8l5KuABe97Rz8l37o4biRb5iML7GHiE,26137
321
323
  regscale/models/integration_models/snyk.py,sha256=Wk04Dbz67s2uniWkfllRHhlEBrRYiZq5CRwkOpDyHls,11524
@@ -325,14 +327,17 @@ regscale/models/integration_models/xray.py,sha256=rnDF9kOAYMhTO9xEi1bwmIrQvfTCQA
325
327
  regscale/models/integration_models/amazon_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
326
328
  regscale/models/integration_models/amazon_models/inspector.py,sha256=AcV_Nk4ZJMJqmRMpmpbu8LDqp4F2D6GD_IcKsh9MYcs,12915
327
329
  regscale/models/integration_models/amazon_models/inspector_scan.py,sha256=A1uaOvT2r65_oOiZxShNMKJ7ynhoU97Kq3-zVZR8iVI,7584
330
+ regscale/models/integration_models/axonius_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
331
+ regscale/models/integration_models/axonius_models/connectors/__init__.py,sha256=UjMN_T802sixmbVIBM43v7KDt3yyUZpAKWQ3r_nvalE,63
332
+ regscale/models/integration_models/axonius_models/connectors/assets.py,sha256=6m9sSyW3z8PEPgtElaI3m6GGQW6STAB4_8liaD3U7i4,4740
328
333
  regscale/models/integration_models/ecr_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
329
334
  regscale/models/integration_models/ecr_models/data.py,sha256=l28DCidXar1JygYBQZL9MYenQA9N-Cx3Skf51IOjZcw,1017
330
335
  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
336
+ regscale/models/integration_models/flat_file_importer/__init__.py,sha256=V_P3R0j_pQJyY_UOYDtYR2CuMDfoHXR9uFoklG6ee_8,39674
332
337
  regscale/models/integration_models/sbom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
333
338
  regscale/models/integration_models/sbom/cyclone_dx.py,sha256=0pFR0BWBrF5c8_cC_8mj2MXvNOMHOdHbBYXvTVfFAh8,4058
334
339
  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
340
+ regscale/models/integration_models/synqly_models/capabilities.json,sha256=LSBrMgEB_MHxBuyyJEDzQ1NCfvY5LF-zUYujg6aPfSM,310233
336
341
  regscale/models/integration_models/synqly_models/connector_types.py,sha256=8nxptkTexpskySnmL0obNAff_iu_fx6tJ7i1-4hJvao,461
337
342
  regscale/models/integration_models/synqly_models/ocsf_mapper.py,sha256=e2kTOhWSNRnzbgMchMx-7c21pCgSv2DqWnxvajKEKJM,16960
338
343
  regscale/models/integration_models/synqly_models/param.py,sha256=45zgYUV4U9Ia8-CdIb4TlE3vfDMMtbfA1y5LOiznnH8,2645
@@ -346,7 +351,7 @@ regscale/models/integration_models/synqly_models/connectors/vulnerabilities.py,s
346
351
  regscale/models/integration_models/tenable_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
347
352
  regscale/models/integration_models/tenable_models/integration.py,sha256=lplL8zmjTFuhLreW-4y7G1fiCOBgzNAaATq800jgTQc,10271
348
353
  regscale/models/integration_models/tenable_models/models.py,sha256=dmG7btkN4YkDWwnfW5Ldc3tWEAGjPiaRgJjrqMOkPEU,15846
349
- regscale/models/regscale_models/__init__.py,sha256=mkaVXxR2DpJRVcYNPnjkFVi3K2UNLbN38iOrTo3SsJs,2107
354
+ regscale/models/regscale_models/__init__.py,sha256=f3i0UQgyaWxWxyQrNrIaV55KOEhMSGWZ6b_6OO7VngQ,2141
350
355
  regscale/models/regscale_models/assessment.py,sha256=ekzNlcsfDGBu97PMCi7hBRGbzVgxk7Ij0RfrdGh1Rfw,20440
351
356
  regscale/models/regscale_models/assessment_plan.py,sha256=qo2YA5ckSbUKDHnC_2BUc2I9kMTje9Gq-qTCXqvEKCY,1716
352
357
  regscale/models/regscale_models/assessment_result.py,sha256=K48yjYKwgY1-d_Y3aQUDcCvaqcTIVYdbKV5Wgicf4Ts,1283
@@ -363,7 +368,7 @@ regscale/models/regscale_models/compliance_settings.py,sha256=e0Ghjozt8iCgzmCPfY
363
368
  regscale/models/regscale_models/component.py,sha256=zURPe-unWeHpkx6OoVq3AxdOYp7Ci14xXMy-AjYmXik,14149
364
369
  regscale/models/regscale_models/component_mapping.py,sha256=g0cbbW4X49SDdlB_YtKMrP4eiK9OkrJqiut0ucdyVDA,2162
365
370
  regscale/models/regscale_models/control.py,sha256=mO46F1IfiXnLSb3YhylaS3SyjtT51s-r8b3hjix9Gbc,1072
366
- regscale/models/regscale_models/control_implementation.py,sha256=NX3C7I8p9Sfqbw2lhnYHIq8C0cAxkpAaUXLhI3NVepI,46558
371
+ regscale/models/regscale_models/control_implementation.py,sha256=nq-kln0V8lD3Bh4lW9-vmA1QILDqdg6qDB4FmlZAIv4,48357
367
372
  regscale/models/regscale_models/control_objective.py,sha256=qGh8OtATjjc4JS-3bC1AX6TbgtRtz-I0dckbuZ2RzVo,9496
368
373
  regscale/models/regscale_models/control_parameter.py,sha256=5VVkbVZTb2Hzy_WiybU2JtrvhQp8DLSWxRcbSKxktiI,3499
369
374
  regscale/models/regscale_models/control_test.py,sha256=FG-fLS9JJf8__a84W2LtBXtEjzOH9iq2EO949vBx3eY,949
@@ -388,7 +393,7 @@ regscale/models/regscale_models/implementation_role.py,sha256=ZjJOhjM3dVlulsGx3l
388
393
  regscale/models/regscale_models/incident.py,sha256=jsS4MfigzjwFphvdIrBk62GfvbceQ8VL-AhfQSQM460,6028
389
394
  regscale/models/regscale_models/inherited_control.py,sha256=RuQJgVyZgfoIrUG_vvwQYHECb3wsFjDH-zPj-bIFBNU,2007
390
395
  regscale/models/regscale_models/interconnection.py,sha256=B8Y4I6KnN-T_gid08QM_o50OwGZcFfO8SJFY2uB68Ak,1256
391
- regscale/models/regscale_models/issue.py,sha256=wFt_pWARHYG6YikIPePgmvEVlinDPveKx7VB4zbCFvQ,46791
396
+ regscale/models/regscale_models/issue.py,sha256=qtHB2i9wGu2fO4M1qWTOKWWww4bkgFJFaDCkom4Hw7A,46834
392
397
  regscale/models/regscale_models/leveraged_authorization.py,sha256=OUrL8JQV3r7T3ldHlL6Y_ZLv6KuQIC-3eZW5wZ7XFUk,4192
393
398
  regscale/models/regscale_models/line_of_inquiry.py,sha256=Uu0lQEhif0W6yTSkJo27GyQGmExSngJvyqGBTr4Q8Fg,1713
394
399
  regscale/models/regscale_models/link.py,sha256=lAY4Ig3Menm1EqfcAbVJ7jsCsRO5tWtJIf-9-G9FXT8,6593
@@ -411,9 +416,10 @@ regscale/models/regscale_models/questionnaire.py,sha256=QMSXfNpSoaS8tkeo80C7OWLj
411
416
  regscale/models/regscale_models/questionnaire_instance.py,sha256=1LgGTwFACmWx2xOOqUKhAUOms4_3L6NZySzuteg0_sI,8241
412
417
  regscale/models/regscale_models/rbac.py,sha256=oHzKqwL4bkH2XT4WaslbNlMnWayrSKP9zYbG72e2ijk,4522
413
418
  regscale/models/regscale_models/reference.py,sha256=P_7jT6H-NZIa7TyH3j98N-ZHlB6FsjpZVRZCCpms-D4,3253
414
- regscale/models/regscale_models/regscale_model.py,sha256=3juRztM7ZebNWTuioqedwXDO4ypS1IuJyNP0egGGarA,66524
419
+ regscale/models/regscale_models/regscale_model.py,sha256=NBlCeW-Gm6WrTwOJ75mweK63X_1hsO2tvEYQFWG2fEY,68343
415
420
  regscale/models/regscale_models/requirement.py,sha256=-8PnMbuWAZHol5X1w-fzm-moD784Et0oevSVbz6xLhU,767
416
421
  regscale/models/regscale_models/risk.py,sha256=lZFDYPpTt0aEYCrYz5FBKk1Y4y2CKXYU1A8eEKT3zzg,8661
422
+ regscale/models/regscale_models/risk_issue_mapping.py,sha256=j6uR0x6xymJ0BsIwgnadeUQDshHNhU3VnpyItZp4dc4,2393
417
423
  regscale/models/regscale_models/risk_trend.py,sha256=GkooEAc4BAq85vT3SxEOKcETACk0bgJYDtIfbNxld2s,1627
418
424
  regscale/models/regscale_models/sbom.py,sha256=UYS3lBizGqz7A7vNPYBYzpL8PWIaXLl7ZQox_hlJ2ZQ,1722
419
425
  regscale/models/regscale_models/scan_history.py,sha256=o4e9P2rQlqlLj4mbgSPX44jutTJo1nocI1DDXyWyf6w,16741
@@ -428,7 +434,7 @@ regscale/models/regscale_models/system_role.py,sha256=cGKhdekD0ZlT_cuUGDhzED9J46
428
434
  regscale/models/regscale_models/system_role_external_assignment.py,sha256=vCI-paDP4gARkHyGareBUdkmK0hcp1cDSe7yFdYMSug,1333
429
435
  regscale/models/regscale_models/tag.py,sha256=D4n5ABDzjI7u1ukjRyHgmgyVd8iNTNJlQrdi55AhYmM,1130
430
436
  regscale/models/regscale_models/tag_mapping.py,sha256=QtafVsWjpBR8BAxRhabk3FL3E4WI5OdCv95fuvNOrZs,657
431
- regscale/models/regscale_models/task.py,sha256=le3N2GIUCEJrFnNh0DLU7RAcle4ULr8OP4M8qK0ZADE,5469
437
+ regscale/models/regscale_models/task.py,sha256=VXMATgP8qeQBq6vfJ7lRE3x49vxhJtBBbk7GOzplVSk,5513
432
438
  regscale/models/regscale_models/threat.py,sha256=4TNZcRnTgmlDwBsYu5Pbh9GRd8ZWAtqqr0Xph3uPNAA,7255
433
439
  regscale/models/regscale_models/user.py,sha256=wiU2qKwp3aYtmaHEmTtv8BbMEgFb913dHgc2VnmsAkg,7186
434
440
  regscale/models/regscale_models/user_group.py,sha256=vzlXHvPNsgJd38H0R3osi46Oj19QO5oPx0qXntQBKWI,1891
@@ -449,11 +455,11 @@ regscale/utils/decorators.py,sha256=3QLjZ4_QfUSdJYYMw4nGE7EPdo2P7P3AERZxHHVgXDI,
449
455
  regscale/utils/dict_utils.py,sha256=2iCUMUZP8urkmpzB3BpnaSMrEQtrT9u4HINLSXGiXyI,2468
450
456
  regscale/utils/files.py,sha256=LtOca6DK4yZxBE037fRi1lsJeHmBmXLBkDq_er3Uhmw,2410
451
457
  regscale/utils/fxns.py,sha256=dLmxVkeoYXljAs0JbWaehBqZ2BxrdZ9ilH9FGvWRWx4,914
452
- regscale/utils/graphql_client.py,sha256=txu_XIYGkZKRvIYIMcjeqKPEp8i6m3mIbG2MeJzJ5h8,4575
458
+ regscale/utils/graphql_client.py,sha256=azW55ta9Fi5X6SfvNxcmBkU6b-_vTF9wogQou402d-4,4596
453
459
  regscale/utils/lists.py,sha256=CuxSVJNSFQ5TXtzXh5LQqL4yOZhuCmfcKbeQgjeBjok,459
454
460
  regscale/utils/numbers.py,sha256=0LkZvewuKXogk6_oWF90OAoGIuzK1fjWZ4gRCC9_TlQ,301
455
461
  regscale/utils/shell.py,sha256=H9Zzwt3zxyzWmfiH3tVrcIoAcEHtF_pXzM5ERd7PAGc,4176
456
- regscale/utils/string.py,sha256=3TYMjGHr0T98SswyGl6f54jXKB_-zlW5it9ZxTOm6bg,3918
462
+ regscale/utils/string.py,sha256=pY4eMcXRruCfGRaWKPN5NTWj6bXiKytxmU6XSxK4y6k,4198
457
463
  regscale/utils/synqly_utils.py,sha256=DjkdAxdUJBOU5YfAJ7pFFNBPSP37Gs9NQS10xduaYmA,6324
458
464
  regscale/utils/version.py,sha256=bOH1vlvOEAt1f-fzzFxtZrg3VcnqL5SA4ud1TjZVQGU,4265
459
465
  regscale/utils/threading/__init__.py,sha256=AuPiT3EijkUL4BSxtEQw3TrSvFW6oIfQzxtdy5sBCkk,296
@@ -505,9 +511,9 @@ tests/regscale/models/test_regscale_model.py,sha256=ZsrEZkC4EtdIsoQuayn1xv2gEGcV
505
511
  tests/regscale/models/test_report.py,sha256=eiSvS_zS0aVeL0HBvtmHVvEzcfF9ZFVn2twj5g8KttY,970
506
512
  tests/regscale/models/test_tenable_integrations.py,sha256=PNJC2Zu6lv1xj7y6e1yOsz5FktSU3PRKb5x3n5YG3w0,4072
507
513
  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,,
514
+ regscale_cli-6.20.3.0.dist-info/LICENSE,sha256=ytNhYQ9Rmhj_m-EX2pPq9Ld6tH5wrqqDYg-fCf46WDU,1076
515
+ regscale_cli-6.20.3.0.dist-info/METADATA,sha256=dXkkmkW8vyx_fL6fzTZL3w0rgyK159XeBn9OIv8V-lA,34671
516
+ regscale_cli-6.20.3.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
517
+ regscale_cli-6.20.3.0.dist-info/entry_points.txt,sha256=cLOaIP1eRv1yZ2u7BvpE3aB4x3kDrDwkpeisKOu33z8,269
518
+ regscale_cli-6.20.3.0.dist-info/top_level.txt,sha256=Uv8VUCAdxRm70bgrD4YNEJUmDhBThad_1aaEFGwRByc,15
519
+ regscale_cli-6.20.3.0.dist-info/RECORD,,