regscale-cli 6.19.0.0__py3-none-any.whl → 6.19.1.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.
- regscale/__init__.py +1 -1
- regscale/core/app/utils/app_utils.py +1 -1
- regscale/integrations/commercial/tenablev2/commands.py +34 -4
- regscale/integrations/commercial/tenablev2/sync_compliance.py +550 -0
- regscale/integrations/scanner_integration.py +2 -1
- regscale/models/integration_models/cisa_kev_data.json +3 -3
- regscale/models/integration_models/synqly_models/capabilities.json +1 -1
- regscale/models/regscale_models/assessment_plan.py +1 -1
- regscale/models/regscale_models/assessment_result.py +39 -0
- regscale/models/regscale_models/group.py +2 -1
- regscale/models/regscale_models/line_of_inquiry.py +2 -2
- regscale/models/regscale_models/software_inventory.py +1 -1
- regscale/models/regscale_models/supply_chain.py +4 -4
- regscale/models/regscale_models/user.py +11 -0
- regscale/models/regscale_models/user_group.py +1 -1
- {regscale_cli-6.19.0.0.dist-info → regscale_cli-6.19.1.0.dist-info}/METADATA +5 -5
- {regscale_cli-6.19.0.0.dist-info → regscale_cli-6.19.1.0.dist-info}/RECORD +21 -19
- {regscale_cli-6.19.0.0.dist-info → regscale_cli-6.19.1.0.dist-info}/LICENSE +0 -0
- {regscale_cli-6.19.0.0.dist-info → regscale_cli-6.19.1.0.dist-info}/WHEEL +0 -0
- {regscale_cli-6.19.0.0.dist-info → regscale_cli-6.19.1.0.dist-info}/entry_points.txt +0 -0
- {regscale_cli-6.19.0.0.dist-info → regscale_cli-6.19.1.0.dist-info}/top_level.txt +0 -0
|
@@ -4,7 +4,7 @@ from typing import Optional, Union
|
|
|
4
4
|
from pydantic import Field, ConfigDict
|
|
5
5
|
|
|
6
6
|
from regscale.core.app.utils.app_utils import get_current_datetime
|
|
7
|
-
from regscale.models.regscale_models import RegScaleModel
|
|
7
|
+
from regscale.models.regscale_models.regscale_model import RegScaleModel
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
class AssesmentPlanArea(str, Enum):
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
from enum import Enum
|
|
2
|
+
from typing import Optional, Union
|
|
3
|
+
from datetime import datetime
|
|
4
|
+
|
|
5
|
+
from pydantic import Field, ConfigDict
|
|
6
|
+
|
|
7
|
+
from regscale.core.app.utils.app_utils import get_current_datetime
|
|
8
|
+
from regscale.models.regscale_models.regscale_model import RegScaleModel
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class AssessmentResult(RegScaleModel):
|
|
12
|
+
"""Assessment Results Model"""
|
|
13
|
+
|
|
14
|
+
_module_slug = "assessmentresults"
|
|
15
|
+
_unique_fields = ["id"]
|
|
16
|
+
|
|
17
|
+
id: int = 0
|
|
18
|
+
isPublic: bool = True
|
|
19
|
+
uuid: Optional[str] = None
|
|
20
|
+
status: Optional[str] = None
|
|
21
|
+
loqId: Optional[int] = 0
|
|
22
|
+
lineOfInquiry: Optional[str] = None
|
|
23
|
+
requirement: Optional[str] = None
|
|
24
|
+
citation: Optional[str] = None
|
|
25
|
+
weight: Optional[int] = 0
|
|
26
|
+
responsibility: Optional[str] = None
|
|
27
|
+
guidance: Optional[str] = None
|
|
28
|
+
observations: Optional[str] = None
|
|
29
|
+
recommendations: Optional[str] = None
|
|
30
|
+
issuesIdentified: Optional[str] = None
|
|
31
|
+
riskAssessment: Optional[str] = None
|
|
32
|
+
samplingMethodology: Optional[str] = None
|
|
33
|
+
fixedDuringAssessment: bool = False
|
|
34
|
+
bComplete: bool = False
|
|
35
|
+
parentAssessmentId: Optional[int] = 0
|
|
36
|
+
dataDate: Optional[str] = Field(default_factory=get_current_datetime)
|
|
37
|
+
dataString: Optional[datetime] = None
|
|
38
|
+
dataDecimal: Optional[float] = 0.0
|
|
39
|
+
dataBoolean: Optional[bool] = False
|
|
@@ -8,7 +8,8 @@ from typing import Optional, List, Tuple, cast
|
|
|
8
8
|
from pydantic import ConfigDict, Field
|
|
9
9
|
|
|
10
10
|
from regscale.core.app.utils.app_utils import get_current_datetime
|
|
11
|
-
from regscale.models import
|
|
11
|
+
from regscale.models import User, deprecated
|
|
12
|
+
from regscale.models.regscale_models.regscale_model import RegScaleModel, T
|
|
12
13
|
from regscale.models.regscale_models.user_group import UserGroup
|
|
13
14
|
|
|
14
15
|
logger = logging.getLogger(__name__)
|
|
@@ -4,7 +4,7 @@ from typing import Optional, Union
|
|
|
4
4
|
from pydantic import Field, ConfigDict
|
|
5
5
|
|
|
6
6
|
from regscale.core.app.utils.app_utils import get_current_datetime
|
|
7
|
-
from regscale.models.regscale_models import RegScaleModel
|
|
7
|
+
from regscale.models.regscale_models.regscale_model import RegScaleModel
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
class LoIType(str, Enum):
|
|
@@ -48,5 +48,5 @@ class LinesOfInquiry(RegScaleModel):
|
|
|
48
48
|
:rtype: ConfigDict
|
|
49
49
|
"""
|
|
50
50
|
return ConfigDict( # type: ignore
|
|
51
|
-
get_all_by_parent="/api/{model_slug}/getAllByParent/{
|
|
51
|
+
get_all_by_parent="/api/{model_slug}/getAllByParent/{intParentID}",
|
|
52
52
|
)
|
|
@@ -9,7 +9,7 @@ from pydantic import ConfigDict, Field
|
|
|
9
9
|
from regscale.core.app.api import Api
|
|
10
10
|
from regscale.core.app.application import Application
|
|
11
11
|
from regscale.core.app.utils.app_utils import get_current_datetime
|
|
12
|
-
from regscale.models.regscale_models import RegScaleModel
|
|
12
|
+
from regscale.models.regscale_models.regscale_model import RegScaleModel
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
class SoftwareInventory(RegScaleModel):
|
|
@@ -6,7 +6,7 @@ from typing import Optional, Union
|
|
|
6
6
|
|
|
7
7
|
from pydantic import ConfigDict, Field
|
|
8
8
|
|
|
9
|
-
from .regscale_model import RegScaleModel
|
|
9
|
+
from regscale.models.regscale_models.regscale_model import RegScaleModel
|
|
10
10
|
|
|
11
11
|
logger = logging.getLogger("regscale")
|
|
12
12
|
|
|
@@ -103,9 +103,9 @@ class SupplyChain(RegScaleModel):
|
|
|
103
103
|
parentModule: Optional[str] = None
|
|
104
104
|
orgId: Optional[int] = None
|
|
105
105
|
facilityId: Optional[int] = None
|
|
106
|
-
contractValue: Optional[
|
|
107
|
-
fundedAmount: Optional[
|
|
108
|
-
actualCosts: Optional[
|
|
106
|
+
contractValue: Optional[float] = 0.0
|
|
107
|
+
fundedAmount: Optional[float] = 0.0
|
|
108
|
+
actualCosts: Optional[float] = 0.0
|
|
109
109
|
scope: Optional[str] = None
|
|
110
110
|
startDate: Optional[str] = None
|
|
111
111
|
endDate: Optional[str] = None
|
|
@@ -175,6 +175,17 @@ class User(RegScaleModel):
|
|
|
175
175
|
response = cls._get_api_handler().get(endpoint=cls.get_endpoint("get_all"))
|
|
176
176
|
return cast(List[T], cls._handle_list_response(response))
|
|
177
177
|
|
|
178
|
+
@classmethod
|
|
179
|
+
def get_roles(cls) -> List["User"]:
|
|
180
|
+
"""
|
|
181
|
+
Get all roles from RegScale
|
|
182
|
+
|
|
183
|
+
:return: List of RegScale roles
|
|
184
|
+
:rtype: dict
|
|
185
|
+
"""
|
|
186
|
+
response = cls._get_api_handler().get(endpoint=cls.get_endpoint("get_roles"))
|
|
187
|
+
return cast(List[T], cls._handle_list_response(response))
|
|
188
|
+
|
|
178
189
|
def assign_role(self, role_id: str) -> bool:
|
|
179
190
|
"""
|
|
180
191
|
Assign a role to a user
|
|
@@ -7,7 +7,7 @@ from typing import Optional
|
|
|
7
7
|
from pydantic import ConfigDict, Field
|
|
8
8
|
|
|
9
9
|
from regscale.core.app.utils.app_utils import get_current_datetime
|
|
10
|
-
from regscale.models import RegScaleModel
|
|
10
|
+
from regscale.models.regscale_models.regscale_model import RegScaleModel
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
class UserGroup(RegScaleModel):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: regscale-cli
|
|
3
|
-
Version: 6.19.
|
|
3
|
+
Version: 6.19.1.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
|
|
@@ -78,7 +78,7 @@ Requires-Dist: PyMuPDF >=1.24.7 ; extra == 'airflow'
|
|
|
78
78
|
Requires-Dist: PyYAML ==6.0.1 ; extra == 'airflow'
|
|
79
79
|
Requires-Dist: apache-airflow-providers-common-sql ; extra == 'airflow'
|
|
80
80
|
Requires-Dist: apache-airflow-providers-postgres ; extra == 'airflow'
|
|
81
|
-
Requires-Dist: apache-airflow
|
|
81
|
+
Requires-Dist: apache-airflow ==2.10.3 ; extra == 'airflow'
|
|
82
82
|
Requires-Dist: beautifulsoup4 ; extra == 'airflow'
|
|
83
83
|
Requires-Dist: boto3 ==1.35.10 ; extra == 'airflow'
|
|
84
84
|
Requires-Dist: botocore ==1.35.10 ; extra == 'airflow'
|
|
@@ -146,7 +146,7 @@ Requires-Dist: PyYAML ==6.0.1 ; extra == 'airflow-azure'
|
|
|
146
146
|
Requires-Dist: apache-airflow-providers-common-sql ; extra == 'airflow-azure'
|
|
147
147
|
Requires-Dist: apache-airflow-providers-microsoft-azure ; extra == 'airflow-azure'
|
|
148
148
|
Requires-Dist: apache-airflow-providers-postgres ; extra == 'airflow-azure'
|
|
149
|
-
Requires-Dist: apache-airflow
|
|
149
|
+
Requires-Dist: apache-airflow ==2.10.3 ; extra == 'airflow-azure'
|
|
150
150
|
Requires-Dist: azure-storage-blob ; extra == 'airflow-azure'
|
|
151
151
|
Requires-Dist: beautifulsoup4 ; extra == 'airflow-azure'
|
|
152
152
|
Requires-Dist: boto3 ==1.35.10 ; extra == 'airflow-azure'
|
|
@@ -216,7 +216,7 @@ Requires-Dist: PyYAML ==6.0.1 ; extra == 'airflow-sqlserver'
|
|
|
216
216
|
Requires-Dist: apache-airflow-providers-common-sql ; extra == 'airflow-sqlserver'
|
|
217
217
|
Requires-Dist: apache-airflow-providers-microsoft-mssql ; extra == 'airflow-sqlserver'
|
|
218
218
|
Requires-Dist: apache-airflow-providers-postgres ; extra == 'airflow-sqlserver'
|
|
219
|
-
Requires-Dist: apache-airflow
|
|
219
|
+
Requires-Dist: apache-airflow ==2.10.3 ; extra == 'airflow-sqlserver'
|
|
220
220
|
Requires-Dist: beautifulsoup4 ; extra == 'airflow-sqlserver'
|
|
221
221
|
Requires-Dist: boto3 ==1.35.10 ; extra == 'airflow-sqlserver'
|
|
222
222
|
Requires-Dist: botocore ==1.35.10 ; extra == 'airflow-sqlserver'
|
|
@@ -286,7 +286,7 @@ Requires-Dist: PyYAML ==6.0.1 ; extra == 'all'
|
|
|
286
286
|
Requires-Dist: ansible ; extra == 'all'
|
|
287
287
|
Requires-Dist: apache-airflow-providers-common-sql ; extra == 'all'
|
|
288
288
|
Requires-Dist: apache-airflow-providers-postgres ; extra == 'all'
|
|
289
|
-
Requires-Dist: apache-airflow
|
|
289
|
+
Requires-Dist: apache-airflow ==2.10.3 ; extra == 'all'
|
|
290
290
|
Requires-Dist: beautifulsoup4 ; extra == 'all'
|
|
291
291
|
Requires-Dist: boto3 ==1.35.10 ; extra == 'all'
|
|
292
292
|
Requires-Dist: botocore ==1.35.10 ; extra == 'all'
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
regscale/__init__.py,sha256=
|
|
1
|
+
regscale/__init__.py,sha256=nj8VCAjjre7hxmOERduZFW-KJyVxE8MitYAHu5V7Sic,25
|
|
2
2
|
regscale/regscale.py,sha256=t4uLMzy9P_KeKazI9ZTQupTkbgh28uMilLSpmzn7adE,30983
|
|
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
|
|
@@ -55,7 +55,7 @@ regscale/core/app/internal/workflow.py,sha256=SpgYk1QyzdilVLOK1fFzaKhdLspumaugf5
|
|
|
55
55
|
regscale/core/app/utils/XMLIR.py,sha256=M_RrCsbjznihatkucCKw6dPgHTPQczXyqIdUXWhuCLI,8328
|
|
56
56
|
regscale/core/app/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
57
57
|
regscale/core/app/utils/api_handler.py,sha256=T1meKw6Yi3ZAgRbQ1xuKDVh9Q9B8mbMqqN_LrSwIlAM,11765
|
|
58
|
-
regscale/core/app/utils/app_utils.py,sha256=
|
|
58
|
+
regscale/core/app/utils/app_utils.py,sha256=zLEHHHWR4likFQYY_bZsWLTAoRajyyaWrESkotVrFlM,36240
|
|
59
59
|
regscale/core/app/utils/file_utils.py,sha256=URKWVEiR9aFnwoW3-Io7R22tBVeROTC3sX1wOZuhqXw,8912
|
|
60
60
|
regscale/core/app/utils/parser_utils.py,sha256=aBEgcFwbJMD-ARf3wzf-tyWwR6NHvzEcdYcPMm8hGqo,2533
|
|
61
61
|
regscale/core/app/utils/pickle_file_handler.py,sha256=iMdv4N8z00TB5LyPdxIcLKNRpDQVWQ8ZQWAqCKpqmF0,1695
|
|
@@ -111,7 +111,7 @@ regscale/integrations/api_paginator.py,sha256=73rjaNM9mGv8evHAeoObXEjZPg-bJuGPo6
|
|
|
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
113
|
regscale/integrations/jsonl_scanner_integration.py,sha256=fglDgJN9alUvbJzNYKrlIf_25oqQ8kIU0moE3f9tDMQ,56717
|
|
114
|
-
regscale/integrations/scanner_integration.py,sha256=
|
|
114
|
+
regscale/integrations/scanner_integration.py,sha256=fAHnFQ7twysa6ouo_gIVOR7WbbCHQq6-MQm7r-l9fPQ,134699
|
|
115
115
|
regscale/integrations/variables.py,sha256=A0R76VAeJFj48wHnNgUY-xaD7QKcSmGO9-9cQLlqDJ8,2071
|
|
116
116
|
regscale/integrations/commercial/__init__.py,sha256=BZcCIUdyW027NjOGkcBOT52RPSLrtUv69UEPIkAmq1M,13319
|
|
117
117
|
regscale/integrations/commercial/ad.py,sha256=YXSmK8vRf6yi2GnREGa5GrE6GelhFrLj44SY8AO1pK0,15509
|
|
@@ -210,11 +210,12 @@ regscale/integrations/commercial/synqly/ticketing.py,sha256=6UhmDa0l-GYTJAyc93Hi
|
|
|
210
210
|
regscale/integrations/commercial/synqly/vulnerabilities.py,sha256=B8GwfKVDdoOIikjZO-4KqDNf-ApXlcJNkwmno0FjDOQ,7842
|
|
211
211
|
regscale/integrations/commercial/tenablev2/__init__.py,sha256=UpSY_oww83kz9c7amdbptJKwDB1gAOBQDS-Q9WFp588,295
|
|
212
212
|
regscale/integrations/commercial/tenablev2/authenticate.py,sha256=VPTmxaVCaah2gJYNeU9P1KoQ734ohGQ-wcVy6JfqDTE,1247
|
|
213
|
-
regscale/integrations/commercial/tenablev2/commands.py,sha256=
|
|
213
|
+
regscale/integrations/commercial/tenablev2/commands.py,sha256=zFwCbGAMlvQXZq5Jw1Ii7NRD5xXH8wtFpX09bawXU6A,27473
|
|
214
214
|
regscale/integrations/commercial/tenablev2/jsonl_scanner.py,sha256=zNruS_Oi6ls6lJTUxwdD6jRiXCvVLuGI2nvpF29pvU4,83485
|
|
215
215
|
regscale/integrations/commercial/tenablev2/sc_scanner.py,sha256=Y70eZf_1DM3Np9tlrvZ_OHHjqzHjqrizFcHG8esqLQQ,23220
|
|
216
216
|
regscale/integrations/commercial/tenablev2/scanner.py,sha256=bKm7MmZ_xAjKwNT0x16WvuRbQcip3pXg8xqPNHejgKs,21584
|
|
217
217
|
regscale/integrations/commercial/tenablev2/stig_parsers.py,sha256=01h5ImYMUsjrVHaGgqj5JVBx6Jzlhg06ufu0SL_uBEs,5983
|
|
218
|
+
regscale/integrations/commercial/tenablev2/sync_compliance.py,sha256=xViAWWKI6wAN6OoRVocXWbynKCgAFVki6mbgsKLhM0o,21927
|
|
218
219
|
regscale/integrations/commercial/tenablev2/utils.py,sha256=_MmvcR71PmvH4dQ1k4M-q4PYAg0EE_aQ9w4cUdP7SwE,3359
|
|
219
220
|
regscale/integrations/commercial/tenablev2/variables.py,sha256=CHK8HpSFHMUF4HWj0xosfEQ-RRNDoWdeRvjJok_mKpU,991
|
|
220
221
|
regscale/integrations/commercial/trivy/__init__.py,sha256=fTTABeR1Z3Wei3l-A54SoTPn2mrMQrKLmr9SwTyYLTM,117
|
|
@@ -305,7 +306,7 @@ regscale/models/integration_models/azure_alerts.py,sha256=2etrpvcxa7jVQrc98bJlVG
|
|
|
305
306
|
regscale/models/integration_models/base64.py,sha256=sxV6O5qY1_TstJENX5jBPsSdQwmA83-NNhgJFunXiZE,570
|
|
306
307
|
regscale/models/integration_models/burp.py,sha256=hPQkmmUdC84MBFTE2Di5NvjbGz1ssISSkZdDaVi-ZoQ,16941
|
|
307
308
|
regscale/models/integration_models/burp_models.py,sha256=UytDTAcCaxyu-knFkm_mEUH6UmWK3OTXKSC9Sc6OjVs,3669
|
|
308
|
-
regscale/models/integration_models/cisa_kev_data.json,sha256=
|
|
309
|
+
regscale/models/integration_models/cisa_kev_data.json,sha256=cwg8yXKaprwRWSyS7tZz56Zy-8DzwcpVCOilohvHXfg,1164738
|
|
309
310
|
regscale/models/integration_models/defender_data.py,sha256=jsAcjKxiGmumGerj7xSWkFd6r__YpuKDnYX5o7xHDiE,2844
|
|
310
311
|
regscale/models/integration_models/defenderimport.py,sha256=OFwEH0Xu-HFLIZJZ8hP60Ov3lS8RR7KHEsw4wI8QnoE,5766
|
|
311
312
|
regscale/models/integration_models/drf.py,sha256=Aq7AdLa_CH97NrnR-CxaFI22JjVN9uCxVN7Z-BBUaNU,18896
|
|
@@ -331,7 +332,7 @@ regscale/models/integration_models/flat_file_importer/__init__.py,sha256=Mq4V3tR
|
|
|
331
332
|
regscale/models/integration_models/sbom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
332
333
|
regscale/models/integration_models/sbom/cyclone_dx.py,sha256=0pFR0BWBrF5c8_cC_8mj2MXvNOMHOdHbBYXvTVfFAh8,4058
|
|
333
334
|
regscale/models/integration_models/synqly_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
334
|
-
regscale/models/integration_models/synqly_models/capabilities.json,sha256=
|
|
335
|
+
regscale/models/integration_models/synqly_models/capabilities.json,sha256=A3xtvxBnjgrpMYudRG4UuryPyCCutevdfeK_L4q8cTs,259829
|
|
335
336
|
regscale/models/integration_models/synqly_models/connector_types.py,sha256=8nxptkTexpskySnmL0obNAff_iu_fx6tJ7i1-4hJvao,461
|
|
336
337
|
regscale/models/integration_models/synqly_models/ocsf_mapper.py,sha256=e2kTOhWSNRnzbgMchMx-7c21pCgSv2DqWnxvajKEKJM,16960
|
|
337
338
|
regscale/models/integration_models/synqly_models/param.py,sha256=45zgYUV4U9Ia8-CdIb4TlE3vfDMMtbfA1y5LOiznnH8,2645
|
|
@@ -347,7 +348,8 @@ regscale/models/integration_models/tenable_models/integration.py,sha256=lplL8zmj
|
|
|
347
348
|
regscale/models/integration_models/tenable_models/models.py,sha256=dmG7btkN4YkDWwnfW5Ldc3tWEAGjPiaRgJjrqMOkPEU,15846
|
|
348
349
|
regscale/models/regscale_models/__init__.py,sha256=OmFpksQ7e1P52xkBfP5_CTew1A4JiB65cvNuwchGXWU,1900
|
|
349
350
|
regscale/models/regscale_models/assessment.py,sha256=ekzNlcsfDGBu97PMCi7hBRGbzVgxk7Ij0RfrdGh1Rfw,20440
|
|
350
|
-
regscale/models/regscale_models/assessment_plan.py,sha256=
|
|
351
|
+
regscale/models/regscale_models/assessment_plan.py,sha256=qo2YA5ckSbUKDHnC_2BUc2I9kMTje9Gq-qTCXqvEKCY,1716
|
|
352
|
+
regscale/models/regscale_models/assessment_result.py,sha256=K48yjYKwgY1-d_Y3aQUDcCvaqcTIVYdbKV5Wgicf4Ts,1283
|
|
351
353
|
regscale/models/regscale_models/asset.py,sha256=-ws6o6hRl2sMLNcT8CIw0SQvOwLtrVSeEp5kF80ydAQ,19840
|
|
352
354
|
regscale/models/regscale_models/asset_mapping.py,sha256=HFlkAoPZHy2xPYq28cXuzLpFoP36SI08HTL8mH_Q-uE,6851
|
|
353
355
|
regscale/models/regscale_models/case.py,sha256=hLVTwZXzusnXR9avqh7xSVLJwPJ1rPI_Nla_VAkpZcg,1192
|
|
@@ -378,7 +380,7 @@ regscale/models/regscale_models/file.py,sha256=_95A8ERXkA7CQRmbl3z7dpe2uZyrkEcGl
|
|
|
378
380
|
regscale/models/regscale_models/filetag.py,sha256=jd99xcQsGheLFfy7PYtZEzT-re_Dp_ZoUF3GWYMsi0Q,1138
|
|
379
381
|
regscale/models/regscale_models/form_field_value.py,sha256=4LQrIdJgDwBh2Fyne9CH-EJ8G21a-tglxod8D48r2lY,3443
|
|
380
382
|
regscale/models/regscale_models/functional_roles.py,sha256=Vm_j-UZBKoaiONO75VqqCKnDHE6ynP0X5XZmKXl8UT8,932
|
|
381
|
-
regscale/models/regscale_models/group.py,sha256=
|
|
383
|
+
regscale/models/regscale_models/group.py,sha256=HFE3FPUIYo7PArHnvZhb8EQToZQ73jFRU1M-oaHuees,6209
|
|
382
384
|
regscale/models/regscale_models/implementation_objective.py,sha256=e0Hamt-9RBeHRDzlWDbIJ3t4qnZKXPrbsesBK3wYoNk,12132
|
|
383
385
|
regscale/models/regscale_models/implementation_option.py,sha256=gEScteJjmTq_jw010gnOJbvYE6ZeWmrGdl6Qs1kw_Mc,11395
|
|
384
386
|
regscale/models/regscale_models/implementation_role.py,sha256=ZjJOhjM3dVlulsGx3lUKgG49LpxNzx6J-RwTd4eRgx0,1107
|
|
@@ -387,7 +389,7 @@ regscale/models/regscale_models/inherited_control.py,sha256=RuQJgVyZgfoIrUG_vvwQ
|
|
|
387
389
|
regscale/models/regscale_models/interconnection.py,sha256=B8Y4I6KnN-T_gid08QM_o50OwGZcFfO8SJFY2uB68Ak,1256
|
|
388
390
|
regscale/models/regscale_models/issue.py,sha256=wFt_pWARHYG6YikIPePgmvEVlinDPveKx7VB4zbCFvQ,46791
|
|
389
391
|
regscale/models/regscale_models/leveraged_authorization.py,sha256=OUrL8JQV3r7T3ldHlL6Y_ZLv6KuQIC-3eZW5wZ7XFUk,4192
|
|
390
|
-
regscale/models/regscale_models/line_of_inquiry.py,sha256=
|
|
392
|
+
regscale/models/regscale_models/line_of_inquiry.py,sha256=Uu0lQEhif0W6yTSkJo27GyQGmExSngJvyqGBTr4Q8Fg,1713
|
|
391
393
|
regscale/models/regscale_models/link.py,sha256=lAY4Ig3Menm1EqfcAbVJ7jsCsRO5tWtJIf-9-G9FXT8,6593
|
|
392
394
|
regscale/models/regscale_models/master_assessment.py,sha256=thG3dDTuhKTXxjarLlHlLG-KkpfQOZ7UUVMQFhypIrQ,6758
|
|
393
395
|
regscale/models/regscale_models/meta_data.py,sha256=Fg8rrWSTx3K00QkF4glH9UdY9OFWJ4_UqxleLSSbx8I,2482
|
|
@@ -415,18 +417,18 @@ regscale/models/regscale_models/scan_history.py,sha256=o4e9P2rQlqlLj4mbgSPX44jut
|
|
|
415
417
|
regscale/models/regscale_models/search.py,sha256=rPbFDCnnBRHY5JJv9Ev3_6GjMlkdhUAsaUzC97eE2Ys,1015
|
|
416
418
|
regscale/models/regscale_models/security_control.py,sha256=tob8y9zaMGdITju4ffrCAa5s6qhdchdkuxJdZ6VdkOA,4614
|
|
417
419
|
regscale/models/regscale_models/security_plan.py,sha256=4hBnAqHpjVXd6i1dsO2r2HbPKjeyM-QnMKCmdk1sYGw,7549
|
|
418
|
-
regscale/models/regscale_models/software_inventory.py,sha256=
|
|
420
|
+
regscale/models/regscale_models/software_inventory.py,sha256=FRAIfoUlS0kaX1HQRDyV5q4yxwRHilXbS52NSj6exo0,5555
|
|
419
421
|
regscale/models/regscale_models/stake_holder.py,sha256=JIuDTIky_3acDl-NOMwylTHkppN38JgPDZ1A6wM-BGE,1956
|
|
420
422
|
regscale/models/regscale_models/stig.py,sha256=y-PQuGg3pwDTfsNZGW6anaNAjIZBQoNe7GOLMiT5zfw,26329
|
|
421
|
-
regscale/models/regscale_models/supply_chain.py,sha256=
|
|
423
|
+
regscale/models/regscale_models/supply_chain.py,sha256=tMP0IUt5mrJ1QaV5YtcdV7KW0wPQbKdPO3dX0se0gZo,5154
|
|
422
424
|
regscale/models/regscale_models/system_role.py,sha256=cGKhdekD0ZlT_cuUGDhzED9J46UzWdAVzdoq_TxG0KA,6406
|
|
423
425
|
regscale/models/regscale_models/system_role_external_assignment.py,sha256=vCI-paDP4gARkHyGareBUdkmK0hcp1cDSe7yFdYMSug,1333
|
|
424
426
|
regscale/models/regscale_models/tag.py,sha256=D4n5ABDzjI7u1ukjRyHgmgyVd8iNTNJlQrdi55AhYmM,1130
|
|
425
427
|
regscale/models/regscale_models/tag_mapping.py,sha256=QtafVsWjpBR8BAxRhabk3FL3E4WI5OdCv95fuvNOrZs,657
|
|
426
428
|
regscale/models/regscale_models/task.py,sha256=eKVdR89Gb6M9E2plhK4fru8teQI3zPJpgtJ0f43FOrY,4919
|
|
427
429
|
regscale/models/regscale_models/threat.py,sha256=4TNZcRnTgmlDwBsYu5Pbh9GRd8ZWAtqqr0Xph3uPNAA,7255
|
|
428
|
-
regscale/models/regscale_models/user.py,sha256=
|
|
429
|
-
regscale/models/regscale_models/user_group.py,sha256=
|
|
430
|
+
regscale/models/regscale_models/user.py,sha256=wiU2qKwp3aYtmaHEmTtv8BbMEgFb913dHgc2VnmsAkg,7186
|
|
431
|
+
regscale/models/regscale_models/user_group.py,sha256=vzlXHvPNsgJd38H0R3osi46Oj19QO5oPx0qXntQBKWI,1891
|
|
430
432
|
regscale/models/regscale_models/vulnerability.py,sha256=VKgWMVvAQ74Sq46myYsivGfIeW63dHq3bv3cRCkDcbg,10960
|
|
431
433
|
regscale/models/regscale_models/vulnerability_mapping.py,sha256=cq44xkkCH7rfp0BJxavr4DLiEAHouyyPmi5EaizH6NI,6261
|
|
432
434
|
regscale/models/regscale_models/workflow.py,sha256=uMNVVAn5qR8wxjMP5PHbcvMmvPRe1gn1oclVUpbv52s,1873
|
|
@@ -500,9 +502,9 @@ tests/regscale/models/test_regscale_model.py,sha256=ZsrEZkC4EtdIsoQuayn1xv2gEGcV
|
|
|
500
502
|
tests/regscale/models/test_report.py,sha256=eiSvS_zS0aVeL0HBvtmHVvEzcfF9ZFVn2twj5g8KttY,970
|
|
501
503
|
tests/regscale/models/test_tenable_integrations.py,sha256=PNJC2Zu6lv1xj7y6e1yOsz5FktSU3PRKb5x3n5YG3w0,4072
|
|
502
504
|
tests/regscale/models/test_user_model.py,sha256=e9olv28qBApgnvK6hFHOgXjUC-pkaV8aGDirEIWASL4,4427
|
|
503
|
-
regscale_cli-6.19.
|
|
504
|
-
regscale_cli-6.19.
|
|
505
|
-
regscale_cli-6.19.
|
|
506
|
-
regscale_cli-6.19.
|
|
507
|
-
regscale_cli-6.19.
|
|
508
|
-
regscale_cli-6.19.
|
|
505
|
+
regscale_cli-6.19.1.0.dist-info/LICENSE,sha256=ytNhYQ9Rmhj_m-EX2pPq9Ld6tH5wrqqDYg-fCf46WDU,1076
|
|
506
|
+
regscale_cli-6.19.1.0.dist-info/METADATA,sha256=eMCQ4kKNLhTBf2WOaVp35o_ZK0k7s13eNZ7OBEFNPy4,30913
|
|
507
|
+
regscale_cli-6.19.1.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
508
|
+
regscale_cli-6.19.1.0.dist-info/entry_points.txt,sha256=cLOaIP1eRv1yZ2u7BvpE3aB4x3kDrDwkpeisKOu33z8,269
|
|
509
|
+
regscale_cli-6.19.1.0.dist-info/top_level.txt,sha256=Uv8VUCAdxRm70bgrD4YNEJUmDhBThad_1aaEFGwRByc,15
|
|
510
|
+
regscale_cli-6.19.1.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|