regscale-cli 6.20.3.0__py3-none-any.whl → 6.20.4.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/integrations/commercial/__init__.py +1 -0
- regscale/integrations/commercial/jira.py +35 -16
- regscale/integrations/commercial/qualys/__init__.py +298 -28
- regscale/integrations/commercial/qualys/qualys_error_handler.py +519 -0
- regscale/integrations/commercial/qualys/scanner.py +222 -97
- regscale/integrations/commercial/synqly/assets.py +11 -1
- regscale/integrations/commercial/synqly/edr.py +4 -4
- regscale/integrations/commercial/synqly/ticketing.py +1 -1
- regscale/integrations/commercial/synqly/vulnerabilities.py +2 -2
- regscale/integrations/public/fedramp/fedramp_cis_crm.py +72 -42
- regscale/models/app_models/import_validater.py +20 -2
- regscale/models/integration_models/cisa_kev_data.json +97 -9
- regscale/models/integration_models/synqly_models/capabilities.json +1 -1
- regscale/models/integration_models/synqly_models/param.py +1 -1
- regscale/models/regscale_models/task.py +0 -1
- {regscale_cli-6.20.3.0.dist-info → regscale_cli-6.20.4.0.dist-info}/METADATA +13 -9
- {regscale_cli-6.20.3.0.dist-info → regscale_cli-6.20.4.0.dist-info}/RECORD +22 -21
- {regscale_cli-6.20.3.0.dist-info → regscale_cli-6.20.4.0.dist-info}/LICENSE +0 -0
- {regscale_cli-6.20.3.0.dist-info → regscale_cli-6.20.4.0.dist-info}/WHEEL +0 -0
- {regscale_cli-6.20.3.0.dist-info → regscale_cli-6.20.4.0.dist-info}/entry_points.txt +0 -0
- {regscale_cli-6.20.3.0.dist-info → regscale_cli-6.20.4.0.dist-info}/top_level.txt +0 -0
|
@@ -12,7 +12,7 @@ class Param(BaseModel):
|
|
|
12
12
|
optional: bool = Field(description="Whether the parameter is optional or not", alias="optional", default=False)
|
|
13
13
|
data_type: Optional[Any] = Field(None, description="The allowed data type of the parameter")
|
|
14
14
|
click_type: Optional[str] = Field(None, description="The click type of the parameter")
|
|
15
|
-
default: Optional[Any] = Field(
|
|
15
|
+
default: Optional[Any] = Field(None, description="The default value of the parameter")
|
|
16
16
|
|
|
17
17
|
@model_validator(mode="before")
|
|
18
18
|
def set_data_types(cls, values: dict) -> dict:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: regscale-cli
|
|
3
|
-
Version: 6.20.
|
|
3
|
+
Version: 6.20.4.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
|
|
@@ -62,7 +62,7 @@ Requires-Dist: python-jwt ==4.1.0
|
|
|
62
62
|
Requires-Dist: pyxnat ==1.5.*
|
|
63
63
|
Requires-Dist: rapidfuzz ~=3.7
|
|
64
64
|
Requires-Dist: regscale-python-ssp
|
|
65
|
-
Requires-Dist: requests >=2.
|
|
65
|
+
Requires-Dist: requests >=2.32.0
|
|
66
66
|
Requires-Dist: rich ==13.8.0
|
|
67
67
|
Requires-Dist: setuptools
|
|
68
68
|
Requires-Dist: simple-salesforce
|
|
@@ -129,6 +129,7 @@ Requires-Dist: pandas ; extra == 'airflow'
|
|
|
129
129
|
Requires-Dist: pathlib ~=1.0.1 ; extra == 'airflow'
|
|
130
130
|
Requires-Dist: pdfplumber ==0.7.6 ; extra == 'airflow'
|
|
131
131
|
Requires-Dist: pre-commit ; extra == 'airflow'
|
|
132
|
+
Requires-Dist: protobuf >=4.25.8 ; extra == 'airflow'
|
|
132
133
|
Requires-Dist: psutil ~=6.1.0 ; extra == 'airflow'
|
|
133
134
|
Requires-Dist: psycopg2-binary >=2.9.0 ; extra == 'airflow'
|
|
134
135
|
Requires-Dist: pyTenable ; extra == 'airflow'
|
|
@@ -142,7 +143,7 @@ Requires-Dist: python-jwt ==4.1.0 ; extra == 'airflow'
|
|
|
142
143
|
Requires-Dist: pyxnat ==1.5.* ; extra == 'airflow'
|
|
143
144
|
Requires-Dist: rapidfuzz ~=3.7 ; extra == 'airflow'
|
|
144
145
|
Requires-Dist: regscale-python-ssp ; extra == 'airflow'
|
|
145
|
-
Requires-Dist: requests >=2.
|
|
146
|
+
Requires-Dist: requests >=2.32.0 ; extra == 'airflow'
|
|
146
147
|
Requires-Dist: rich ==13.8.0 ; extra == 'airflow'
|
|
147
148
|
Requires-Dist: setuptools ; extra == 'airflow'
|
|
148
149
|
Requires-Dist: setuptools >=69.0.0 ; extra == 'airflow'
|
|
@@ -213,6 +214,7 @@ Requires-Dist: pathlib ~=1.0.1 ; extra == 'airflow-azure'
|
|
|
213
214
|
Requires-Dist: pdfplumber ==0.7.6 ; extra == 'airflow-azure'
|
|
214
215
|
Requires-Dist: pendulum >=2.1.2 ; extra == 'airflow-azure'
|
|
215
216
|
Requires-Dist: pre-commit ; extra == 'airflow-azure'
|
|
217
|
+
Requires-Dist: protobuf >=4.25.8 ; extra == 'airflow-azure'
|
|
216
218
|
Requires-Dist: psutil ~=6.1.0 ; extra == 'airflow-azure'
|
|
217
219
|
Requires-Dist: psycopg2-binary >=2.9.0 ; extra == 'airflow-azure'
|
|
218
220
|
Requires-Dist: pyTenable ; extra == 'airflow-azure'
|
|
@@ -226,7 +228,7 @@ Requires-Dist: python-jwt ==4.1.0 ; extra == 'airflow-azure'
|
|
|
226
228
|
Requires-Dist: pyxnat ==1.5.* ; extra == 'airflow-azure'
|
|
227
229
|
Requires-Dist: rapidfuzz ~=3.7 ; extra == 'airflow-azure'
|
|
228
230
|
Requires-Dist: regscale-python-ssp ; extra == 'airflow-azure'
|
|
229
|
-
Requires-Dist: requests >=2.
|
|
231
|
+
Requires-Dist: requests >=2.32.0 ; extra == 'airflow-azure'
|
|
230
232
|
Requires-Dist: rich ==13.8.0 ; extra == 'airflow-azure'
|
|
231
233
|
Requires-Dist: setuptools ; extra == 'airflow-azure'
|
|
232
234
|
Requires-Dist: setuptools >=69.0.0 ; extra == 'airflow-azure'
|
|
@@ -295,6 +297,7 @@ Requires-Dist: pandas ; extra == 'airflow-sqlserver'
|
|
|
295
297
|
Requires-Dist: pathlib ~=1.0.1 ; extra == 'airflow-sqlserver'
|
|
296
298
|
Requires-Dist: pdfplumber ==0.7.6 ; extra == 'airflow-sqlserver'
|
|
297
299
|
Requires-Dist: pre-commit ; extra == 'airflow-sqlserver'
|
|
300
|
+
Requires-Dist: protobuf >=4.25.8 ; extra == 'airflow-sqlserver'
|
|
298
301
|
Requires-Dist: psutil ~=6.1.0 ; extra == 'airflow-sqlserver'
|
|
299
302
|
Requires-Dist: psycopg2-binary >=2.9.0 ; extra == 'airflow-sqlserver'
|
|
300
303
|
Requires-Dist: pyTenable ; extra == 'airflow-sqlserver'
|
|
@@ -310,7 +313,7 @@ Requires-Dist: python-jwt ==4.1.0 ; extra == 'airflow-sqlserver'
|
|
|
310
313
|
Requires-Dist: pyxnat ==1.5.* ; extra == 'airflow-sqlserver'
|
|
311
314
|
Requires-Dist: rapidfuzz ~=3.7 ; extra == 'airflow-sqlserver'
|
|
312
315
|
Requires-Dist: regscale-python-ssp ; extra == 'airflow-sqlserver'
|
|
313
|
-
Requires-Dist: requests >=2.
|
|
316
|
+
Requires-Dist: requests >=2.32.0 ; extra == 'airflow-sqlserver'
|
|
314
317
|
Requires-Dist: rich ==13.8.0 ; extra == 'airflow-sqlserver'
|
|
315
318
|
Requires-Dist: setuptools ; extra == 'airflow-sqlserver'
|
|
316
319
|
Requires-Dist: setuptools >=69.0.0 ; extra == 'airflow-sqlserver'
|
|
@@ -386,6 +389,7 @@ Requires-Dist: pandas ; extra == 'all'
|
|
|
386
389
|
Requires-Dist: pathlib ~=1.0.1 ; extra == 'all'
|
|
387
390
|
Requires-Dist: pdfplumber ==0.7.6 ; extra == 'all'
|
|
388
391
|
Requires-Dist: pre-commit ; extra == 'all'
|
|
392
|
+
Requires-Dist: protobuf >=4.25.8 ; extra == 'all'
|
|
389
393
|
Requires-Dist: psutil ~=6.1.0 ; extra == 'all'
|
|
390
394
|
Requires-Dist: psycopg2-binary >=2.9.0 ; extra == 'all'
|
|
391
395
|
Requires-Dist: pyTenable ; extra == 'all'
|
|
@@ -399,7 +403,7 @@ Requires-Dist: python-jwt ==4.1.0 ; extra == 'all'
|
|
|
399
403
|
Requires-Dist: pyxnat ==1.5.* ; extra == 'all'
|
|
400
404
|
Requires-Dist: rapidfuzz ~=3.7 ; extra == 'all'
|
|
401
405
|
Requires-Dist: regscale-python-ssp ; extra == 'all'
|
|
402
|
-
Requires-Dist: requests >=2.
|
|
406
|
+
Requires-Dist: requests >=2.32.0 ; extra == 'all'
|
|
403
407
|
Requires-Dist: rich ==13.8.0 ; extra == 'all'
|
|
404
408
|
Requires-Dist: setuptools ; extra == 'all'
|
|
405
409
|
Requires-Dist: setuptools >=69.0.0 ; extra == 'all'
|
|
@@ -462,7 +466,7 @@ Requires-Dist: python-jwt ==4.1.0 ; extra == 'ansible'
|
|
|
462
466
|
Requires-Dist: pyxnat ==1.5.* ; extra == 'ansible'
|
|
463
467
|
Requires-Dist: rapidfuzz ~=3.7 ; extra == 'ansible'
|
|
464
468
|
Requires-Dist: regscale-python-ssp ; extra == 'ansible'
|
|
465
|
-
Requires-Dist: requests >=2.
|
|
469
|
+
Requires-Dist: requests >=2.32.0 ; extra == 'ansible'
|
|
466
470
|
Requires-Dist: rich ==13.8.0 ; extra == 'ansible'
|
|
467
471
|
Requires-Dist: setuptools ; extra == 'ansible'
|
|
468
472
|
Requires-Dist: simple-salesforce ; extra == 'ansible'
|
|
@@ -542,7 +546,7 @@ Requires-Dist: pyxnat ==1.5.* ; extra == 'dev'
|
|
|
542
546
|
Requires-Dist: radon ; extra == 'dev'
|
|
543
547
|
Requires-Dist: rapidfuzz ~=3.7 ; extra == 'dev'
|
|
544
548
|
Requires-Dist: regscale-python-ssp ; extra == 'dev'
|
|
545
|
-
Requires-Dist: requests >=2.
|
|
549
|
+
Requires-Dist: requests >=2.32.0 ; extra == 'dev'
|
|
546
550
|
Requires-Dist: rich ==13.8.0 ; extra == 'dev'
|
|
547
551
|
Requires-Dist: setuptools ; extra == 'dev'
|
|
548
552
|
Requires-Dist: simple-salesforce ; extra == 'dev'
|
|
@@ -614,7 +618,7 @@ Requires-Dist: python-jwt ==4.1.0 ; extra == 'server'
|
|
|
614
618
|
Requires-Dist: pyxnat ==1.5.* ; extra == 'server'
|
|
615
619
|
Requires-Dist: rapidfuzz ~=3.7 ; extra == 'server'
|
|
616
620
|
Requires-Dist: regscale-python-ssp ; extra == 'server'
|
|
617
|
-
Requires-Dist: requests >=2.
|
|
621
|
+
Requires-Dist: requests >=2.32.0 ; extra == 'server'
|
|
618
622
|
Requires-Dist: rich ==13.8.0 ; extra == 'server'
|
|
619
623
|
Requires-Dist: setuptools ; extra == 'server'
|
|
620
624
|
Requires-Dist: simple-salesforce ; extra == 'server'
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
regscale/__init__.py,sha256=
|
|
1
|
+
regscale/__init__.py,sha256=O1HwjZg_JBzDOKV65mUsC0GE8it13P_-PHXSzxVtn8Q,25
|
|
2
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
|
|
@@ -113,7 +113,7 @@ regscale/integrations/integration_override.py,sha256=PH7t_bf-RCe_it3FJ61tlKX5Ugh
|
|
|
113
113
|
regscale/integrations/jsonl_scanner_integration.py,sha256=l8nq_T3rE1XX-6HxrNHm3xzxCNWbIjxQvGMdtZWs7KQ,57003
|
|
114
114
|
regscale/integrations/scanner_integration.py,sha256=PMP-BjSLDvBvdbc2z13zb5w3-HWfv0O41SSyj3TrLQE,135563
|
|
115
115
|
regscale/integrations/variables.py,sha256=AyaG286U-ek2uQ4qeYBAG3eh_QnlBlth1PKZI5Je5sc,2212
|
|
116
|
-
regscale/integrations/commercial/__init__.py,sha256=
|
|
116
|
+
regscale/integrations/commercial/__init__.py,sha256=sVbzBnLbKRhnAmRsIw8kRvfbyJojPfVqzH3OlgoxvqM,13927
|
|
117
117
|
regscale/integrations/commercial/ad.py,sha256=YXSmK8vRf6yi2GnREGa5GrE6GelhFrLj44SY8AO1pK0,15509
|
|
118
118
|
regscale/integrations/commercial/burp.py,sha256=3BLNKLfwL1x7jfhd8MJD6hdHEpj58pOEtrtCkn2hcWA,3344
|
|
119
119
|
regscale/integrations/commercial/cpe.py,sha256=eXZeDXicnp1yYgKuyKcthQUYxXi2Pgc__UD8lUqr5H0,4924
|
|
@@ -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=
|
|
126
|
+
regscale/integrations/commercial/jira.py,sha256=QRYuWfD_3dj87ImZr-eRwOGWrE7-gC7jvvd94F2YQdE,46322
|
|
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
|
|
@@ -181,8 +181,9 @@ regscale/integrations/commercial/nessus/scanner.py,sha256=xz-OBd98ZbKKWnuxsP7oTq
|
|
|
181
181
|
regscale/integrations/commercial/opentext/__init__.py,sha256=zqCPb_4rYRZZPXfeKn4AoZyyYyQ6MU4C0lCs2ysOBhc,251
|
|
182
182
|
regscale/integrations/commercial/opentext/commands.py,sha256=TTClFg16EzlXQOjdQQ6AdWuVuh7H2zO0V9rXd73-ni0,2572
|
|
183
183
|
regscale/integrations/commercial/opentext/scanner.py,sha256=QAb9FPiYeQCEnqL3dnFBFe64LydwLaR8HWpYmabgcbE,22581
|
|
184
|
-
regscale/integrations/commercial/qualys/__init__.py,sha256=
|
|
185
|
-
regscale/integrations/commercial/qualys/
|
|
184
|
+
regscale/integrations/commercial/qualys/__init__.py,sha256=D-L5jeRvakv7ZXGe_kolgOqK8WrcvbwacRCFUpUGzwQ,87354
|
|
185
|
+
regscale/integrations/commercial/qualys/qualys_error_handler.py,sha256=2nlxeNLQMOpkiTij39VTsZg-2AFQsM6-rwlBW2pVpKY,18594
|
|
186
|
+
regscale/integrations/commercial/qualys/scanner.py,sha256=KbbCq6NofgFCdPJBY6KDc8q0OIajvRGmYjUmJD2Hfcs,47409
|
|
186
187
|
regscale/integrations/commercial/qualys/variables.py,sha256=TPoIW5_yNmU6c0AlLOpHQdxp6OrH8jUmMJikqT7YYz8,962
|
|
187
188
|
regscale/integrations/commercial/sap/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
188
189
|
regscale/integrations/commercial/sap/click.py,sha256=pWgjUOA_4WKkDUWcE8z4EshnJUdrTl15NKUfKpKyqzE,522
|
|
@@ -205,10 +206,10 @@ regscale/integrations/commercial/stigv2/ckl_parser.py,sha256=RPrDGsKqAbTJMsJd3AY
|
|
|
205
206
|
regscale/integrations/commercial/stigv2/click_commands.py,sha256=-765vFF03aSjBxU9SYCpca7x8fPaoTDNQtbk4fKuwYw,2792
|
|
206
207
|
regscale/integrations/commercial/stigv2/stig_integration.py,sha256=-UlfL0BBI3jFGotctOJyTCRAU9zIXW6mwU7ySrRXE9U,11573
|
|
207
208
|
regscale/integrations/commercial/synqly/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
208
|
-
regscale/integrations/commercial/synqly/assets.py,sha256=
|
|
209
|
-
regscale/integrations/commercial/synqly/edr.py,sha256=
|
|
210
|
-
regscale/integrations/commercial/synqly/ticketing.py,sha256=
|
|
211
|
-
regscale/integrations/commercial/synqly/vulnerabilities.py,sha256=
|
|
209
|
+
regscale/integrations/commercial/synqly/assets.py,sha256=wAyoMaR5MizBifnKUnNrx6ZlnmneP07LEBjJuf1POZs,3329
|
|
210
|
+
regscale/integrations/commercial/synqly/edr.py,sha256=snW_MW3qCeydzd_TokZGA7njMXhX7lCjF3OmQ-Qy3aE,2664
|
|
211
|
+
regscale/integrations/commercial/synqly/ticketing.py,sha256=ubTVKqB_f-G6mE4EUxbsU5BkO-GlMTvRkJVRq_tl_jg,6399
|
|
212
|
+
regscale/integrations/commercial/synqly/vulnerabilities.py,sha256=bLYECK4G3K-j_gXrfEwlse6Rc1ao4TTFezBYxW11CXM,7689
|
|
212
213
|
regscale/integrations/commercial/tenablev2/__init__.py,sha256=UpSY_oww83kz9c7amdbptJKwDB1gAOBQDS-Q9WFp588,295
|
|
213
214
|
regscale/integrations/commercial/tenablev2/authenticate.py,sha256=VPTmxaVCaah2gJYNeU9P1KoQ734ohGQ-wcVy6JfqDTE,1247
|
|
214
215
|
regscale/integrations/commercial/tenablev2/commands.py,sha256=4pUfHv_a3ddbKiS_nQ0W6u86rKGzm9PQbEF67OfsE-4,27862
|
|
@@ -251,7 +252,7 @@ regscale/integrations/public/fedramp/appendix_parser.py,sha256=u3Q_NHxAvYTQ1RAr1
|
|
|
251
252
|
regscale/integrations/public/fedramp/click.py,sha256=8JbWRidFZ9EFoOTp-bwE584u23TzKqWQIpfxmA0-lGo,14975
|
|
252
253
|
regscale/integrations/public/fedramp/components.py,sha256=z6PMObm-kjRR42bT04EfnjisrEULfXlwxb7576uuMmY,27010
|
|
253
254
|
regscale/integrations/public/fedramp/docx_parser.py,sha256=EA9g1iTlB6-GtOzV9JwGW8x_SruhbaIMOzstCBvjiq8,10526
|
|
254
|
-
regscale/integrations/public/fedramp/fedramp_cis_crm.py,sha256=
|
|
255
|
+
regscale/integrations/public/fedramp/fedramp_cis_crm.py,sha256=hwHs-lZgZJPRu-jV62Ee18dTmWG06K_YCpW6tj6oeO4,61347
|
|
255
256
|
regscale/integrations/public/fedramp/fedramp_common.py,sha256=Mdy3_WdCEcTwSXEEKXiODmr2YJTWcTg6jfyWZJWfruQ,115406
|
|
256
257
|
regscale/integrations/public/fedramp/fedramp_docx.py,sha256=GnRjuWEgE9XSe9egPOQSZ8lMjY4CpqcD2IS5paI-xQc,13742
|
|
257
258
|
regscale/integrations/public/fedramp/fedramp_five.py,sha256=F4KIOdnYaRjJrJHJYsN9Bmf6i5s0nus-t_GaAh8A3ow,92645
|
|
@@ -298,7 +299,7 @@ regscale/models/app_models/__init__.py,sha256=XmrkxwFJx49ofl5ICZniGmmJe8jO4RkKnH
|
|
|
298
299
|
regscale/models/app_models/catalog_compare.py,sha256=gLD8ti933nW70FcGlx6gp0Lbdo8cFnKky7JkRFAKfOU,7557
|
|
299
300
|
regscale/models/app_models/click.py,sha256=2kZuBOpHFjpFKtI7rT_ht26G9bjHL_EUUoYlLC-O3B4,9961
|
|
300
301
|
regscale/models/app_models/datetime_encoder.py,sha256=AvKkXWhrd87jTfNnY5Q2gw5IdXkCQDnE_44Lay2ZUAA,518
|
|
301
|
-
regscale/models/app_models/import_validater.py,sha256=
|
|
302
|
+
regscale/models/app_models/import_validater.py,sha256=USaCZhMoxKxoVjtjyKlTeeVUt7PNf5i5l3hK5rsTaDs,13758
|
|
302
303
|
regscale/models/app_models/mapping.py,sha256=BDd7PMgQ24IK4S8FPzHJBpNnCtm1xiU1aoSHDUCwx6Q,11142
|
|
303
304
|
regscale/models/app_models/pipeline.py,sha256=qzrkQvvW6d8rqbBjMR8wkT2obez0tnKyY_TxtxLh6VE,909
|
|
304
305
|
regscale/models/integration_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -307,7 +308,7 @@ regscale/models/integration_models/azure_alerts.py,sha256=2etrpvcxa7jVQrc98bJlVG
|
|
|
307
308
|
regscale/models/integration_models/base64.py,sha256=sxV6O5qY1_TstJENX5jBPsSdQwmA83-NNhgJFunXiZE,570
|
|
308
309
|
regscale/models/integration_models/burp.py,sha256=FBEBkH3U0Q8vq71FFoWnvgLRF5Hkr9GYmQFmNNHFrVk,16932
|
|
309
310
|
regscale/models/integration_models/burp_models.py,sha256=UytDTAcCaxyu-knFkm_mEUH6UmWK3OTXKSC9Sc6OjVs,3669
|
|
310
|
-
regscale/models/integration_models/cisa_kev_data.json,sha256=
|
|
311
|
+
regscale/models/integration_models/cisa_kev_data.json,sha256=IkDjhhPKGl7NdGfVwGZV1lX-Fw5J0ALeXk82mTW0ccc,1217687
|
|
311
312
|
regscale/models/integration_models/defender_data.py,sha256=jsAcjKxiGmumGerj7xSWkFd6r__YpuKDnYX5o7xHDiE,2844
|
|
312
313
|
regscale/models/integration_models/defenderimport.py,sha256=OFwEH0Xu-HFLIZJZ8hP60Ov3lS8RR7KHEsw4wI8QnoE,5766
|
|
313
314
|
regscale/models/integration_models/drf.py,sha256=Aq7AdLa_CH97NrnR-CxaFI22JjVN9uCxVN7Z-BBUaNU,18896
|
|
@@ -337,10 +338,10 @@ regscale/models/integration_models/flat_file_importer/__init__.py,sha256=V_P3R0j
|
|
|
337
338
|
regscale/models/integration_models/sbom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
338
339
|
regscale/models/integration_models/sbom/cyclone_dx.py,sha256=0pFR0BWBrF5c8_cC_8mj2MXvNOMHOdHbBYXvTVfFAh8,4058
|
|
339
340
|
regscale/models/integration_models/synqly_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
340
|
-
regscale/models/integration_models/synqly_models/capabilities.json,sha256=
|
|
341
|
+
regscale/models/integration_models/synqly_models/capabilities.json,sha256=QdLL5EGzyD9MVW4ActoizZ_1VDWwmKgjotuJhuT-rWM,331964
|
|
341
342
|
regscale/models/integration_models/synqly_models/connector_types.py,sha256=8nxptkTexpskySnmL0obNAff_iu_fx6tJ7i1-4hJvao,461
|
|
342
343
|
regscale/models/integration_models/synqly_models/ocsf_mapper.py,sha256=e2kTOhWSNRnzbgMchMx-7c21pCgSv2DqWnxvajKEKJM,16960
|
|
343
|
-
regscale/models/integration_models/synqly_models/param.py,sha256=
|
|
344
|
+
regscale/models/integration_models/synqly_models/param.py,sha256=Xt5Zm6lC_VkLj7LF2qXo72TJZHysqttsp5ai0NCf1po,2643
|
|
344
345
|
regscale/models/integration_models/synqly_models/synqly_model.py,sha256=9wgR0mNTuteMarnMj3iAIj8Ki9-8rc-pIWZpku4hH_k,34701
|
|
345
346
|
regscale/models/integration_models/synqly_models/tenants.py,sha256=kewIZw-iv18bNXJGG3ghwuFJ4CK5iXQhn_x2-xvV0iM,1078
|
|
346
347
|
regscale/models/integration_models/synqly_models/connectors/__init__.py,sha256=J3YS7KXLnTPRzeM3lUQpy6HKH7CxPPsWCB-sPXSWcYA,189
|
|
@@ -434,7 +435,7 @@ regscale/models/regscale_models/system_role.py,sha256=cGKhdekD0ZlT_cuUGDhzED9J46
|
|
|
434
435
|
regscale/models/regscale_models/system_role_external_assignment.py,sha256=vCI-paDP4gARkHyGareBUdkmK0hcp1cDSe7yFdYMSug,1333
|
|
435
436
|
regscale/models/regscale_models/tag.py,sha256=D4n5ABDzjI7u1ukjRyHgmgyVd8iNTNJlQrdi55AhYmM,1130
|
|
436
437
|
regscale/models/regscale_models/tag_mapping.py,sha256=QtafVsWjpBR8BAxRhabk3FL3E4WI5OdCv95fuvNOrZs,657
|
|
437
|
-
regscale/models/regscale_models/task.py,sha256=
|
|
438
|
+
regscale/models/regscale_models/task.py,sha256=le3N2GIUCEJrFnNh0DLU7RAcle4ULr8OP4M8qK0ZADE,5469
|
|
438
439
|
regscale/models/regscale_models/threat.py,sha256=4TNZcRnTgmlDwBsYu5Pbh9GRd8ZWAtqqr0Xph3uPNAA,7255
|
|
439
440
|
regscale/models/regscale_models/user.py,sha256=wiU2qKwp3aYtmaHEmTtv8BbMEgFb913dHgc2VnmsAkg,7186
|
|
440
441
|
regscale/models/regscale_models/user_group.py,sha256=vzlXHvPNsgJd38H0R3osi46Oj19QO5oPx0qXntQBKWI,1891
|
|
@@ -511,9 +512,9 @@ tests/regscale/models/test_regscale_model.py,sha256=ZsrEZkC4EtdIsoQuayn1xv2gEGcV
|
|
|
511
512
|
tests/regscale/models/test_report.py,sha256=eiSvS_zS0aVeL0HBvtmHVvEzcfF9ZFVn2twj5g8KttY,970
|
|
512
513
|
tests/regscale/models/test_tenable_integrations.py,sha256=PNJC2Zu6lv1xj7y6e1yOsz5FktSU3PRKb5x3n5YG3w0,4072
|
|
513
514
|
tests/regscale/models/test_user_model.py,sha256=e9olv28qBApgnvK6hFHOgXjUC-pkaV8aGDirEIWASL4,4427
|
|
514
|
-
regscale_cli-6.20.
|
|
515
|
-
regscale_cli-6.20.
|
|
516
|
-
regscale_cli-6.20.
|
|
517
|
-
regscale_cli-6.20.
|
|
518
|
-
regscale_cli-6.20.
|
|
519
|
-
regscale_cli-6.20.
|
|
515
|
+
regscale_cli-6.20.4.0.dist-info/LICENSE,sha256=ytNhYQ9Rmhj_m-EX2pPq9Ld6tH5wrqqDYg-fCf46WDU,1076
|
|
516
|
+
regscale_cli-6.20.4.0.dist-info/METADATA,sha256=2jkZftr3bgMUVqAC4eK66GJEHMywBGWPFFin-aDYYrs,34899
|
|
517
|
+
regscale_cli-6.20.4.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
518
|
+
regscale_cli-6.20.4.0.dist-info/entry_points.txt,sha256=cLOaIP1eRv1yZ2u7BvpE3aB4x3kDrDwkpeisKOu33z8,269
|
|
519
|
+
regscale_cli-6.20.4.0.dist-info/top_level.txt,sha256=Uv8VUCAdxRm70bgrD4YNEJUmDhBThad_1aaEFGwRByc,15
|
|
520
|
+
regscale_cli-6.20.4.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|