regscale-cli 6.16.0.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 -0
- regscale/airflow/__init__.py +9 -0
- regscale/airflow/azure/__init__.py +9 -0
- regscale/airflow/azure/cli.py +89 -0
- regscale/airflow/azure/upload_dags.py +116 -0
- regscale/airflow/click_dags.py +127 -0
- regscale/airflow/click_mixins.py +82 -0
- regscale/airflow/config.py +25 -0
- regscale/airflow/factories/__init__.py +0 -0
- regscale/airflow/factories/connections.py +58 -0
- regscale/airflow/factories/workflows.py +78 -0
- regscale/airflow/hierarchy.py +88 -0
- regscale/airflow/operators/__init__.py +0 -0
- regscale/airflow/operators/click.py +36 -0
- regscale/airflow/sensors/__init__.py +0 -0
- regscale/airflow/sensors/sql.py +107 -0
- regscale/airflow/sessions/__init__.py +0 -0
- regscale/airflow/sessions/sql/__init__.py +3 -0
- regscale/airflow/sessions/sql/queries.py +64 -0
- regscale/airflow/sessions/sql/sql_server_queries.py +248 -0
- regscale/airflow/tasks/__init__.py +0 -0
- regscale/airflow/tasks/branches.py +22 -0
- regscale/airflow/tasks/cli.py +116 -0
- regscale/airflow/tasks/click.py +73 -0
- regscale/airflow/tasks/debugging.py +9 -0
- regscale/airflow/tasks/groups.py +116 -0
- regscale/airflow/tasks/init.py +60 -0
- regscale/airflow/tasks/states.py +47 -0
- regscale/airflow/tasks/workflows.py +36 -0
- regscale/ansible/__init__.py +9 -0
- regscale/core/__init__.py +0 -0
- regscale/core/app/__init__.py +3 -0
- regscale/core/app/api.py +571 -0
- regscale/core/app/application.py +665 -0
- regscale/core/app/internal/__init__.py +136 -0
- regscale/core/app/internal/admin_actions.py +230 -0
- regscale/core/app/internal/assessments_editor.py +873 -0
- regscale/core/app/internal/catalog.py +316 -0
- regscale/core/app/internal/comparison.py +459 -0
- regscale/core/app/internal/control_editor.py +571 -0
- regscale/core/app/internal/encrypt.py +79 -0
- regscale/core/app/internal/evidence.py +1240 -0
- regscale/core/app/internal/file_uploads.py +151 -0
- regscale/core/app/internal/healthcheck.py +66 -0
- regscale/core/app/internal/login.py +305 -0
- regscale/core/app/internal/migrations.py +240 -0
- regscale/core/app/internal/model_editor.py +1701 -0
- regscale/core/app/internal/poam_editor.py +632 -0
- regscale/core/app/internal/workflow.py +105 -0
- regscale/core/app/logz.py +74 -0
- regscale/core/app/utils/XMLIR.py +258 -0
- regscale/core/app/utils/__init__.py +0 -0
- regscale/core/app/utils/api_handler.py +358 -0
- regscale/core/app/utils/app_utils.py +1110 -0
- regscale/core/app/utils/catalog_utils/__init__.py +0 -0
- regscale/core/app/utils/catalog_utils/common.py +91 -0
- regscale/core/app/utils/catalog_utils/compare_catalog.py +193 -0
- regscale/core/app/utils/catalog_utils/diagnostic_catalog.py +97 -0
- regscale/core/app/utils/catalog_utils/download_catalog.py +103 -0
- regscale/core/app/utils/catalog_utils/update_catalog.py +718 -0
- regscale/core/app/utils/catalog_utils/update_catalog_v2.py +1378 -0
- regscale/core/app/utils/catalog_utils/update_catalog_v3.py +1272 -0
- regscale/core/app/utils/catalog_utils/update_plans.py +334 -0
- regscale/core/app/utils/file_utils.py +238 -0
- regscale/core/app/utils/parser_utils.py +81 -0
- regscale/core/app/utils/pickle_file_handler.py +57 -0
- regscale/core/app/utils/regscale_utils.py +319 -0
- regscale/core/app/utils/report_utils.py +119 -0
- regscale/core/app/utils/variables.py +226 -0
- regscale/core/decorators.py +31 -0
- regscale/core/lazy_group.py +65 -0
- regscale/core/login.py +63 -0
- regscale/core/server/__init__.py +0 -0
- regscale/core/server/flask_api.py +473 -0
- regscale/core/server/helpers.py +373 -0
- regscale/core/server/rest.py +64 -0
- regscale/core/server/static/css/bootstrap.css +6030 -0
- regscale/core/server/static/css/bootstrap.min.css +6 -0
- regscale/core/server/static/css/main.css +176 -0
- regscale/core/server/static/images/regscale-cli.svg +49 -0
- regscale/core/server/static/images/regscale.svg +38 -0
- regscale/core/server/templates/base.html +74 -0
- regscale/core/server/templates/index.html +43 -0
- regscale/core/server/templates/login.html +28 -0
- regscale/core/server/templates/make_base64.html +22 -0
- regscale/core/server/templates/upload_STIG.html +109 -0
- regscale/core/server/templates/upload_STIG_result.html +26 -0
- regscale/core/server/templates/upload_ssp.html +144 -0
- regscale/core/server/templates/upload_ssp_result.html +128 -0
- regscale/core/static/__init__.py +0 -0
- regscale/core/static/regex.py +14 -0
- regscale/core/utils/__init__.py +117 -0
- regscale/core/utils/click_utils.py +13 -0
- regscale/core/utils/date.py +238 -0
- regscale/core/utils/graphql.py +254 -0
- regscale/core/utils/urls.py +23 -0
- regscale/dev/__init__.py +6 -0
- regscale/dev/analysis.py +454 -0
- regscale/dev/cli.py +235 -0
- regscale/dev/code_gen.py +492 -0
- regscale/dev/dirs.py +69 -0
- regscale/dev/docs.py +384 -0
- regscale/dev/monitoring.py +26 -0
- regscale/dev/profiling.py +216 -0
- regscale/exceptions/__init__.py +4 -0
- regscale/exceptions/license_exception.py +7 -0
- regscale/exceptions/validation_exception.py +9 -0
- regscale/integrations/__init__.py +1 -0
- regscale/integrations/commercial/__init__.py +486 -0
- regscale/integrations/commercial/ad.py +433 -0
- regscale/integrations/commercial/amazon/__init__.py +0 -0
- regscale/integrations/commercial/amazon/common.py +106 -0
- regscale/integrations/commercial/aqua/__init__.py +0 -0
- regscale/integrations/commercial/aqua/aqua.py +91 -0
- regscale/integrations/commercial/aws/__init__.py +6 -0
- regscale/integrations/commercial/aws/cli.py +322 -0
- regscale/integrations/commercial/aws/inventory/__init__.py +110 -0
- regscale/integrations/commercial/aws/inventory/base.py +64 -0
- regscale/integrations/commercial/aws/inventory/resources/__init__.py +19 -0
- regscale/integrations/commercial/aws/inventory/resources/compute.py +234 -0
- regscale/integrations/commercial/aws/inventory/resources/containers.py +113 -0
- regscale/integrations/commercial/aws/inventory/resources/database.py +101 -0
- regscale/integrations/commercial/aws/inventory/resources/integration.py +237 -0
- regscale/integrations/commercial/aws/inventory/resources/networking.py +253 -0
- regscale/integrations/commercial/aws/inventory/resources/security.py +240 -0
- regscale/integrations/commercial/aws/inventory/resources/storage.py +91 -0
- regscale/integrations/commercial/aws/scanner.py +823 -0
- regscale/integrations/commercial/azure/__init__.py +0 -0
- regscale/integrations/commercial/azure/common.py +32 -0
- regscale/integrations/commercial/azure/intune.py +488 -0
- regscale/integrations/commercial/azure/scanner.py +49 -0
- regscale/integrations/commercial/burp.py +78 -0
- regscale/integrations/commercial/cpe.py +144 -0
- regscale/integrations/commercial/crowdstrike.py +1117 -0
- regscale/integrations/commercial/defender.py +1511 -0
- regscale/integrations/commercial/dependabot.py +210 -0
- regscale/integrations/commercial/durosuite/__init__.py +0 -0
- regscale/integrations/commercial/durosuite/api.py +1546 -0
- regscale/integrations/commercial/durosuite/process_devices.py +101 -0
- regscale/integrations/commercial/durosuite/scanner.py +637 -0
- regscale/integrations/commercial/durosuite/variables.py +21 -0
- regscale/integrations/commercial/ecr.py +90 -0
- regscale/integrations/commercial/gcp/__init__.py +237 -0
- regscale/integrations/commercial/gcp/auth.py +96 -0
- regscale/integrations/commercial/gcp/control_tests.py +238 -0
- regscale/integrations/commercial/gcp/variables.py +18 -0
- regscale/integrations/commercial/gitlab.py +332 -0
- regscale/integrations/commercial/grype.py +165 -0
- regscale/integrations/commercial/ibm.py +90 -0
- regscale/integrations/commercial/import_all/__init__.py +0 -0
- regscale/integrations/commercial/import_all/import_all_cmd.py +467 -0
- regscale/integrations/commercial/import_all/scan_file_fingerprints.json +27 -0
- regscale/integrations/commercial/jira.py +1046 -0
- regscale/integrations/commercial/mappings/__init__.py +0 -0
- regscale/integrations/commercial/mappings/csf_controls.json +713 -0
- regscale/integrations/commercial/mappings/nist_800_53_r5_controls.json +1516 -0
- regscale/integrations/commercial/nessus/__init__.py +0 -0
- regscale/integrations/commercial/nessus/nessus_utils.py +429 -0
- regscale/integrations/commercial/nessus/scanner.py +416 -0
- regscale/integrations/commercial/nexpose.py +90 -0
- regscale/integrations/commercial/okta.py +798 -0
- regscale/integrations/commercial/opentext/__init__.py +0 -0
- regscale/integrations/commercial/opentext/click.py +99 -0
- regscale/integrations/commercial/opentext/scanner.py +143 -0
- regscale/integrations/commercial/prisma.py +91 -0
- regscale/integrations/commercial/qualys.py +1462 -0
- regscale/integrations/commercial/salesforce.py +980 -0
- regscale/integrations/commercial/sap/__init__.py +0 -0
- regscale/integrations/commercial/sap/click.py +31 -0
- regscale/integrations/commercial/sap/sysdig/__init__.py +0 -0
- regscale/integrations/commercial/sap/sysdig/click.py +57 -0
- regscale/integrations/commercial/sap/sysdig/sysdig_scanner.py +190 -0
- regscale/integrations/commercial/sap/tenable/__init__.py +0 -0
- regscale/integrations/commercial/sap/tenable/click.py +49 -0
- regscale/integrations/commercial/sap/tenable/scanner.py +196 -0
- regscale/integrations/commercial/servicenow.py +1756 -0
- regscale/integrations/commercial/sicura/__init__.py +0 -0
- regscale/integrations/commercial/sicura/api.py +855 -0
- regscale/integrations/commercial/sicura/commands.py +73 -0
- regscale/integrations/commercial/sicura/scanner.py +481 -0
- regscale/integrations/commercial/sicura/variables.py +16 -0
- regscale/integrations/commercial/snyk.py +90 -0
- regscale/integrations/commercial/sonarcloud.py +260 -0
- regscale/integrations/commercial/sqlserver.py +369 -0
- regscale/integrations/commercial/stig_mapper_integration/__init__.py +0 -0
- regscale/integrations/commercial/stig_mapper_integration/click_commands.py +38 -0
- regscale/integrations/commercial/stig_mapper_integration/mapping_engine.py +353 -0
- regscale/integrations/commercial/stigv2/__init__.py +0 -0
- regscale/integrations/commercial/stigv2/ckl_parser.py +349 -0
- regscale/integrations/commercial/stigv2/click_commands.py +95 -0
- regscale/integrations/commercial/stigv2/stig_integration.py +202 -0
- regscale/integrations/commercial/synqly/__init__.py +0 -0
- regscale/integrations/commercial/synqly/assets.py +46 -0
- regscale/integrations/commercial/synqly/ticketing.py +132 -0
- regscale/integrations/commercial/synqly/vulnerabilities.py +223 -0
- regscale/integrations/commercial/synqly_jira.py +840 -0
- regscale/integrations/commercial/tenablev2/__init__.py +0 -0
- regscale/integrations/commercial/tenablev2/authenticate.py +31 -0
- regscale/integrations/commercial/tenablev2/click.py +1584 -0
- regscale/integrations/commercial/tenablev2/scanner.py +504 -0
- regscale/integrations/commercial/tenablev2/stig_parsers.py +140 -0
- regscale/integrations/commercial/tenablev2/utils.py +78 -0
- regscale/integrations/commercial/tenablev2/variables.py +17 -0
- regscale/integrations/commercial/trivy.py +162 -0
- regscale/integrations/commercial/veracode.py +96 -0
- regscale/integrations/commercial/wizv2/WizDataMixin.py +97 -0
- regscale/integrations/commercial/wizv2/__init__.py +0 -0
- regscale/integrations/commercial/wizv2/click.py +429 -0
- regscale/integrations/commercial/wizv2/constants.py +1001 -0
- regscale/integrations/commercial/wizv2/issue.py +361 -0
- regscale/integrations/commercial/wizv2/models.py +112 -0
- regscale/integrations/commercial/wizv2/parsers.py +339 -0
- regscale/integrations/commercial/wizv2/sbom.py +115 -0
- regscale/integrations/commercial/wizv2/scanner.py +416 -0
- regscale/integrations/commercial/wizv2/utils.py +796 -0
- regscale/integrations/commercial/wizv2/variables.py +39 -0
- regscale/integrations/commercial/wizv2/wiz_auth.py +159 -0
- regscale/integrations/commercial/xray.py +91 -0
- regscale/integrations/integration/__init__.py +2 -0
- regscale/integrations/integration/integration.py +26 -0
- regscale/integrations/integration/inventory.py +17 -0
- regscale/integrations/integration/issue.py +100 -0
- regscale/integrations/integration_override.py +149 -0
- regscale/integrations/public/__init__.py +103 -0
- regscale/integrations/public/cisa.py +641 -0
- regscale/integrations/public/criticality_updater.py +70 -0
- regscale/integrations/public/emass.py +411 -0
- regscale/integrations/public/emass_slcm_import.py +697 -0
- regscale/integrations/public/fedramp/__init__.py +0 -0
- regscale/integrations/public/fedramp/appendix_parser.py +548 -0
- regscale/integrations/public/fedramp/click.py +479 -0
- regscale/integrations/public/fedramp/components.py +714 -0
- regscale/integrations/public/fedramp/docx_parser.py +259 -0
- regscale/integrations/public/fedramp/fedramp_cis_crm.py +1124 -0
- regscale/integrations/public/fedramp/fedramp_common.py +3181 -0
- regscale/integrations/public/fedramp/fedramp_docx.py +388 -0
- regscale/integrations/public/fedramp/fedramp_five.py +2343 -0
- regscale/integrations/public/fedramp/fedramp_traversal.py +138 -0
- regscale/integrations/public/fedramp/import_fedramp_r4_ssp.py +279 -0
- regscale/integrations/public/fedramp/import_workbook.py +495 -0
- regscale/integrations/public/fedramp/inventory_items.py +244 -0
- regscale/integrations/public/fedramp/mappings/__init__.py +0 -0
- regscale/integrations/public/fedramp/mappings/fedramp_r4_parts.json +7388 -0
- regscale/integrations/public/fedramp/mappings/fedramp_r5_params.json +8636 -0
- regscale/integrations/public/fedramp/mappings/fedramp_r5_parts.json +9605 -0
- regscale/integrations/public/fedramp/mappings/system_roles.py +34 -0
- regscale/integrations/public/fedramp/mappings/user.py +175 -0
- regscale/integrations/public/fedramp/mappings/values.py +141 -0
- regscale/integrations/public/fedramp/markdown_parser.py +150 -0
- regscale/integrations/public/fedramp/metadata.py +689 -0
- regscale/integrations/public/fedramp/models/__init__.py +59 -0
- regscale/integrations/public/fedramp/models/leveraged_auth_new.py +168 -0
- regscale/integrations/public/fedramp/models/poam_importer.py +522 -0
- regscale/integrations/public/fedramp/parts_mapper.py +107 -0
- regscale/integrations/public/fedramp/poam/__init__.py +0 -0
- regscale/integrations/public/fedramp/poam/scanner.py +851 -0
- regscale/integrations/public/fedramp/properties.py +201 -0
- regscale/integrations/public/fedramp/reporting.py +84 -0
- regscale/integrations/public/fedramp/resources.py +496 -0
- regscale/integrations/public/fedramp/rosetta.py +110 -0
- regscale/integrations/public/fedramp/ssp_logger.py +87 -0
- regscale/integrations/public/fedramp/system_characteristics.py +922 -0
- regscale/integrations/public/fedramp/system_control_implementations.py +582 -0
- regscale/integrations/public/fedramp/system_implementation.py +190 -0
- regscale/integrations/public/fedramp/xml_utils.py +87 -0
- regscale/integrations/public/nist_catalog.py +275 -0
- regscale/integrations/public/oscal.py +1946 -0
- regscale/integrations/public/otx.py +169 -0
- regscale/integrations/scanner_integration.py +2692 -0
- regscale/integrations/variables.py +25 -0
- regscale/models/__init__.py +7 -0
- regscale/models/app_models/__init__.py +5 -0
- regscale/models/app_models/catalog_compare.py +213 -0
- regscale/models/app_models/click.py +252 -0
- regscale/models/app_models/datetime_encoder.py +21 -0
- regscale/models/app_models/import_validater.py +321 -0
- regscale/models/app_models/mapping.py +260 -0
- regscale/models/app_models/pipeline.py +37 -0
- regscale/models/click_models.py +413 -0
- regscale/models/config.py +154 -0
- regscale/models/email_style.css +67 -0
- regscale/models/hierarchy.py +8 -0
- regscale/models/inspect_models.py +79 -0
- regscale/models/integration_models/__init__.py +0 -0
- regscale/models/integration_models/amazon_models/__init__.py +0 -0
- regscale/models/integration_models/amazon_models/inspector.py +262 -0
- regscale/models/integration_models/amazon_models/inspector_scan.py +206 -0
- regscale/models/integration_models/aqua.py +247 -0
- regscale/models/integration_models/azure_alerts.py +255 -0
- regscale/models/integration_models/base64.py +23 -0
- regscale/models/integration_models/burp.py +433 -0
- regscale/models/integration_models/burp_models.py +128 -0
- regscale/models/integration_models/cisa_kev_data.json +19333 -0
- regscale/models/integration_models/defender_data.py +93 -0
- regscale/models/integration_models/defenderimport.py +143 -0
- regscale/models/integration_models/drf.py +443 -0
- regscale/models/integration_models/ecr_models/__init__.py +0 -0
- regscale/models/integration_models/ecr_models/data.py +69 -0
- regscale/models/integration_models/ecr_models/ecr.py +239 -0
- regscale/models/integration_models/flat_file_importer.py +1079 -0
- regscale/models/integration_models/grype_import.py +247 -0
- regscale/models/integration_models/ibm.py +126 -0
- regscale/models/integration_models/implementation_results.py +85 -0
- regscale/models/integration_models/nexpose.py +140 -0
- regscale/models/integration_models/prisma.py +202 -0
- regscale/models/integration_models/qualys.py +720 -0
- regscale/models/integration_models/qualys_scanner.py +160 -0
- regscale/models/integration_models/sbom/__init__.py +0 -0
- regscale/models/integration_models/sbom/cyclone_dx.py +139 -0
- regscale/models/integration_models/send_reminders.py +620 -0
- regscale/models/integration_models/snyk.py +155 -0
- regscale/models/integration_models/synqly_models/__init__.py +0 -0
- regscale/models/integration_models/synqly_models/capabilities.json +1 -0
- regscale/models/integration_models/synqly_models/connector_types.py +22 -0
- regscale/models/integration_models/synqly_models/connectors/__init__.py +7 -0
- regscale/models/integration_models/synqly_models/connectors/assets.py +97 -0
- regscale/models/integration_models/synqly_models/connectors/ticketing.py +583 -0
- regscale/models/integration_models/synqly_models/connectors/vulnerabilities.py +169 -0
- regscale/models/integration_models/synqly_models/ocsf_mapper.py +331 -0
- regscale/models/integration_models/synqly_models/param.py +72 -0
- regscale/models/integration_models/synqly_models/synqly_model.py +733 -0
- regscale/models/integration_models/synqly_models/tenants.py +39 -0
- regscale/models/integration_models/tenable_models/__init__.py +0 -0
- regscale/models/integration_models/tenable_models/integration.py +187 -0
- regscale/models/integration_models/tenable_models/models.py +513 -0
- regscale/models/integration_models/trivy_import.py +231 -0
- regscale/models/integration_models/veracode.py +217 -0
- regscale/models/integration_models/xray.py +135 -0
- regscale/models/locking.py +100 -0
- regscale/models/platform.py +110 -0
- regscale/models/regscale_models/__init__.py +67 -0
- regscale/models/regscale_models/assessment.py +570 -0
- regscale/models/regscale_models/assessment_plan.py +52 -0
- regscale/models/regscale_models/asset.py +567 -0
- regscale/models/regscale_models/asset_mapping.py +190 -0
- regscale/models/regscale_models/case.py +42 -0
- regscale/models/regscale_models/catalog.py +261 -0
- regscale/models/regscale_models/cci.py +46 -0
- regscale/models/regscale_models/change.py +167 -0
- regscale/models/regscale_models/checklist.py +372 -0
- regscale/models/regscale_models/comment.py +49 -0
- regscale/models/regscale_models/compliance_settings.py +112 -0
- regscale/models/regscale_models/component.py +412 -0
- regscale/models/regscale_models/component_mapping.py +65 -0
- regscale/models/regscale_models/control.py +38 -0
- regscale/models/regscale_models/control_implementation.py +1128 -0
- regscale/models/regscale_models/control_objective.py +261 -0
- regscale/models/regscale_models/control_parameter.py +100 -0
- regscale/models/regscale_models/control_test.py +34 -0
- regscale/models/regscale_models/control_test_plan.py +75 -0
- regscale/models/regscale_models/control_test_result.py +52 -0
- regscale/models/regscale_models/custom_field.py +245 -0
- regscale/models/regscale_models/data.py +109 -0
- regscale/models/regscale_models/data_center.py +40 -0
- regscale/models/regscale_models/deviation.py +203 -0
- regscale/models/regscale_models/email.py +97 -0
- regscale/models/regscale_models/evidence.py +47 -0
- regscale/models/regscale_models/evidence_mapping.py +40 -0
- regscale/models/regscale_models/facility.py +59 -0
- regscale/models/regscale_models/file.py +382 -0
- regscale/models/regscale_models/filetag.py +37 -0
- regscale/models/regscale_models/form_field_value.py +94 -0
- regscale/models/regscale_models/group.py +169 -0
- regscale/models/regscale_models/implementation_objective.py +335 -0
- regscale/models/regscale_models/implementation_option.py +275 -0
- regscale/models/regscale_models/implementation_role.py +33 -0
- regscale/models/regscale_models/incident.py +177 -0
- regscale/models/regscale_models/interconnection.py +43 -0
- regscale/models/regscale_models/issue.py +1176 -0
- regscale/models/regscale_models/leveraged_authorization.py +125 -0
- regscale/models/regscale_models/line_of_inquiry.py +52 -0
- regscale/models/regscale_models/link.py +205 -0
- regscale/models/regscale_models/meta_data.py +64 -0
- regscale/models/regscale_models/mixins/__init__.py +0 -0
- regscale/models/regscale_models/mixins/parent_cache.py +124 -0
- regscale/models/regscale_models/module.py +224 -0
- regscale/models/regscale_models/modules.py +191 -0
- regscale/models/regscale_models/objective.py +14 -0
- regscale/models/regscale_models/parameter.py +87 -0
- regscale/models/regscale_models/ports_protocol.py +81 -0
- regscale/models/regscale_models/privacy.py +89 -0
- regscale/models/regscale_models/profile.py +50 -0
- regscale/models/regscale_models/profile_link.py +68 -0
- regscale/models/regscale_models/profile_mapping.py +124 -0
- regscale/models/regscale_models/project.py +63 -0
- regscale/models/regscale_models/property.py +278 -0
- regscale/models/regscale_models/question.py +85 -0
- regscale/models/regscale_models/questionnaire.py +87 -0
- regscale/models/regscale_models/questionnaire_instance.py +177 -0
- regscale/models/regscale_models/rbac.py +132 -0
- regscale/models/regscale_models/reference.py +86 -0
- regscale/models/regscale_models/regscale_model.py +1643 -0
- regscale/models/regscale_models/requirement.py +29 -0
- regscale/models/regscale_models/risk.py +274 -0
- regscale/models/regscale_models/sbom.py +54 -0
- regscale/models/regscale_models/scan_history.py +436 -0
- regscale/models/regscale_models/search.py +53 -0
- regscale/models/regscale_models/security_control.py +132 -0
- regscale/models/regscale_models/security_plan.py +204 -0
- regscale/models/regscale_models/software_inventory.py +159 -0
- regscale/models/regscale_models/stake_holder.py +64 -0
- regscale/models/regscale_models/stig.py +647 -0
- regscale/models/regscale_models/supply_chain.py +152 -0
- regscale/models/regscale_models/system_role.py +188 -0
- regscale/models/regscale_models/system_role_external_assignment.py +40 -0
- regscale/models/regscale_models/tag.py +37 -0
- regscale/models/regscale_models/tag_mapping.py +19 -0
- regscale/models/regscale_models/task.py +133 -0
- regscale/models/regscale_models/threat.py +196 -0
- regscale/models/regscale_models/user.py +175 -0
- regscale/models/regscale_models/user_group.py +55 -0
- regscale/models/regscale_models/vulnerability.py +242 -0
- regscale/models/regscale_models/vulnerability_mapping.py +162 -0
- regscale/models/regscale_models/workflow.py +55 -0
- regscale/models/regscale_models/workflow_action.py +34 -0
- regscale/models/regscale_models/workflow_instance.py +269 -0
- regscale/models/regscale_models/workflow_instance_step.py +114 -0
- regscale/models/regscale_models/workflow_template.py +58 -0
- regscale/models/regscale_models/workflow_template_step.py +45 -0
- regscale/regscale.py +815 -0
- regscale/utils/__init__.py +7 -0
- regscale/utils/b64conversion.py +14 -0
- regscale/utils/click_utils.py +118 -0
- regscale/utils/decorators.py +48 -0
- regscale/utils/dict_utils.py +59 -0
- regscale/utils/files.py +79 -0
- regscale/utils/fxns.py +30 -0
- regscale/utils/graphql_client.py +113 -0
- regscale/utils/lists.py +16 -0
- regscale/utils/numbers.py +12 -0
- regscale/utils/shell.py +148 -0
- regscale/utils/string.py +121 -0
- regscale/utils/synqly_utils.py +165 -0
- regscale/utils/threading/__init__.py +8 -0
- regscale/utils/threading/threadhandler.py +131 -0
- regscale/utils/threading/threadsafe_counter.py +47 -0
- regscale/utils/threading/threadsafe_dict.py +242 -0
- regscale/utils/threading/threadsafe_list.py +83 -0
- regscale/utils/version.py +104 -0
- regscale/validation/__init__.py +0 -0
- regscale/validation/address.py +37 -0
- regscale/validation/record.py +48 -0
- regscale/visualization/__init__.py +5 -0
- regscale/visualization/click.py +34 -0
- regscale_cli-6.16.0.0.dist-info/LICENSE +21 -0
- regscale_cli-6.16.0.0.dist-info/METADATA +659 -0
- regscale_cli-6.16.0.0.dist-info/RECORD +481 -0
- regscale_cli-6.16.0.0.dist-info/WHEEL +5 -0
- regscale_cli-6.16.0.0.dist-info/entry_points.txt +6 -0
- regscale_cli-6.16.0.0.dist-info/top_level.txt +2 -0
- tests/fixtures/__init__.py +2 -0
- tests/fixtures/api.py +87 -0
- tests/fixtures/models.py +91 -0
- tests/fixtures/test_fixture.py +144 -0
- tests/mocks/__init__.py +0 -0
- tests/mocks/objects.py +3 -0
- tests/mocks/response.py +32 -0
- tests/mocks/xml.py +13 -0
- tests/regscale/__init__.py +0 -0
- tests/regscale/core/__init__.py +0 -0
- tests/regscale/core/test_api.py +232 -0
- tests/regscale/core/test_app.py +406 -0
- tests/regscale/core/test_login.py +37 -0
- tests/regscale/core/test_logz.py +66 -0
- tests/regscale/core/test_sbom_generator.py +87 -0
- tests/regscale/core/test_validation_utils.py +163 -0
- tests/regscale/core/test_version.py +78 -0
- tests/regscale/models/__init__.py +0 -0
- tests/regscale/models/test_asset.py +71 -0
- tests/regscale/models/test_config.py +26 -0
- tests/regscale/models/test_control_implementation.py +27 -0
- tests/regscale/models/test_import.py +97 -0
- tests/regscale/models/test_issue.py +36 -0
- tests/regscale/models/test_mapping.py +52 -0
- tests/regscale/models/test_platform.py +31 -0
- tests/regscale/models/test_regscale_model.py +346 -0
- tests/regscale/models/test_report.py +32 -0
- tests/regscale/models/test_tenable_integrations.py +118 -0
- tests/regscale/models/test_user_model.py +121 -0
- tests/regscale/test_about.py +19 -0
- tests/regscale/test_authorization.py +65 -0
|
@@ -0,0 +1,481 @@
|
|
|
1
|
+
regscale/__init__.py,sha256=4Zl2UdkrSoMbDWW3mjxsNJIlHmCY3Wk6RNCaYQHD5jU,25
|
|
2
|
+
regscale/regscale.py,sha256=kztX3Opi2ERFo3PVAE8ZC9fqzyOwHO3jYuNo6VdCRLM,30730
|
|
3
|
+
regscale/airflow/__init__.py,sha256=yMwN0Bz4JbM0nl5qY_hPegxo_O2ilhTOL9PY5Njhn-s,270
|
|
4
|
+
regscale/airflow/click_dags.py,sha256=H3SUR5jkvInNMv1gu-VG-Ja_H-kH145CpQYNalWNAbE,4520
|
|
5
|
+
regscale/airflow/click_mixins.py,sha256=BTwKWsEu6KVtlrzFbXpD_RuEpMzc-CSnCCySUzqzCgQ,3571
|
|
6
|
+
regscale/airflow/config.py,sha256=XZdfhexSp2iQftrp8NTm0Y0XtFfm1a8TfF72MrgJK2s,872
|
|
7
|
+
regscale/airflow/hierarchy.py,sha256=TPYZpCaaew1YM82MuxxHSrS9zbkUOxe3BUCs2-6E5pc,3176
|
|
8
|
+
regscale/airflow/azure/__init__.py,sha256=20IXz_ByZ3C7vCMB72AOZxEry-i4_YXvotG1IJm-Zmc,301
|
|
9
|
+
regscale/airflow/azure/cli.py,sha256=ZQJR3-9gBK1BEs4J5gWpLmGhA0TTkNPyeYdDl3orm7M,2935
|
|
10
|
+
regscale/airflow/azure/upload_dags.py,sha256=WaAH_nDyrHooYieqMx1TRk_SbXkw9GzkbXemv3Zl-3Q,4256
|
|
11
|
+
regscale/airflow/factories/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
+
regscale/airflow/factories/connections.py,sha256=GHNkZYVys1MOWR36xRe9KAKjzbrnAhnf1lFv6KPTzJc,1928
|
|
13
|
+
regscale/airflow/factories/workflows.py,sha256=6MNYZh-2-OYi4X8kfIyqz-eRNAJQowI_008bkcBGHBU,2605
|
|
14
|
+
regscale/airflow/operators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
|
+
regscale/airflow/operators/click.py,sha256=if21BpLljZom8OnfCiuBlgGExH5gy_gaQmJgX4Vi-jg,1321
|
|
16
|
+
regscale/airflow/sensors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
+
regscale/airflow/sensors/sql.py,sha256=BzG2jlqy5JcgOGC_lRsRnvc2MzoWzQjh1pQf45WqUZ4,3740
|
|
18
|
+
regscale/airflow/sessions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
|
+
regscale/airflow/sessions/sql/__init__.py,sha256=C5b3UzK6nO1IhJ7SDftTZWQL1tRRYf8VYxkZ-JlT22U,73
|
|
20
|
+
regscale/airflow/sessions/sql/queries.py,sha256=zDzO5rmmIIOg2uBI664856DPRRkZsz-HQCrzMHp5Dp4,1926
|
|
21
|
+
regscale/airflow/sessions/sql/sql_server_queries.py,sha256=r8_3xVo9ZsSCNPKPY_Z2M9kKis7HHDDhHUqVTApx7cw,8453
|
|
22
|
+
regscale/airflow/tasks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
|
+
regscale/airflow/tasks/branches.py,sha256=u1_v5ujPrv6uVTIiZWzujlMLTlBI0g_9ypt4kFEgU_s,820
|
|
24
|
+
regscale/airflow/tasks/cli.py,sha256=4AW50dnWZ_Uv6oSPooyMyXUsNUJz8ognFruNJAChgNw,4020
|
|
25
|
+
regscale/airflow/tasks/click.py,sha256=HkEmNA3S341u-hwPlaitE5jg6ALQocYtXctCGUq6f-k,2830
|
|
26
|
+
regscale/airflow/tasks/debugging.py,sha256=bxTo-Rw-k9iVY3vIApdXtd6Hb9X-Ld59-UNpeHT5qso,182
|
|
27
|
+
regscale/airflow/tasks/groups.py,sha256=e1dPH6XvtCeUW9du0F7XtR654dKXlcmE2cplbo-jXPw,4079
|
|
28
|
+
regscale/airflow/tasks/init.py,sha256=ybRKOcNzMICIMnjtAWn87vBe9BACErxocFMfWljyWQ8,2598
|
|
29
|
+
regscale/airflow/tasks/states.py,sha256=9SFIbsa59SVqZsJP5w3tw9BCxujctX7glNDuAb8jZgM,1208
|
|
30
|
+
regscale/airflow/tasks/workflows.py,sha256=gIMFac-TGuty4DycwN4T3X3XN6Df8iYFRgtIuO4bScY,943
|
|
31
|
+
regscale/ansible/__init__.py,sha256=5l22v8ZPkIR5Yp8NvBZZU4TFdlJVaGtcCaZq_S1iD4I,261
|
|
32
|
+
regscale/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
|
+
regscale/core/decorators.py,sha256=YuX9VCbCJh76qlc_6ungu0nD4VT1VsV2spXH_bsDTfY,894
|
|
34
|
+
regscale/core/lazy_group.py,sha256=S2-nA5tzm47A929NOTqGkzrzKuZQDlq2OAPbNnG1W1Q,2046
|
|
35
|
+
regscale/core/login.py,sha256=zNHIqxwBm3vwA6pGZRmlUZLNO2CYXByZ6hdLll1r-jk,2508
|
|
36
|
+
regscale/core/app/__init__.py,sha256=nGcCN1vWBAnZzoccIlt0jwWQdegCOrBWOB7LPhQkQSs,96
|
|
37
|
+
regscale/core/app/api.py,sha256=d6vkUULEvGQMAHOV8zusd5Ph09Ke-M0J_Nvh8WeQYgo,22850
|
|
38
|
+
regscale/core/app/application.py,sha256=lAA4Wz6r7YxTutCN62vf7xUC64NIH9t4i51YEWCD3ow,25947
|
|
39
|
+
regscale/core/app/logz.py,sha256=8AdBKmquv45JGi5fCMc38JqQg6-FpUONGmqfd5EGwrI,2583
|
|
40
|
+
regscale/core/app/internal/__init__.py,sha256=2ZJGwSuQBoQa1euFJ2pQsyEBMqWqXv7qq8yu02eQcYQ,4436
|
|
41
|
+
regscale/core/app/internal/admin_actions.py,sha256=hOdma7QGwFblmxEj9UTjiWWmZGUS5_ZFtxL2qZdhf-Q,7443
|
|
42
|
+
regscale/core/app/internal/assessments_editor.py,sha256=UozEaQR1v3eXbkFgOY11CkjMLEAF27ej5vlMQ4O9XVA,31477
|
|
43
|
+
regscale/core/app/internal/catalog.py,sha256=svBAgFZaGrkNHh2gZEo1ex2vdjllAIc4940soGykHOc,11088
|
|
44
|
+
regscale/core/app/internal/comparison.py,sha256=eRnCKhq3Kyzh-aUgD6phQH0eONCSCkl5Vz0dr2ymDpQ,16720
|
|
45
|
+
regscale/core/app/internal/control_editor.py,sha256=-hOYB_GXHHG4ToUsZrjFcg_IdwlL-K272wkuRy3dyA0,18222
|
|
46
|
+
regscale/core/app/internal/encrypt.py,sha256=yOEMDDlpI0Sc0LkoeCtXbypnOF8cxoDrzKRU5d3POFQ,5927
|
|
47
|
+
regscale/core/app/internal/evidence.py,sha256=P_I0wyk37M48NZMWkXwX55HQlTjdxrbhuto4SUMHpt8,50470
|
|
48
|
+
regscale/core/app/internal/file_uploads.py,sha256=EfQ4ViJBHzU9bxnFunK3ahA6T9A6pnA-Jk2NrtgmrQY,4776
|
|
49
|
+
regscale/core/app/internal/healthcheck.py,sha256=ef4Mwk19vi71bv-Xkny5_EGG1UXTbCO5dvEIzHyyfVA,2010
|
|
50
|
+
regscale/core/app/internal/login.py,sha256=vG6eLXs9zo9iFcA0rGXlBPV2lkCidQmUXtshJMqF-eM,10769
|
|
51
|
+
regscale/core/app/internal/migrations.py,sha256=wHIzb1uglLVOXawnb-K3Yt70Z5QyfQYb8ZZOMDrNRU4,7983
|
|
52
|
+
regscale/core/app/internal/model_editor.py,sha256=Lt-DmwO9lS7VFZ0eD5Gax6g5gcVRqWq2d7024tzzbNY,61309
|
|
53
|
+
regscale/core/app/internal/poam_editor.py,sha256=Id-oodYYPXllSfpxS_fEHkcEG4lmtJ7yH8ldphm3L-Y,22930
|
|
54
|
+
regscale/core/app/internal/workflow.py,sha256=SpgYk1QyzdilVLOK1fFzaKhdLspumaugf5VezgboxhQ,4007
|
|
55
|
+
regscale/core/app/utils/XMLIR.py,sha256=M_RrCsbjznihatkucCKw6dPgHTPQczXyqIdUXWhuCLI,8328
|
|
56
|
+
regscale/core/app/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
57
|
+
regscale/core/app/utils/api_handler.py,sha256=7StrhhVgTtG6AbA7VvKfZ21V_mQQ6MmyGnF8i11FnPI,12189
|
|
58
|
+
regscale/core/app/utils/app_utils.py,sha256=zLEHHHWR4likFQYY_bZsWLTAoRajyyaWrESkotVrFlM,36240
|
|
59
|
+
regscale/core/app/utils/file_utils.py,sha256=URKWVEiR9aFnwoW3-Io7R22tBVeROTC3sX1wOZuhqXw,8912
|
|
60
|
+
regscale/core/app/utils/parser_utils.py,sha256=nAnxUr_oUGngbIMfXIQjE00RmZwk2eTjFWCbBduyF8I,2537
|
|
61
|
+
regscale/core/app/utils/pickle_file_handler.py,sha256=iMdv4N8z00TB5LyPdxIcLKNRpDQVWQ8ZQWAqCKpqmF0,1695
|
|
62
|
+
regscale/core/app/utils/regscale_utils.py,sha256=lpWVO7bgIb_NNRYY_yflIo1dKBjbffwlOpDlQzJ0_dQ,10439
|
|
63
|
+
regscale/core/app/utils/report_utils.py,sha256=rKn3nmiSPq8LTKM16UiKBSizTsZKh-7JwdOlfX6YSpQ,4210
|
|
64
|
+
regscale/core/app/utils/variables.py,sha256=VRLsFIPlhBBvr1DzAT6C8M5GKeSVfNcFzmy-yEEdf-s,8928
|
|
65
|
+
regscale/core/app/utils/catalog_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
66
|
+
regscale/core/app/utils/catalog_utils/common.py,sha256=LDisn1fyfXC_cPV5rcGuDBKtSug2zv_ju9G9r_k4-BU,2812
|
|
67
|
+
regscale/core/app/utils/catalog_utils/compare_catalog.py,sha256=WtmRPQYI7Hg5hZ4xeWL8gLG8JcLtWxozonWTITRa4Ow,7336
|
|
68
|
+
regscale/core/app/utils/catalog_utils/diagnostic_catalog.py,sha256=fudQ7XW4rQQlwr0jH5k8xAu4AURU8bfme03m6PlHLbg,3664
|
|
69
|
+
regscale/core/app/utils/catalog_utils/download_catalog.py,sha256=urzsFvVvK09Nczi1GkrTTPUJg87NpeTa0BFElx2eKJc,3335
|
|
70
|
+
regscale/core/app/utils/catalog_utils/update_catalog.py,sha256=2L6iA3NtF53dr0NztgdfoMv2ujOJfhGgTVjOyPGzj7A,27643
|
|
71
|
+
regscale/core/app/utils/catalog_utils/update_catalog_v2.py,sha256=TnFEfMBk05Qg4HAdAUlS-kM261I0T7wXiXP9XUzTP5w,56702
|
|
72
|
+
regscale/core/app/utils/catalog_utils/update_catalog_v3.py,sha256=AsyEt6KlZw79y7eud5iuiEmSKwWDiOE8gSpGGxJ6tpY,51580
|
|
73
|
+
regscale/core/app/utils/catalog_utils/update_plans.py,sha256=qB8o_lCC_-S1ZgoAFQEwtp8qkU1PLaRiTuNc7vzz64s,12333
|
|
74
|
+
regscale/core/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
75
|
+
regscale/core/server/flask_api.py,sha256=XYbEwXWpBQb_Mid6_UwqGLfowRxNvqcOdO2AnBjmd60,16971
|
|
76
|
+
regscale/core/server/helpers.py,sha256=slBXADkxSBAzwNvpMQIC39TPbKeuX26meayO-iycsWU,14364
|
|
77
|
+
regscale/core/server/rest.py,sha256=A2fk5OokcuRJSEDrVh9cZmmRtKOjQblOVCKmxAAVXVA,2192
|
|
78
|
+
regscale/core/server/static/css/bootstrap.css,sha256=3o7djKYBc-0zGEK29owpvICLDnWkWr9Nh4KrpWUxev8,151033
|
|
79
|
+
regscale/core/server/static/css/bootstrap.min.css,sha256=pNIl19LhfmITzIkzYIwpWmHuBpb1ZgKijmluJ86arCY,170192
|
|
80
|
+
regscale/core/server/static/css/main.css,sha256=rZgzoYBeFN7WLGP8BgQSYf_e46QxU8CLRnToUSjj4s8,2862
|
|
81
|
+
regscale/core/server/static/images/regscale-cli.svg,sha256=3uzBXCjv_P7qz3PpVAbqhbAwxUbMn8J_CPOxZm3aZvQ,11750
|
|
82
|
+
regscale/core/server/static/images/regscale.svg,sha256=sht6wRYMT859MUq83o0rJzxrfKeWQvKwj7AYun-bYqM,11101
|
|
83
|
+
regscale/core/server/templates/base.html,sha256=tdmOZMAoWDNMsxjiX1MZKE7MUUf67JZyG47lM9DB_LY,3080
|
|
84
|
+
regscale/core/server/templates/index.html,sha256=pnll8jtOUSXIhu715BOIlzMm6ygzf2QYRMcvrC-h9Rs,1335
|
|
85
|
+
regscale/core/server/templates/login.html,sha256=DOz6uI04ygyhAtOrXhOch4do-v1S1Pw-zzBtfGB0e5k,947
|
|
86
|
+
regscale/core/server/templates/make_base64.html,sha256=vYDUxhj4ohycFJi4Aq8GEhmDbfjMgr425urrDop7t6o,701
|
|
87
|
+
regscale/core/server/templates/upload_STIG.html,sha256=Ye4vXfLu86UoQ-N6CwgW4kWZeysrNaURDAEjJOzsVt0,4835
|
|
88
|
+
regscale/core/server/templates/upload_STIG_result.html,sha256=rNMiUH8RzNCvhFBtK_1-CCREeygO63jfbvcgox843d0,951
|
|
89
|
+
regscale/core/server/templates/upload_ssp.html,sha256=hGFqxq0t-k8hfMefaNyhA2CZpZMs6fQWIixBEEWTQCo,7092
|
|
90
|
+
regscale/core/server/templates/upload_ssp_result.html,sha256=VUraPUZrMslE49GTkQXycEAd4suq-eHP8lr7Ry8bGWU,4773
|
|
91
|
+
regscale/core/static/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
92
|
+
regscale/core/static/regex.py,sha256=KLg-do2oPuUD6bQG9usqqSy5sxqlSEAEuUUbGVkZ6eU,384
|
|
93
|
+
regscale/core/utils/__init__.py,sha256=Eyvc210t-KRqvTcV5DNWRjKO99CdWy_dC57wfggFWcw,3876
|
|
94
|
+
regscale/core/utils/click_utils.py,sha256=y6vAbaPoT0Abb8siS1tvJxJQTm4sbWQTeq5nTDIgBtI,375
|
|
95
|
+
regscale/core/utils/date.py,sha256=kTpJ5IBgqcTDOtx9NQc1KnSh7fiQcM7maxDmANBSc58,8355
|
|
96
|
+
regscale/core/utils/graphql.py,sha256=oXGBcAuDa0uasMnD4CokIzzKKa-IgExdKXLwtaK2_tA,8386
|
|
97
|
+
regscale/core/utils/urls.py,sha256=ZcU9OJqDmVQXgu6BrLESIp2KMkkUuzTZZ_wHsZMzfA4,687
|
|
98
|
+
regscale/dev/__init__.py,sha256=wVP59B1iurp36ul8pD_CjmunJLHOdKWWodz1r5loNvw,190
|
|
99
|
+
regscale/dev/analysis.py,sha256=9s6pfTGK6FBqV-karQQnCc_GYHloETmFyvsvVJ5jBm8,15603
|
|
100
|
+
regscale/dev/cli.py,sha256=VT9QHhfJX10KdJlSL9zBx-D__0H7qqS8G1GPwOb59Xs,8783
|
|
101
|
+
regscale/dev/code_gen.py,sha256=oVAGPEH1V2OQDkQ6189KWwoZGt4_E_IXKmkGFG0Dv-Q,22477
|
|
102
|
+
regscale/dev/dirs.py,sha256=wmEKM4UZjMXDiNi6a17JchhyfQNvJg6ACQmqT_Xt6V0,2044
|
|
103
|
+
regscale/dev/docs.py,sha256=Ngtd2Z0vYXYQXUIAqhL02f-_fUuIpmTPa5YIO3wAOHY,14678
|
|
104
|
+
regscale/dev/monitoring.py,sha256=h0pewRSXF8bLEtQ9dB3D0XqGTM4HtjaCiUUH3ijEllM,835
|
|
105
|
+
regscale/dev/profiling.py,sha256=7Eln3y5xaGgYQMRTtJjtD_HRHeW13qkR4kY0qAXxIbA,6897
|
|
106
|
+
regscale/exceptions/__init__.py,sha256=97lZsao_6Dz4U8LVgOiXV0arRkkN6XAEu4ZkelMh4iM,129
|
|
107
|
+
regscale/exceptions/license_exception.py,sha256=5lDYW1uGf7dHFKBkhzYD3FlNnI6W4BICXi24OJyOs_w,195
|
|
108
|
+
regscale/exceptions/validation_exception.py,sha256=_DW_GARtPr_Dyy8tolnvC_AYsHRsUUvRz_Rkk8-fjgk,219
|
|
109
|
+
regscale/integrations/__init__.py,sha256=Sqthp3Jggo7co_go380cLn3OAb0cHwqL609_4QJSFBY,58
|
|
110
|
+
regscale/integrations/integration_override.py,sha256=PH7t_bf-RCe_it3FJ61tlKX5UghqHuSEQNJWDfCamAg,5480
|
|
111
|
+
regscale/integrations/scanner_integration.py,sha256=2Bazljsw2WSGg4M-lk14fYc4Ms7qwRqy4rZxCWrKea4,118582
|
|
112
|
+
regscale/integrations/variables.py,sha256=_knfoweXyvarsDGijvpsy87tXAXIijKGRXk9Hw5gGlQ,1904
|
|
113
|
+
regscale/integrations/commercial/__init__.py,sha256=rz9fcuxoK2TrpOIGr1iikPIbDqSQjrDwmQaiaUq5de4,13147
|
|
114
|
+
regscale/integrations/commercial/ad.py,sha256=TB3crro2ov7irsUzEwEh3N8QwhbKvhi4Kmd_k3_c8SI,15508
|
|
115
|
+
regscale/integrations/commercial/burp.py,sha256=5hK4bVivfnP1H0UnBdTp_A4WfpCgIn2bsjSQ57JF7WQ,2522
|
|
116
|
+
regscale/integrations/commercial/cpe.py,sha256=eXZeDXicnp1yYgKuyKcthQUYxXi2Pgc__UD8lUqr5H0,4924
|
|
117
|
+
regscale/integrations/commercial/crowdstrike.py,sha256=3RIF4ISM3PuBufXO9bJ-41ByslMFLe5GKe9TayRR_mU,40254
|
|
118
|
+
regscale/integrations/commercial/defender.py,sha256=SA3cn4tdRcD6ZjbCZgULl3ts2fAUqnf27RkdDo7ULGM,65920
|
|
119
|
+
regscale/integrations/commercial/dependabot.py,sha256=V4VbHbwrxHfe7eCilJ7U_MBeIO6X3wetGfIo2DJYe_c,7793
|
|
120
|
+
regscale/integrations/commercial/ecr.py,sha256=47iCigssDANlfHYGznU4rfOq6O-1QMGOuP8lBmn7Df0,2693
|
|
121
|
+
regscale/integrations/commercial/gitlab.py,sha256=dzfqJQ68QI1ee_BriNMyPuXLkzOhc2vR1hhVfq2j13Y,12496
|
|
122
|
+
regscale/integrations/commercial/grype.py,sha256=81hmc0gpZvNzuh4Hq1dpegY6VsPCgwjBeMAm6mCljqQ,6156
|
|
123
|
+
regscale/integrations/commercial/ibm.py,sha256=RQrivu4tOl_8gh5iUa9m9sGbHusphP8rnU2BZZc9IMs,2772
|
|
124
|
+
regscale/integrations/commercial/jira.py,sha256=1fBF3y4kotbD9hFtqZxlBIb4Q6iNkhIKyPI_MUiqZ6w,39222
|
|
125
|
+
regscale/integrations/commercial/nexpose.py,sha256=lqPw9yk7ywHDoLwPeXKSz9DaLyVzOQIKOotCgayVTNE,2853
|
|
126
|
+
regscale/integrations/commercial/okta.py,sha256=VNwE848xiBxkha4DibkhLJN-fi0T8rLMd30PPAmRjpk,30837
|
|
127
|
+
regscale/integrations/commercial/prisma.py,sha256=shr71NkaSfcg2m-Ak6EVV9ozAFPibiOoehEty24MtyA,2841
|
|
128
|
+
regscale/integrations/commercial/qualys.py,sha256=NV2j8NMTT0VTdn5yANq5p29mmDNImJucA9iRiNawfxM,53967
|
|
129
|
+
regscale/integrations/commercial/salesforce.py,sha256=vvXWlXxhJMQj45tU7wz7o4YbkhqjPlaMx_6SWYkI3Bs,36671
|
|
130
|
+
regscale/integrations/commercial/servicenow.py,sha256=jcZIaf3OHkFKzdYX6LTc57z9FFmWgWA8omP6ksdwRi0,63979
|
|
131
|
+
regscale/integrations/commercial/snyk.py,sha256=TLo6FPLQoSoPJI2J-UfsVMPMTL9udKd1pJx6h3z4RTQ,2796
|
|
132
|
+
regscale/integrations/commercial/sonarcloud.py,sha256=_E4DuKRZUqXNNPsxS3UJ3q6llVu-5sfw5pTHxe_UMk0,9821
|
|
133
|
+
regscale/integrations/commercial/sqlserver.py,sha256=PcDLmsZ9xU5NlFpwPZyMhhxCgX4JK2Ztn2S6kCG4mws,11614
|
|
134
|
+
regscale/integrations/commercial/synqly_jira.py,sha256=dmw3m_lKtii2OpVcrmtNJ-ClUNThV8-1IOrWyE2RQLE,33002
|
|
135
|
+
regscale/integrations/commercial/trivy.py,sha256=loH0-WNeZ32ZVEiAr3mmsWi5iL1lF14pKjTxaAyvizo,6065
|
|
136
|
+
regscale/integrations/commercial/veracode.py,sha256=ZEK-CW5nGIYl5bydSxssCpAZYeBLgmSZkrU-ilyRpI0,2910
|
|
137
|
+
regscale/integrations/commercial/xray.py,sha256=egJO6fCQ8jhSpyu6Gj2xczTtUMEiSAJKDz05dT-YZ6M,2734
|
|
138
|
+
regscale/integrations/commercial/amazon/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
139
|
+
regscale/integrations/commercial/amazon/common.py,sha256=8ITptlZjJD720_DGfPqmEXeNF4GbAseq8o0s80E4CyY,3252
|
|
140
|
+
regscale/integrations/commercial/aqua/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
141
|
+
regscale/integrations/commercial/aqua/aqua.py,sha256=UrtECdLn5Nba758QCMnRxnOtUppnUQjtgkWHljllsHQ,2662
|
|
142
|
+
regscale/integrations/commercial/aws/__init__.py,sha256=Pii3CMGvIwZnTSenuvDvuybWXBtIRdGyvF02sykzg1A,203
|
|
143
|
+
regscale/integrations/commercial/aws/cli.py,sha256=Nkyyb1VrX25ouluHsUBPZzvclpg6bd6yLUlk8C51znI,9233
|
|
144
|
+
regscale/integrations/commercial/aws/scanner.py,sha256=aO8vmJX7nCp1YWqidNePBd0zN7nRZ9tmWJwR17RPDQA,33515
|
|
145
|
+
regscale/integrations/commercial/aws/inventory/__init__.py,sha256=nBWBRs_lTbp3tfCcnmN855qQpnXtwyJ5miTXlD7Uhcs,4302
|
|
146
|
+
regscale/integrations/commercial/aws/inventory/base.py,sha256=2iR43aus9OtMCUQ56mO7LAgzqGcQYRKX8PeZ1EXXH6Y,2096
|
|
147
|
+
regscale/integrations/commercial/aws/inventory/resources/__init__.py,sha256=wP8TMIixWGCn2rBNFW6XzhME-xO8kpxi9edMUJgpso4,523
|
|
148
|
+
regscale/integrations/commercial/aws/inventory/resources/compute.py,sha256=rNi9KGbaKVtag1isERIEgcwf2I1kcFXdY0GDkbLB6BQ,9752
|
|
149
|
+
regscale/integrations/commercial/aws/inventory/resources/containers.py,sha256=Z22Z66la-vmctYg40MAuSSWBcUmWDcwTF4R-f3GGcKw,4412
|
|
150
|
+
regscale/integrations/commercial/aws/inventory/resources/database.py,sha256=W1MUh4TsH4RpzLgzWC3pL0jLH6YUNXlgujqSfjJuW8s,4734
|
|
151
|
+
regscale/integrations/commercial/aws/inventory/resources/integration.py,sha256=mI3nbbYFM1ufO1dlIN5-VTyiICORo-666i4ssI6UbVA,11130
|
|
152
|
+
regscale/integrations/commercial/aws/inventory/resources/networking.py,sha256=CkPBE2FA5dyaTjUVvVTFjoVCVO7NDs7dKjBvUs3kKYA,11597
|
|
153
|
+
regscale/integrations/commercial/aws/inventory/resources/security.py,sha256=EWH2f_kFUqqAYdcBQ0gNzXTIcpMcJU02-robtiROFOc,10459
|
|
154
|
+
regscale/integrations/commercial/aws/inventory/resources/storage.py,sha256=fEikYzdNATpXwqhHw41yYyyWUVpC-52Iif9NzXThVkI,3427
|
|
155
|
+
regscale/integrations/commercial/azure/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
156
|
+
regscale/integrations/commercial/azure/common.py,sha256=yc_yjfPrcgV9ulcMkQQhoqNB9JBwXYlZGQNUuxUpc3A,1078
|
|
157
|
+
regscale/integrations/commercial/azure/intune.py,sha256=YwOlwQ_9Fk9kgAGjoAUj48bJt10Pl3h1WLb40VBhFR4,17179
|
|
158
|
+
regscale/integrations/commercial/azure/scanner.py,sha256=UDNJlHTL5haGV88S366_tqRxs0qqWgecW4Ckzll_lWs,1690
|
|
159
|
+
regscale/integrations/commercial/durosuite/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
160
|
+
regscale/integrations/commercial/durosuite/api.py,sha256=yuSX__q98o1q69lx8I2q_NuejidXmcTcEFkF-VQFKOM,55912
|
|
161
|
+
regscale/integrations/commercial/durosuite/process_devices.py,sha256=zzlBHTBxCa1tOOPT-n4dUDLIWrEJOrgEPC8RuU-jmng,4035
|
|
162
|
+
regscale/integrations/commercial/durosuite/scanner.py,sha256=Qlo_XSkSDW6ybgUHGT-hT02MZXMLlbRQ8PY-0a8630M,21409
|
|
163
|
+
regscale/integrations/commercial/durosuite/variables.py,sha256=9pGXHMLjZQGu5KMgwYzKA3LBHxcZ_aa-gqM_mNxqqU0,1130
|
|
164
|
+
regscale/integrations/commercial/gcp/__init__.py,sha256=XNiGNoYOGRKgZwqQCqTGRazr3bzXoLvXx0jseNWRez4,9293
|
|
165
|
+
regscale/integrations/commercial/gcp/auth.py,sha256=DSakDZL9JE67r5W-USqavCyrRS2rqVQ7-FxGi3h4kNg,3186
|
|
166
|
+
regscale/integrations/commercial/gcp/control_tests.py,sha256=AvM6Dv2FgFi3bsgXYxq6yxxlbmXuhtFZkmEAJU_qQiE,9913
|
|
167
|
+
regscale/integrations/commercial/gcp/variables.py,sha256=tFxPS0SXAmYGpaDTVxOLDp4NpDyIgbEWp6OB3x9Jog4,797
|
|
168
|
+
regscale/integrations/commercial/import_all/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
169
|
+
regscale/integrations/commercial/import_all/import_all_cmd.py,sha256=VtEDpWEXEhNkwkcsTafITCqCR3g5skdXNKvHr1-hlBY,18273
|
|
170
|
+
regscale/integrations/commercial/import_all/scan_file_fingerprints.json,sha256=8c_hnfwbq9bEHr3f14hzcnA9vrehQ-_ZsAIZ4YTPB6w,1981
|
|
171
|
+
regscale/integrations/commercial/mappings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
172
|
+
regscale/integrations/commercial/mappings/csf_controls.json,sha256=EHOLWrnFr0oRsHBx4LX6pLVoqLuX-Mn7O-CXuzpw-v4,57504
|
|
173
|
+
regscale/integrations/commercial/mappings/nist_800_53_r5_controls.json,sha256=Vuh8RkKhX84U8VG2zoLG94QL7mvWIF28M-u8B4paxgw,123879
|
|
174
|
+
regscale/integrations/commercial/nessus/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
175
|
+
regscale/integrations/commercial/nessus/nessus_utils.py,sha256=lP1_xVmYeyL17muy0jGMnJ5xdON3mi22BVAyDHa9WfU,13525
|
|
176
|
+
regscale/integrations/commercial/nessus/scanner.py,sha256=ZqU0_sgb_wV0GQA2iHdV9wbwpJJXg92O2ndrvmyGiQ8,17179
|
|
177
|
+
regscale/integrations/commercial/opentext/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
178
|
+
regscale/integrations/commercial/opentext/click.py,sha256=TzDQLNwr4LttcTGHw44MZr4HocROlgDp90pZ3v38Dx8,3148
|
|
179
|
+
regscale/integrations/commercial/opentext/scanner.py,sha256=xRZF0DVR23SZr8BrgwsvMp_PQzHBZWVmOeN9maxizVc,5483
|
|
180
|
+
regscale/integrations/commercial/sap/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
181
|
+
regscale/integrations/commercial/sap/click.py,sha256=pWgjUOA_4WKkDUWcE8z4EshnJUdrTl15NKUfKpKyqzE,522
|
|
182
|
+
regscale/integrations/commercial/sap/sysdig/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
183
|
+
regscale/integrations/commercial/sap/sysdig/click.py,sha256=DuQ-lnAGtnBXQnwa7KUc_arE7S9vBLJfFjkXZp1qqG4,1683
|
|
184
|
+
regscale/integrations/commercial/sap/sysdig/sysdig_scanner.py,sha256=hNIiFaDpnhWPdhjiRu5AEBjXcBezQmUMxvvd7uQSc9Y,7597
|
|
185
|
+
regscale/integrations/commercial/sap/tenable/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
186
|
+
regscale/integrations/commercial/sap/tenable/click.py,sha256=UcZG_EABOK8dJdHu9e13BBK6vuQX7SPBLk-IJyIgDQM,1367
|
|
187
|
+
regscale/integrations/commercial/sap/tenable/scanner.py,sha256=Dq-Qx3759gQUtEA6FTxiefr6I5xHqEQxPYjkNUs5iL8,8188
|
|
188
|
+
regscale/integrations/commercial/sicura/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
189
|
+
regscale/integrations/commercial/sicura/api.py,sha256=2okTzWT9qebYisBsQ9BN3Yw1jvdUDLurWP8-eAz6wvs,31724
|
|
190
|
+
regscale/integrations/commercial/sicura/commands.py,sha256=pEzYH3O8wfvI6D_AHhe-q_zU7dNK8sP-0t1o8PTPcfc,2229
|
|
191
|
+
regscale/integrations/commercial/sicura/scanner.py,sha256=WWYTs1JDIz_5mxqkAS_bnY3EbIqQGet7NHul2lWxFWw,17726
|
|
192
|
+
regscale/integrations/commercial/sicura/variables.py,sha256=FOdXj5bTtmsAYJYLdLxYMalKhkP1l0bWjA5bCmvgvdU,676
|
|
193
|
+
regscale/integrations/commercial/stig_mapper_integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
194
|
+
regscale/integrations/commercial/stig_mapper_integration/click_commands.py,sha256=tLD9WObChb4NBd_sWnX05QPqXbiXOzdAp-v5YAObuDc,1200
|
|
195
|
+
regscale/integrations/commercial/stig_mapper_integration/mapping_engine.py,sha256=woASLcQVB9Ta__1FteY3cyf9fc8vNOYBSSFvH5lrAVk,14022
|
|
196
|
+
regscale/integrations/commercial/stigv2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
197
|
+
regscale/integrations/commercial/stigv2/ckl_parser.py,sha256=RPrDGsKqAbTJMsJd3AYe_8SCzL00ZsB8RnuL8iPTjS0,11896
|
|
198
|
+
regscale/integrations/commercial/stigv2/click_commands.py,sha256=8cVuq_KXnOCktImbtJIUWAk-kVRle__aBfcifU-fvPc,2527
|
|
199
|
+
regscale/integrations/commercial/stigv2/stig_integration.py,sha256=pnR0RMLSJYclJ5DHm-EQJ0Qncc4RJE0dkZhD5W7KfG8,9169
|
|
200
|
+
regscale/integrations/commercial/synqly/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
201
|
+
regscale/integrations/commercial/synqly/assets.py,sha256=GcDGe6XvumaAYyo5Af8Ccmg1DzLfgnNFGdsyRdKsiEs,1412
|
|
202
|
+
regscale/integrations/commercial/synqly/ticketing.py,sha256=8kzFC2yFcQKDQKJhTXzXP0MZI05ZFNxL50jp70nVBxg,3818
|
|
203
|
+
regscale/integrations/commercial/synqly/vulnerabilities.py,sha256=B8GwfKVDdoOIikjZO-4KqDNf-ApXlcJNkwmno0FjDOQ,7842
|
|
204
|
+
regscale/integrations/commercial/tenablev2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
205
|
+
regscale/integrations/commercial/tenablev2/authenticate.py,sha256=ZFtyw26zjt1nky15PSP0Dl1-0WXEydU9s3UaS8oQaZ8,751
|
|
206
|
+
regscale/integrations/commercial/tenablev2/click.py,sha256=IX3SPnROmHspZgUcDJOQIqpf8oEjfwZJA3Ya2lo30lA,56355
|
|
207
|
+
regscale/integrations/commercial/tenablev2/scanner.py,sha256=hNFwKTqYys4GDjopXHqHQjCvM0i7EBoRln7r50SlDxM,21260
|
|
208
|
+
regscale/integrations/commercial/tenablev2/stig_parsers.py,sha256=01h5ImYMUsjrVHaGgqj5JVBx6Jzlhg06ufu0SL_uBEs,5983
|
|
209
|
+
regscale/integrations/commercial/tenablev2/utils.py,sha256=3Mf_HNgFBL27HtsdVs3CqLhgDNl3_RSytS21lcQfKj0,2907
|
|
210
|
+
regscale/integrations/commercial/tenablev2/variables.py,sha256=GWzzNmFkQ6i55RYK7DkVq3ibStaU3hSwapvxsqbNsxE,822
|
|
211
|
+
regscale/integrations/commercial/wizv2/WizDataMixin.py,sha256=s7F_rVrP9IZa_x_vh3MswR7W_UBHRfd4kHGVsNX4ips,3606
|
|
212
|
+
regscale/integrations/commercial/wizv2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
213
|
+
regscale/integrations/commercial/wizv2/click.py,sha256=1vDSeEid4vMkGjf2ON4emuRUyxR2_YAxKJNbW5XBikU,13479
|
|
214
|
+
regscale/integrations/commercial/wizv2/constants.py,sha256=wS_BcZrtNYm_BMuuDUgsLkdgGBGRXs2OGKHaIyoIhaI,22788
|
|
215
|
+
regscale/integrations/commercial/wizv2/issue.py,sha256=MbND-Ir4pU4i0OtxsjbRxn_i8Ibll6gt-qYQK2ObstA,13361
|
|
216
|
+
regscale/integrations/commercial/wizv2/models.py,sha256=hZ6557LJfcp1_NRbMM0V_G1erz1jEFmsuKPn86kXE54,5667
|
|
217
|
+
regscale/integrations/commercial/wizv2/parsers.py,sha256=YcFOGdYZZ17hj2pcRMC9Ho2wPY94dfJ4hHwqTR5BB6c,11095
|
|
218
|
+
regscale/integrations/commercial/wizv2/sbom.py,sha256=QcGaYiBGtZ3mBcbo-KGl-I2u6QHKAIinTk26LPy0Kng,4466
|
|
219
|
+
regscale/integrations/commercial/wizv2/scanner.py,sha256=o6n-MEjyjDCayZbYAGoNFEo4zqvKcMrddZrB2blviX4,18324
|
|
220
|
+
regscale/integrations/commercial/wizv2/utils.py,sha256=rv1duCYYRVUUrTItgotUvBGsSUbqX-qtY6rVoDXu_Lk,28740
|
|
221
|
+
regscale/integrations/commercial/wizv2/variables.py,sha256=BRtYjMNPqZDLgql-bbBJ0dlVx0KkR647aXKc0HGdWVo,2132
|
|
222
|
+
regscale/integrations/commercial/wizv2/wiz_auth.py,sha256=BpQTYJn3u0QiWC2IAw-bunZpBPsJtDJgOsC2zOL_UU4,5554
|
|
223
|
+
regscale/integrations/integration/__init__.py,sha256=WJgPLnEahD94QLE8NR8QCzlf8xk2ix76_WPDlf98ezU,70
|
|
224
|
+
regscale/integrations/integration/integration.py,sha256=pr_fbqBieYbqp3PdBjuqKuZCYFf0kF4GkFdlViTKG54,586
|
|
225
|
+
regscale/integrations/integration/inventory.py,sha256=gHL1a6VSV3zf4DTmksEy8qXNrqhIun8TwLxhRpuEMqY,341
|
|
226
|
+
regscale/integrations/integration/issue.py,sha256=HaCF_5F_U_E5ecYlMgOZiM-yhXnt7OLj47OAJkf9X3g,3507
|
|
227
|
+
regscale/integrations/public/__init__.py,sha256=_TpTkqySBuI7GqMiRHtcQS-g9rAG5fcdd8EpCDWmrZ0,2949
|
|
228
|
+
regscale/integrations/public/cisa.py,sha256=EtOJjReW9hIZhWnJzUSEPyQm2HANrvq0JN3J-aDldkY,22310
|
|
229
|
+
regscale/integrations/public/criticality_updater.py,sha256=bekadBBJkym5Dd9JZFNQmY3I0e1xgBvxkyVwgCNOKus,2806
|
|
230
|
+
regscale/integrations/public/emass.py,sha256=culHHuXUlVYkB6DcVcnUvpBzU1eRyyVGgsJ3KqC8HOw,13672
|
|
231
|
+
regscale/integrations/public/emass_slcm_import.py,sha256=9nvS2XWjSr65Y120tK_Dxd4uy7Tv_RUKpl__GKZmrWE,23974
|
|
232
|
+
regscale/integrations/public/nist_catalog.py,sha256=1h0GKWwuqXuB1X_viyOkzvSYETlqYrm_t3hIQcHxHiE,10075
|
|
233
|
+
regscale/integrations/public/oscal.py,sha256=GcPqRQqCmijCp7TmjBG4303YcJ7U4hfu6KiFSb9QC7Y,72675
|
|
234
|
+
regscale/integrations/public/otx.py,sha256=i6mukISHLYmFJkxkkxhTkqtgcmXioZ00xLQ9YMg2Yzo,5401
|
|
235
|
+
regscale/integrations/public/fedramp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
236
|
+
regscale/integrations/public/fedramp/appendix_parser.py,sha256=3PqOOdejvIkxCJOBJup6Xtdr5Ttz12b1B6E-TS0WMjU,22738
|
|
237
|
+
regscale/integrations/public/fedramp/click.py,sha256=cIMo5ZGXoSDyKvI9kLUFuLT0zfAIfY57X8Xxq386xak,14943
|
|
238
|
+
regscale/integrations/public/fedramp/components.py,sha256=z6PMObm-kjRR42bT04EfnjisrEULfXlwxb7576uuMmY,27010
|
|
239
|
+
regscale/integrations/public/fedramp/docx_parser.py,sha256=EA9g1iTlB6-GtOzV9JwGW8x_SruhbaIMOzstCBvjiq8,10526
|
|
240
|
+
regscale/integrations/public/fedramp/fedramp_cis_crm.py,sha256=RKZdwX12RAGsTWd0xndHxaj5iABiKrULoee7L399E9c,44294
|
|
241
|
+
regscale/integrations/public/fedramp/fedramp_common.py,sha256=xbWmnTq1UB77KgJxYiscW0g6EN_bKtuGZCJ2zueMbSI,115408
|
|
242
|
+
regscale/integrations/public/fedramp/fedramp_docx.py,sha256=GnRjuWEgE9XSe9egPOQSZ8lMjY4CpqcD2IS5paI-xQc,13742
|
|
243
|
+
regscale/integrations/public/fedramp/fedramp_five.py,sha256=-dogAC3J7BNW5Yl6Aw5XHJbjW3PxFi_HjGQCfxfcWns,90771
|
|
244
|
+
regscale/integrations/public/fedramp/fedramp_traversal.py,sha256=BkgwsFluZO5g0Rc0WujYgbc1_YLofamJzFP7Z5UYfao,4528
|
|
245
|
+
regscale/integrations/public/fedramp/import_fedramp_r4_ssp.py,sha256=Opld0vEZ4b71cIDogu6ykTUL86tXZVTSnwQzjz8w_4U,9925
|
|
246
|
+
regscale/integrations/public/fedramp/import_workbook.py,sha256=NMLmdNIcF4KLYVebLz27EtBDjLCdSfJ8hKBkUy31YTw,19674
|
|
247
|
+
regscale/integrations/public/fedramp/inventory_items.py,sha256=gRKmXbubSxMiulis7z43Na9dI05FBgb_RkgwByxC5Wk,10076
|
|
248
|
+
regscale/integrations/public/fedramp/markdown_parser.py,sha256=I2VI8NImOnHfB1eE3iLG_gK6uqqqImL7I_YEkzh6INE,5339
|
|
249
|
+
regscale/integrations/public/fedramp/metadata.py,sha256=eh8AA5YNHUxHGnlbLRmhovINBKqkAJR98EUFDX1g5Z0,26543
|
|
250
|
+
regscale/integrations/public/fedramp/parts_mapper.py,sha256=aBh1gWo-3-JFDDxHQaxrvqC7OFTxS6qWEFfoHlknomc,3787
|
|
251
|
+
regscale/integrations/public/fedramp/properties.py,sha256=Yr9NGM9-vFTbnipl7TRNfo83HJ7FKkCJSECaLtT35eQ,7007
|
|
252
|
+
regscale/integrations/public/fedramp/reporting.py,sha256=KpxHSaw-nR3sQf_c1AGxgFUmWeas62EsbwB0Wu_NL60,2550
|
|
253
|
+
regscale/integrations/public/fedramp/resources.py,sha256=Xcn7pxpm5UsFIPp40oSt6B3123mXdjmX-6AmB5PYsI4,19053
|
|
254
|
+
regscale/integrations/public/fedramp/rosetta.py,sha256=8OGENh1X0KtNTQZVPgQyOXYXwj3-LWHeF1CT-FzWb0E,3399
|
|
255
|
+
regscale/integrations/public/fedramp/ssp_logger.py,sha256=d-cNSyf6wK1A0hy134yH8cPMFztxU0VFqfot734WQP8,2555
|
|
256
|
+
regscale/integrations/public/fedramp/system_characteristics.py,sha256=LUk2X8Q1D_v1YlIVuIEijz0lp6SbcIhWx1ybVVwC81k,36362
|
|
257
|
+
regscale/integrations/public/fedramp/system_control_implementations.py,sha256=yQc2zkfBdt7NbvwBi7pvh9qYgHdeyYJsk8zBKtUyrPY,22650
|
|
258
|
+
regscale/integrations/public/fedramp/system_implementation.py,sha256=zrnEI7m2tLwZCig3_Vq4Mb2uZiDzW-yhYzyam-TRpJw,5945
|
|
259
|
+
regscale/integrations/public/fedramp/xml_utils.py,sha256=MgWYb-ewiCSw6f7zGb2MV0tpRhYOPDXj1g3XymRnAiI,3221
|
|
260
|
+
regscale/integrations/public/fedramp/mappings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
261
|
+
regscale/integrations/public/fedramp/mappings/fedramp_r4_parts.json,sha256=PGqIPG14mSLOs9xmQshfzdF_o9zKda9Qan2SNFXqMY8,204498
|
|
262
|
+
regscale/integrations/public/fedramp/mappings/fedramp_r5_params.json,sha256=5CQ7viFSWvGk3lpoS59QwugJ2A-bTtfXP72IAxImDfo,212929
|
|
263
|
+
regscale/integrations/public/fedramp/mappings/fedramp_r5_parts.json,sha256=t_9n9Z8YJ0YJ8MofXz0KbsdJ1xu5jkGI7FNF5ccGreI,219949
|
|
264
|
+
regscale/integrations/public/fedramp/mappings/system_roles.py,sha256=x2vrJGXRKC7qcgjrUm1KCEkReTYZC9c2euFrhthmRFU,1155
|
|
265
|
+
regscale/integrations/public/fedramp/mappings/user.py,sha256=aHO7j1SToQQfeX1Xq1KsrLb_xjVKeX4mfSG82SnxZ_I,5968
|
|
266
|
+
regscale/integrations/public/fedramp/mappings/values.py,sha256=dXpNrd3zfpDI3PH9XDfLCOy7dmf9iRQAjH_rOB6oXZM,5545
|
|
267
|
+
regscale/integrations/public/fedramp/models/__init__.py,sha256=SPtfXUaVhdehAeL8rmco5rm1Ve2soP2qwhr1UtdqQlE,1659
|
|
268
|
+
regscale/integrations/public/fedramp/models/leveraged_auth_new.py,sha256=MIJ7pMYaPdVRIgMZQQ4VLlq3IB5bYOsaRJSfeRORjC4,6775
|
|
269
|
+
regscale/integrations/public/fedramp/models/poam_importer.py,sha256=UP98NOwzmCgN7666q1IgiVrwfPyXbCeCalDQmXctic8,20993
|
|
270
|
+
regscale/integrations/public/fedramp/poam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
271
|
+
regscale/integrations/public/fedramp/poam/scanner.py,sha256=uk_2V5ED7xNaNyUqO-uoKbcunntAB_Rj2CXU44tIxGU,34047
|
|
272
|
+
regscale/models/__init__.py,sha256=ykonP9piy6O1whIwB9aNdnIoY7XfBuKed5kFvRadFFE,259
|
|
273
|
+
regscale/models/click_models.py,sha256=EI0HFFXQvGy53boZ473ayDJP-qpQsCdufD0xkUGqM3I,15295
|
|
274
|
+
regscale/models/config.py,sha256=M_ftoZUgYL8x1CliDk8Pw6jMhPlz83_xh_Gi8lAabQ4,5420
|
|
275
|
+
regscale/models/email_style.css,sha256=d8PlsCiOxmmkp2Qc7T4qI9Ha5mT12Jn9kRBMOk2xx2Q,2202
|
|
276
|
+
regscale/models/hierarchy.py,sha256=XnQ-pjE3LKViwRQpxdCEU0TWBGzMJo1MqWgbEJgumAU,241
|
|
277
|
+
regscale/models/inspect_models.py,sha256=oRJnLeeAUYIbYXsbPKNpMCyazxQnyH5r-2XxVc5Ih9c,2521
|
|
278
|
+
regscale/models/locking.py,sha256=5GumeAP3SBChurTgWRvh0wgCVwfos32mn0OYDwxhUmg,3151
|
|
279
|
+
regscale/models/platform.py,sha256=tTcnBZ-rr1n4X41OF9g3zGx-8ORS8BsOKjzSxwm6fZg,4242
|
|
280
|
+
regscale/models/app_models/__init__.py,sha256=XmrkxwFJx49ofl5ICZniGmmJe8jO4RkKnHV01fMfrIQ,156
|
|
281
|
+
regscale/models/app_models/catalog_compare.py,sha256=gLD8ti933nW70FcGlx6gp0Lbdo8cFnKky7JkRFAKfOU,7557
|
|
282
|
+
regscale/models/app_models/click.py,sha256=Kgf7j-eaSPVKc7HM8WAIGtEiBTzgP8ipa47dM3hA6OI,8222
|
|
283
|
+
regscale/models/app_models/datetime_encoder.py,sha256=AvKkXWhrd87jTfNnY5Q2gw5IdXkCQDnE_44Lay2ZUAA,518
|
|
284
|
+
regscale/models/app_models/import_validater.py,sha256=Qk0q7VuudzuVjt8h7LM5KxWpAA4PQ-4FXkoFlStfCJ8,12603
|
|
285
|
+
regscale/models/app_models/mapping.py,sha256=h6mSms6Qzct0etntb6lPnpa-kQS2BVHG0MAf9ycoe_U,11180
|
|
286
|
+
regscale/models/app_models/pipeline.py,sha256=qzrkQvvW6d8rqbBjMR8wkT2obez0tnKyY_TxtxLh6VE,909
|
|
287
|
+
regscale/models/integration_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
288
|
+
regscale/models/integration_models/aqua.py,sha256=x8IuQgOW4VxaLRu5FLVNZ2U9fKr-5N8Y5GvgO2-4xjI,10023
|
|
289
|
+
regscale/models/integration_models/azure_alerts.py,sha256=2etrpvcxa7jVQrc98bJlVGd3xPcw-YwJ65c3pfSf0uA,8408
|
|
290
|
+
regscale/models/integration_models/base64.py,sha256=sxV6O5qY1_TstJENX5jBPsSdQwmA83-NNhgJFunXiZE,570
|
|
291
|
+
regscale/models/integration_models/burp.py,sha256=hPQkmmUdC84MBFTE2Di5NvjbGz1ssISSkZdDaVi-ZoQ,16941
|
|
292
|
+
regscale/models/integration_models/burp_models.py,sha256=UytDTAcCaxyu-knFkm_mEUH6UmWK3OTXKSC9Sc6OjVs,3669
|
|
293
|
+
regscale/models/integration_models/cisa_kev_data.json,sha256=evpVH5XRYQBXOFaKP6pI-NrTBjKHK8ZWXGrz6zLwJOU,1140725
|
|
294
|
+
regscale/models/integration_models/defender_data.py,sha256=jsAcjKxiGmumGerj7xSWkFd6r__YpuKDnYX5o7xHDiE,2844
|
|
295
|
+
regscale/models/integration_models/defenderimport.py,sha256=OFwEH0Xu-HFLIZJZ8hP60Ov3lS8RR7KHEsw4wI8QnoE,5766
|
|
296
|
+
regscale/models/integration_models/drf.py,sha256=Aq7AdLa_CH97NrnR-CxaFI22JjVN9uCxVN7Z-BBUaNU,18896
|
|
297
|
+
regscale/models/integration_models/flat_file_importer.py,sha256=xmh3d0qUmocBz8sqDHI9-F_je16Ffo8OYq_KQJwfBPQ,43065
|
|
298
|
+
regscale/models/integration_models/grype_import.py,sha256=umFUWPgey7Ew3McYNI6YEVhw5DISoW8m8TY64kFHKlY,9758
|
|
299
|
+
regscale/models/integration_models/ibm.py,sha256=S2LZkHhxfRBTAS8T2mwiQ_pCfoX1-UwvFXRNz1rb7g0,4760
|
|
300
|
+
regscale/models/integration_models/implementation_results.py,sha256=nJOAFPMS73SudAA2dzxxxRu6h5qagPmr6H9NAOLWzLw,2704
|
|
301
|
+
regscale/models/integration_models/nexpose.py,sha256=mfaVZP9GVbCwdqEYGrGZ0pwSdDXCPKjOK4yR7d7I4oU,5654
|
|
302
|
+
regscale/models/integration_models/prisma.py,sha256=e3AbQyBnxAz9-ICEcad_9YTjAyK-ytEmkgKDxNbF_pk,8328
|
|
303
|
+
regscale/models/integration_models/qualys.py,sha256=PJr9iX7IXH_3dQNzzpf8cmJhIdy_tP3Z8ouVmrKOK2I,26999
|
|
304
|
+
regscale/models/integration_models/qualys_scanner.py,sha256=6rAeCR9qI10MM_LWtZtOhWaT6mERWtII2IxxyvQhfKw,6453
|
|
305
|
+
regscale/models/integration_models/send_reminders.py,sha256=Zon6fyV0nODp8l5KuABe97Rz8l37o4biRb5iML7GHiE,26137
|
|
306
|
+
regscale/models/integration_models/snyk.py,sha256=F2URtePITptqDsqJyo8BnZ4IVBh9ylj0btwgv6W32i4,5810
|
|
307
|
+
regscale/models/integration_models/trivy_import.py,sha256=P2adExaSJfVY97LyS4cNOqAMf3F3qPQNe2Yi7bqptrs,9226
|
|
308
|
+
regscale/models/integration_models/veracode.py,sha256=n5e88BaewUVWr2xp8p3EMf5NL-9f8__l4hwBGtSesTY,8365
|
|
309
|
+
regscale/models/integration_models/xray.py,sha256=fDu9CQIDQ_TL60qOWF9rmmp22pMqpowof33UsGAbz-g,5880
|
|
310
|
+
regscale/models/integration_models/amazon_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
311
|
+
regscale/models/integration_models/amazon_models/inspector.py,sha256=IIjY4STSk2nBZAMKNAp2C7aL9KeQnz47nqLr5L8MzjE,13185
|
|
312
|
+
regscale/models/integration_models/amazon_models/inspector_scan.py,sha256=A1uaOvT2r65_oOiZxShNMKJ7ynhoU97Kq3-zVZR8iVI,7584
|
|
313
|
+
regscale/models/integration_models/ecr_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
314
|
+
regscale/models/integration_models/ecr_models/data.py,sha256=l28DCidXar1JygYBQZL9MYenQA9N-Cx3Skf51IOjZcw,1017
|
|
315
|
+
regscale/models/integration_models/ecr_models/ecr.py,sha256=yUkCpQhOXjll28m-OZiUDgfl0GDamzIMmc17hwvg_08,9578
|
|
316
|
+
regscale/models/integration_models/sbom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
317
|
+
regscale/models/integration_models/sbom/cyclone_dx.py,sha256=0pFR0BWBrF5c8_cC_8mj2MXvNOMHOdHbBYXvTVfFAh8,4058
|
|
318
|
+
regscale/models/integration_models/synqly_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
319
|
+
regscale/models/integration_models/synqly_models/capabilities.json,sha256=Z9BIiiccdQwRLipLnfPTNRGrIbqVZ-ghM-e9hRcDW6k,213468
|
|
320
|
+
regscale/models/integration_models/synqly_models/connector_types.py,sha256=8nxptkTexpskySnmL0obNAff_iu_fx6tJ7i1-4hJvao,461
|
|
321
|
+
regscale/models/integration_models/synqly_models/ocsf_mapper.py,sha256=vrtto3-VxbEtK5JSHNluypLm8yvmT_IDupyiJIeFedY,14535
|
|
322
|
+
regscale/models/integration_models/synqly_models/param.py,sha256=45zgYUV4U9Ia8-CdIb4TlE3vfDMMtbfA1y5LOiznnH8,2645
|
|
323
|
+
regscale/models/integration_models/synqly_models/synqly_model.py,sha256=6ihUJB24XEm6TorNthbAMNxBHrLF99CemHNLm-jqvYo,34503
|
|
324
|
+
regscale/models/integration_models/synqly_models/tenants.py,sha256=kewIZw-iv18bNXJGG3ghwuFJ4CK5iXQhn_x2-xvV0iM,1078
|
|
325
|
+
regscale/models/integration_models/synqly_models/connectors/__init__.py,sha256=LjVwpvzSuP0fgrNHrf1YiyvRUm7R4NkymjeTjGAn6SE,168
|
|
326
|
+
regscale/models/integration_models/synqly_models/connectors/assets.py,sha256=OPEnT2embAv4zjxV8Rt0rUU6ii3Wv_Zs9R_lWSPvIZk,3652
|
|
327
|
+
regscale/models/integration_models/synqly_models/connectors/ticketing.py,sha256=yRBuCkRAVfa_C91r3WqJ9gxrQsoD0qV9cY48YXpJl70,25358
|
|
328
|
+
regscale/models/integration_models/synqly_models/connectors/vulnerabilities.py,sha256=hQ5mpkbJApDpN4mGIMU1rcgL5RtrOOF5IZhFxo0sMbg,7033
|
|
329
|
+
regscale/models/integration_models/tenable_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
330
|
+
regscale/models/integration_models/tenable_models/integration.py,sha256=GpDpS2iF4z-sOx3y2UOkI3e0bw87u3xnc1DOLEPPdwU,7859
|
|
331
|
+
regscale/models/integration_models/tenable_models/models.py,sha256=dmG7btkN4YkDWwnfW5Ldc3tWEAGjPiaRgJjrqMOkPEU,15846
|
|
332
|
+
regscale/models/regscale_models/__init__.py,sha256=Jlo3eCAYrW6CsruzW6tC0Q_w29yKgfWhyLxmatRO4gU,1832
|
|
333
|
+
regscale/models/regscale_models/assessment.py,sha256=ekzNlcsfDGBu97PMCi7hBRGbzVgxk7Ij0RfrdGh1Rfw,20440
|
|
334
|
+
regscale/models/regscale_models/assessment_plan.py,sha256=8AEj-lSq5kk7nSMJ7wJmDwkY9h94PB-oD7qKfLfT9cE,1701
|
|
335
|
+
regscale/models/regscale_models/asset.py,sha256=rMwn2CC4ylZKqXZPXfTWaRt1uMclCyhgVYqgIXjtoLo,19667
|
|
336
|
+
regscale/models/regscale_models/asset_mapping.py,sha256=HFlkAoPZHy2xPYq28cXuzLpFoP36SI08HTL8mH_Q-uE,6851
|
|
337
|
+
regscale/models/regscale_models/case.py,sha256=hLVTwZXzusnXR9avqh7xSVLJwPJ1rPI_Nla_VAkpZcg,1192
|
|
338
|
+
regscale/models/regscale_models/catalog.py,sha256=U0nEyQSKgMuNCWh22gGk5sC-xeBmN8UXHiBsJKIFNZ8,8546
|
|
339
|
+
regscale/models/regscale_models/cci.py,sha256=jjtO3ZXDhzQ05s5i-YeL7_TWPkl9ArGkUJGAw_LnKD8,1264
|
|
340
|
+
regscale/models/regscale_models/change.py,sha256=v-FxWrYijGbxAWk7WEIN3piUw8mM3EWTeKd7itAMfMY,4970
|
|
341
|
+
regscale/models/regscale_models/checklist.py,sha256=GM15N9krNmKNDJnOgtSDRlUTBVwYtttex_plc64OVWY,13290
|
|
342
|
+
regscale/models/regscale_models/comment.py,sha256=EJtnk04JcyFUYeiVAHTPkoZuS8XndgmCr8KaprrywRo,1555
|
|
343
|
+
regscale/models/regscale_models/compliance_settings.py,sha256=e0Ghjozt8iCgzmCPfYNAqyGcz7rD8Xw4efdhg5QFuyg,3808
|
|
344
|
+
regscale/models/regscale_models/component.py,sha256=zURPe-unWeHpkx6OoVq3AxdOYp7Ci14xXMy-AjYmXik,14149
|
|
345
|
+
regscale/models/regscale_models/component_mapping.py,sha256=g0cbbW4X49SDdlB_YtKMrP4eiK9OkrJqiut0ucdyVDA,2162
|
|
346
|
+
regscale/models/regscale_models/control.py,sha256=mO46F1IfiXnLSb3YhylaS3SyjtT51s-r8b3hjix9Gbc,1072
|
|
347
|
+
regscale/models/regscale_models/control_implementation.py,sha256=OEwjdGG9tTlRjEghPhMjz-tU5cQqDDOTE9gLWgUIMXQ,46238
|
|
348
|
+
regscale/models/regscale_models/control_objective.py,sha256=FLgBeC9P1aYDcrbajntc-ndIZWjazUqGMYZXlXvDVKE,9452
|
|
349
|
+
regscale/models/regscale_models/control_parameter.py,sha256=5VVkbVZTb2Hzy_WiybU2JtrvhQp8DLSWxRcbSKxktiI,3499
|
|
350
|
+
regscale/models/regscale_models/control_test.py,sha256=FG-fLS9JJf8__a84W2LtBXtEjzOH9iq2EO949vBx3eY,949
|
|
351
|
+
regscale/models/regscale_models/control_test_plan.py,sha256=ThfZB2mA6NtcQyZnJ8NyD4o1agTfewUobt7HmNZpLzs,2294
|
|
352
|
+
regscale/models/regscale_models/control_test_result.py,sha256=gdvMu4kzOwv2dc7IJ1l6B6UbdXBBuBlMg6xZHLQTlmY,1560
|
|
353
|
+
regscale/models/regscale_models/custom_field.py,sha256=pt3aOgsjHWUpSCyHx-2uNl_dSknqNkvMc3ePN-IZYmA,9532
|
|
354
|
+
regscale/models/regscale_models/data.py,sha256=jxos_D_3ZhCHZuWfnpIvxf6xpgVm18VuwHu_xGbiaG0,3008
|
|
355
|
+
regscale/models/regscale_models/data_center.py,sha256=MaLfG0n6cCwsTNEsYOJlq04rY8LSGFWCMScS8NiLpb4,1074
|
|
356
|
+
regscale/models/regscale_models/deviation.py,sha256=wOMY5A6XZpKWJnNIXTj3Ks5pls34eyGWkwgR8R7tj-Y,7855
|
|
357
|
+
regscale/models/regscale_models/email.py,sha256=kgEzXTUZr7uHksMOCextWbXJXYuRKyXO29cNgzoWnog,3441
|
|
358
|
+
regscale/models/regscale_models/evidence.py,sha256=nOc328HreJgSNFhlLh8lfZclj2HQOq46Ee1Lo1xSrqI,1904
|
|
359
|
+
regscale/models/regscale_models/evidence_mapping.py,sha256=1TPFUEGl0uWChdAcVuFkEAwl36twRVfN81Hz4vNUI5A,1440
|
|
360
|
+
regscale/models/regscale_models/facility.py,sha256=C0x_6_XdDJNTVeCUAMiCb3NqxOxReByCjlSrA_KiBgI,1719
|
|
361
|
+
regscale/models/regscale_models/file.py,sha256=fwedDdcsZ9Y6Dsy4PtnmJ_SaUPOagNnAPk0N53uJfeI,14121
|
|
362
|
+
regscale/models/regscale_models/filetag.py,sha256=jd99xcQsGheLFfy7PYtZEzT-re_Dp_ZoUF3GWYMsi0Q,1138
|
|
363
|
+
regscale/models/regscale_models/form_field_value.py,sha256=4LQrIdJgDwBh2Fyne9CH-EJ8G21a-tglxod8D48r2lY,3443
|
|
364
|
+
regscale/models/regscale_models/group.py,sha256=jKS0OAE_fdoXvAxPvJp2ubE0C2s3iXkfpb99liUuFR8,6151
|
|
365
|
+
regscale/models/regscale_models/implementation_objective.py,sha256=e0Hamt-9RBeHRDzlWDbIJ3t4qnZKXPrbsesBK3wYoNk,12132
|
|
366
|
+
regscale/models/regscale_models/implementation_option.py,sha256=gEScteJjmTq_jw010gnOJbvYE6ZeWmrGdl6Qs1kw_Mc,11395
|
|
367
|
+
regscale/models/regscale_models/implementation_role.py,sha256=ZjJOhjM3dVlulsGx3lUKgG49LpxNzx6J-RwTd4eRgx0,1107
|
|
368
|
+
regscale/models/regscale_models/incident.py,sha256=jsS4MfigzjwFphvdIrBk62GfvbceQ8VL-AhfQSQM460,6028
|
|
369
|
+
regscale/models/regscale_models/interconnection.py,sha256=B8Y4I6KnN-T_gid08QM_o50OwGZcFfO8SJFY2uB68Ak,1256
|
|
370
|
+
regscale/models/regscale_models/issue.py,sha256=5jhDwxawsxPCNhkqF05S2OdCKCqQj0ftZX8jMNtDvoA,46709
|
|
371
|
+
regscale/models/regscale_models/leveraged_authorization.py,sha256=OUrL8JQV3r7T3ldHlL6Y_ZLv6KuQIC-3eZW5wZ7XFUk,4192
|
|
372
|
+
regscale/models/regscale_models/line_of_inquiry.py,sha256=u8oPt15LvdFNv7FSSZIbBbjMqPF4lLbLEr3EN6mQa1Q,1702
|
|
373
|
+
regscale/models/regscale_models/link.py,sha256=lAY4Ig3Menm1EqfcAbVJ7jsCsRO5tWtJIf-9-G9FXT8,6593
|
|
374
|
+
regscale/models/regscale_models/meta_data.py,sha256=Fg8rrWSTx3K00QkF4glH9UdY9OFWJ4_UqxleLSSbx8I,2482
|
|
375
|
+
regscale/models/regscale_models/module.py,sha256=a7lalHmVTQ04ZILnJxuFWdHYDtyusBMTtonD4ICL-Wc,7272
|
|
376
|
+
regscale/models/regscale_models/modules.py,sha256=CkR03zJhrBjhw50d-Kpyem7Ryh-QWz_RLHEMlx2e8VA,6150
|
|
377
|
+
regscale/models/regscale_models/objective.py,sha256=aJIpmkZ-NscqV2y8SGB4HYzm615b6mklyHnW9bL2ljk,249
|
|
378
|
+
regscale/models/regscale_models/parameter.py,sha256=I7k_CDigR-UkecAR8uMv3BsT11qT2xi1GJuA46aEJK0,3110
|
|
379
|
+
regscale/models/regscale_models/ports_protocol.py,sha256=Pcn-R6bsmxWiaYEtlZuu7Zv0C4vVX8YHMWgGcd1MRCY,2146
|
|
380
|
+
regscale/models/regscale_models/privacy.py,sha256=iADeNOyU7h0XQQQCtWRxxVD1fmYOCzmt8ZSn-LsThZw,2897
|
|
381
|
+
regscale/models/regscale_models/profile.py,sha256=ruwb4csb2_49RSoHFlqVQVC9SnKFp9H6XgMZESwUsJY,1909
|
|
382
|
+
regscale/models/regscale_models/profile_link.py,sha256=Nxs4HgpRMC-ftSztelWqKf5J2x3NnEa3X9D4cAJh054,2213
|
|
383
|
+
regscale/models/regscale_models/profile_mapping.py,sha256=d0SjxCvWEMMFzKTgb1ET_cgkYgt9dvosxPkJmCCpuYc,4386
|
|
384
|
+
regscale/models/regscale_models/project.py,sha256=MbGwhE95YVmOvrUm2kK7ryqAKulClu90jq2TmknQLeU,2545
|
|
385
|
+
regscale/models/regscale_models/property.py,sha256=fyJw_t8Z-aO0idYXyOIiAqX18fuOHh77XfJtWU0Jwq4,10176
|
|
386
|
+
regscale/models/regscale_models/question.py,sha256=pZGX8zLGAHXTTQiJtqlv88UEXixLuHZqUiF3HSqd6vs,2777
|
|
387
|
+
regscale/models/regscale_models/questionnaire.py,sha256=yWNeKLx2pc9gyc1SCwcjXfWKSjgw3yfUBEhnDtYJO4M,3649
|
|
388
|
+
regscale/models/regscale_models/questionnaire_instance.py,sha256=Hfa27stfcK1_vjtqj8t-5s3LdxZUlLjKLRm4P5qEHKU,7071
|
|
389
|
+
regscale/models/regscale_models/rbac.py,sha256=4byeEmr0TxtSyKx7efCX_HGphBzf6s2EFZ1xfTAttPk,4523
|
|
390
|
+
regscale/models/regscale_models/reference.py,sha256=P_7jT6H-NZIa7TyH3j98N-ZHlB6FsjpZVRZCCpms-D4,3253
|
|
391
|
+
regscale/models/regscale_models/regscale_model.py,sha256=PHBpdYLbpkj2ZWrqOG-51RY8hdkpM3MQOUelbqIZJLk,64250
|
|
392
|
+
regscale/models/regscale_models/requirement.py,sha256=-8PnMbuWAZHol5X1w-fzm-moD784Et0oevSVbz6xLhU,767
|
|
393
|
+
regscale/models/regscale_models/risk.py,sha256=QPwX8-4ERLYkJdrQYLQWTsNYCYgWn5wKY28djv6L-_s,8493
|
|
394
|
+
regscale/models/regscale_models/sbom.py,sha256=UYS3lBizGqz7A7vNPYBYzpL8PWIaXLl7ZQox_hlJ2ZQ,1722
|
|
395
|
+
regscale/models/regscale_models/scan_history.py,sha256=o4e9P2rQlqlLj4mbgSPX44jutTJo1nocI1DDXyWyf6w,16741
|
|
396
|
+
regscale/models/regscale_models/search.py,sha256=rPbFDCnnBRHY5JJv9Ev3_6GjMlkdhUAsaUzC97eE2Ys,1015
|
|
397
|
+
regscale/models/regscale_models/security_control.py,sha256=tob8y9zaMGdITju4ffrCAa5s6qhdchdkuxJdZ6VdkOA,4614
|
|
398
|
+
regscale/models/regscale_models/security_plan.py,sha256=LSQGnRat04z6wY4BmSjAAvLpf06RyOFQ8D1mvBKDi_c,7500
|
|
399
|
+
regscale/models/regscale_models/software_inventory.py,sha256=xZyLl1SgFxRjrbASFkzTsmK3bQty2ZlO-zXPjuElwmM,5540
|
|
400
|
+
regscale/models/regscale_models/stake_holder.py,sha256=JIuDTIky_3acDl-NOMwylTHkppN38JgPDZ1A6wM-BGE,1956
|
|
401
|
+
regscale/models/regscale_models/stig.py,sha256=y-PQuGg3pwDTfsNZGW6anaNAjIZBQoNe7GOLMiT5zfw,26329
|
|
402
|
+
regscale/models/regscale_models/supply_chain.py,sha256=uhCQ-5_gSLtVHH776rsAvLFwVfuBG4JyDwuOlHQnl2s,5123
|
|
403
|
+
regscale/models/regscale_models/system_role.py,sha256=cGKhdekD0ZlT_cuUGDhzED9J46UzWdAVzdoq_TxG0KA,6406
|
|
404
|
+
regscale/models/regscale_models/system_role_external_assignment.py,sha256=vCI-paDP4gARkHyGareBUdkmK0hcp1cDSe7yFdYMSug,1333
|
|
405
|
+
regscale/models/regscale_models/tag.py,sha256=D4n5ABDzjI7u1ukjRyHgmgyVd8iNTNJlQrdi55AhYmM,1130
|
|
406
|
+
regscale/models/regscale_models/tag_mapping.py,sha256=QtafVsWjpBR8BAxRhabk3FL3E4WI5OdCv95fuvNOrZs,657
|
|
407
|
+
regscale/models/regscale_models/task.py,sha256=eKVdR89Gb6M9E2plhK4fru8teQI3zPJpgtJ0f43FOrY,4919
|
|
408
|
+
regscale/models/regscale_models/threat.py,sha256=4TNZcRnTgmlDwBsYu5Pbh9GRd8ZWAtqqr0Xph3uPNAA,7255
|
|
409
|
+
regscale/models/regscale_models/user.py,sha256=o-1Ghx0pm2DYLCDyOryJmDrMlTCyrsN0opr89rQ09vA,6560
|
|
410
|
+
regscale/models/regscale_models/user_group.py,sha256=6j-lkhu21zNukof804Dsk7eHPtEwD7779yInWm6lHTs,1860
|
|
411
|
+
regscale/models/regscale_models/vulnerability.py,sha256=lSa5gP9614pDRKwDv5sIIDubzx38HeamFo8XcE_OMqU,8722
|
|
412
|
+
regscale/models/regscale_models/vulnerability_mapping.py,sha256=cq44xkkCH7rfp0BJxavr4DLiEAHouyyPmi5EaizH6NI,6261
|
|
413
|
+
regscale/models/regscale_models/workflow.py,sha256=uMNVVAn5qR8wxjMP5PHbcvMmvPRe1gn1oclVUpbv52s,1873
|
|
414
|
+
regscale/models/regscale_models/workflow_action.py,sha256=zMHrvUkTQJlkCj6Xx6wadozBwsVPpObj5GD81LI2VZc,925
|
|
415
|
+
regscale/models/regscale_models/workflow_instance.py,sha256=15QPr25bVdB3ERPXmQfy2REflVsOZAq6-wZF0GV0MPo,10895
|
|
416
|
+
regscale/models/regscale_models/workflow_instance_step.py,sha256=5UppRE3p_godU6sXgHtyrg5B4A_2hOjwkT44sPf1oFI,3863
|
|
417
|
+
regscale/models/regscale_models/workflow_template.py,sha256=cADzG27MYukJL_Fam85RkKa3-CGiwOzHW-hJCsd3mhI,2072
|
|
418
|
+
regscale/models/regscale_models/workflow_template_step.py,sha256=XB-LgM4UWegDTAnoJvL-W3LHhWloNDX8YfWQX0tNevY,1695
|
|
419
|
+
regscale/models/regscale_models/mixins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
420
|
+
regscale/models/regscale_models/mixins/parent_cache.py,sha256=dWK6DIkeWV7oWvbUtzvlOGULPiBXRgzohrBmag-qVwQ,4208
|
|
421
|
+
regscale/utils/__init__.py,sha256=QiA5U3-1oD1UPCrLnO9sP8Isww8U8K9Dl_7FNjQi4Ns,170
|
|
422
|
+
regscale/utils/b64conversion.py,sha256=br00ZtuWFWGmajFrl_gAUAZeG4SX5se3coP7J50ZwmM,397
|
|
423
|
+
regscale/utils/click_utils.py,sha256=AY6S8RSF5FDwbvhVoE08801Wyvnclg-VWf8WHRSSqqY,4014
|
|
424
|
+
regscale/utils/decorators.py,sha256=3QLjZ4_QfUSdJYYMw4nGE7EPdo2P7P3AERZxHHVgXDI,1083
|
|
425
|
+
regscale/utils/dict_utils.py,sha256=2iCUMUZP8urkmpzB3BpnaSMrEQtrT9u4HINLSXGiXyI,2468
|
|
426
|
+
regscale/utils/files.py,sha256=LtOca6DK4yZxBE037fRi1lsJeHmBmXLBkDq_er3Uhmw,2410
|
|
427
|
+
regscale/utils/fxns.py,sha256=dLmxVkeoYXljAs0JbWaehBqZ2BxrdZ9ilH9FGvWRWx4,914
|
|
428
|
+
regscale/utils/graphql_client.py,sha256=nE1jMgedyrN64jXYC_VBoTnKHG8tV0MDVXuIptnQCgc,4471
|
|
429
|
+
regscale/utils/lists.py,sha256=CuxSVJNSFQ5TXtzXh5LQqL4yOZhuCmfcKbeQgjeBjok,459
|
|
430
|
+
regscale/utils/numbers.py,sha256=0LkZvewuKXogk6_oWF90OAoGIuzK1fjWZ4gRCC9_TlQ,301
|
|
431
|
+
regscale/utils/shell.py,sha256=H9Zzwt3zxyzWmfiH3tVrcIoAcEHtF_pXzM5ERd7PAGc,4176
|
|
432
|
+
regscale/utils/string.py,sha256=3TYMjGHr0T98SswyGl6f54jXKB_-zlW5it9ZxTOm6bg,3918
|
|
433
|
+
regscale/utils/synqly_utils.py,sha256=DjkdAxdUJBOU5YfAJ7pFFNBPSP37Gs9NQS10xduaYmA,6324
|
|
434
|
+
regscale/utils/version.py,sha256=KMmQfUe9kCAbxSvT5ERJB7H3nBU6-9ZAmeUCLYYjOBc,4321
|
|
435
|
+
regscale/utils/threading/__init__.py,sha256=xdaPVA-vab5_grbx_ESD9k_i-FGt5xb9pBJd2xvkExU,254
|
|
436
|
+
regscale/utils/threading/threadhandler.py,sha256=W6Ujc-kf0vOhlQgsMb7MRFImtBuWQ-IsOiCunRAqCuY,4709
|
|
437
|
+
regscale/utils/threading/threadsafe_counter.py,sha256=Dwt-jt4nN-ApMgpxONM7RFll6FU4hMCeZCW54rjDPjs,1037
|
|
438
|
+
regscale/utils/threading/threadsafe_dict.py,sha256=XCVN5DoJsgZj-0tkDYAZb2QTLTZF9wS_ve-XKFJiywg,7656
|
|
439
|
+
regscale/utils/threading/threadsafe_list.py,sha256=yacUXI4JL36rOByOPb50tGVzNNcpW8bI7kFIpTnsOQI,2011
|
|
440
|
+
regscale/validation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
441
|
+
regscale/validation/address.py,sha256=ZgF2ODljUDL7ri7IUUg_fXJxYpVVVqbUjlMHIsgPXJM,865
|
|
442
|
+
regscale/validation/record.py,sha256=liBQwtDUzoH-KXsmFi1Fsxtp4OUrq7U5EYua7O3o4Cc,1325
|
|
443
|
+
regscale/visualization/__init__.py,sha256=F8fS2WyyvmXfdWWecWLY5wo5yyIvMZJrDqjSalBd9Mw,173
|
|
444
|
+
regscale/visualization/click.py,sha256=-fxIwc-RrI3iHdMNTk_dhplC8yUjZXcWuHfZa7ULRfo,922
|
|
445
|
+
tests/fixtures/__init__.py,sha256=sLuJtRNqBRm8lpE2yKvZFIqwtYho5A5O8KbJj_IpKhQ,41
|
|
446
|
+
tests/fixtures/api.py,sha256=32EY2VZxumbPAP58ZkS0_SH4UewY9Z-ZzWrP2Unwnog,2629
|
|
447
|
+
tests/fixtures/models.py,sha256=pWKwexocbJDfMGdiuafgHEz1RklO_24znfd3LsgdXEs,3569
|
|
448
|
+
tests/fixtures/test_fixture.py,sha256=T-Fx3l0uTIO3WKphlfaWttZ5Ur3Z1oXTPFDYGFuFBwQ,5360
|
|
449
|
+
tests/mocks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
450
|
+
tests/mocks/objects.py,sha256=KfCpzXpwWl-3zCLihQ3ZrQONW8Jk7F4UbcAgPz2LnnQ,99
|
|
451
|
+
tests/mocks/response.py,sha256=fUF2jrrxgmGUKXUcWWOSA457yrEyM1EB28G6RqPO9a0,1040
|
|
452
|
+
tests/mocks/xml.py,sha256=WYeZRZfyYmOi4TTvF7I53l3gKF4x1DE1dqy08szPkfQ,261
|
|
453
|
+
tests/regscale/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
454
|
+
tests/regscale/test_about.py,sha256=32YZC8XJW5QkIYIfwEVGIdIxQNUIbyzn3OzVcX_5X24,635
|
|
455
|
+
tests/regscale/test_authorization.py,sha256=fls5ODCYiu0DdkwXFepO_GM-BP6tRaPmMCZWX6VD2e8,1899
|
|
456
|
+
tests/regscale/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
457
|
+
tests/regscale/core/test_api.py,sha256=25AsIT-jg8SrlkPeynUwwm4PvTOrHcRO2Ba_omnNLUY,7512
|
|
458
|
+
tests/regscale/core/test_app.py,sha256=IOLC6dzgsZF5PdGRHaTqFvJa-BV3dozRK30QQd6JvQs,18099
|
|
459
|
+
tests/regscale/core/test_login.py,sha256=Kl7ySS8JU7SzhmupaDexeUH8VOMjtMRJvW8-CimxHqU,1166
|
|
460
|
+
tests/regscale/core/test_logz.py,sha256=ymbhlOHaV8PZm0-cHluMuEelw662kj6dX0oN1Ki1A2Q,2278
|
|
461
|
+
tests/regscale/core/test_sbom_generator.py,sha256=lgzo1HRbkNIIDZIeKiM2JbbIYQsak0BpU0GlvbrcexM,2935
|
|
462
|
+
tests/regscale/core/test_validation_utils.py,sha256=5GHQfSVEr3f1HzEatI5CyCgGriyc-OPyKbc1YQ9zRjI,5464
|
|
463
|
+
tests/regscale/core/test_version.py,sha256=kQ6-moby9P62Kb9CbSiBLwhK10rgsMjSV85dnhkPPeI,2565
|
|
464
|
+
tests/regscale/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
465
|
+
tests/regscale/models/test_asset.py,sha256=eFt-GvH5rkAT04LxtdfnR88LoqSPT6a-1fScMchp8lE,2435
|
|
466
|
+
tests/regscale/models/test_config.py,sha256=r2mIJJDpmnLYZjw8Nw7yTzwZCsHbmfZD4rHSupfeOec,797
|
|
467
|
+
tests/regscale/models/test_control_implementation.py,sha256=r3J5B5TnsVJfnKnQq6KlYiJnt7F1kwRr5FzZh58YcFE,1060
|
|
468
|
+
tests/regscale/models/test_import.py,sha256=wG6KThJOXJe4wlFZpv4J0Lnpe4IBmU7VE13Sl4FT7xw,3949
|
|
469
|
+
tests/regscale/models/test_issue.py,sha256=7yEMAA7h08pvgoRWJtlzRaQN4JPB6CwU4zCThm5LunI,1038
|
|
470
|
+
tests/regscale/models/test_mapping.py,sha256=LE3cHETIeQ61lfYzIN2M9zlnECVb0alVe3DSCDvfwFU,1269
|
|
471
|
+
tests/regscale/models/test_platform.py,sha256=9KW9frA7S_hNc8thC5D4sK63DTzFLZ3XE47wvcDxW-M,978
|
|
472
|
+
tests/regscale/models/test_regscale_model.py,sha256=ZsrEZkC4EtdIsoQuayn1xv2gEGcVzzozDITKJd7vYIc,12182
|
|
473
|
+
tests/regscale/models/test_report.py,sha256=eiSvS_zS0aVeL0HBvtmHVvEzcfF9ZFVn2twj5g8KttY,970
|
|
474
|
+
tests/regscale/models/test_tenable_integrations.py,sha256=PNJC2Zu6lv1xj7y6e1yOsz5FktSU3PRKb5x3n5YG3w0,4072
|
|
475
|
+
tests/regscale/models/test_user_model.py,sha256=e9olv28qBApgnvK6hFHOgXjUC-pkaV8aGDirEIWASL4,4427
|
|
476
|
+
regscale_cli-6.16.0.0.dist-info/LICENSE,sha256=ytNhYQ9Rmhj_m-EX2pPq9Ld6tH5wrqqDYg-fCf46WDU,1076
|
|
477
|
+
regscale_cli-6.16.0.0.dist-info/METADATA,sha256=wA9m-sBk1Z9mnp24-zc36AvSCxUD-wrSmeWYbPxtpns,30910
|
|
478
|
+
regscale_cli-6.16.0.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
479
|
+
regscale_cli-6.16.0.0.dist-info/entry_points.txt,sha256=cLOaIP1eRv1yZ2u7BvpE3aB4x3kDrDwkpeisKOu33z8,269
|
|
480
|
+
regscale_cli-6.16.0.0.dist-info/top_level.txt,sha256=Uv8VUCAdxRm70bgrD4YNEJUmDhBThad_1aaEFGwRByc,15
|
|
481
|
+
regscale_cli-6.16.0.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
[console_scripts]
|
|
2
|
+
regscale = regscale.regscale:cli
|
|
3
|
+
regscale-airflow-azure = regscale.airflow.azure.cli:cli
|
|
4
|
+
regscale-airflow-upload-dags = regscale.airflow.azure.upload_dags:main
|
|
5
|
+
regscale-dev = regscale.dev.cli:cli
|
|
6
|
+
regscale-rest = regscale.core.server.flask_api:run_app
|
tests/fixtures/api.py
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import random
|
|
2
|
+
from typing import Optional
|
|
3
|
+
from unittest.mock import patch, MagicMock
|
|
4
|
+
|
|
5
|
+
import pytest
|
|
6
|
+
|
|
7
|
+
from regscale.models.regscale_models.regscale_model import RegScaleModel
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
@pytest.fixture
|
|
11
|
+
def mock_api_handler():
|
|
12
|
+
"""
|
|
13
|
+
Fixture to mock the API handler for testing.
|
|
14
|
+
|
|
15
|
+
:yield: A mocked API handler
|
|
16
|
+
"""
|
|
17
|
+
with patch(
|
|
18
|
+
"regscale.models.regscale_models.regscale_model.RegScaleModel._api_handler",
|
|
19
|
+
spec=RegScaleModel._api_handler, # noqa
|
|
20
|
+
) as mock:
|
|
21
|
+
|
|
22
|
+
def mock_post(endpoint: str, data: dict) -> MagicMock:
|
|
23
|
+
"""
|
|
24
|
+
Mock the post method of the API handler.
|
|
25
|
+
|
|
26
|
+
:param str endpoint:
|
|
27
|
+
:param dict data:
|
|
28
|
+
:rtype: MagicMock
|
|
29
|
+
:return: A mocked response object
|
|
30
|
+
"""
|
|
31
|
+
mock_response = MagicMock()
|
|
32
|
+
mock_response.ok = True
|
|
33
|
+
response_data = data.copy()
|
|
34
|
+
response_data["id"] = random.randint(1, 1000)
|
|
35
|
+
mock_response.json.return_value = response_data
|
|
36
|
+
return mock_response
|
|
37
|
+
|
|
38
|
+
def mock_put(endpoint: str, data: dict) -> MagicMock:
|
|
39
|
+
"""
|
|
40
|
+
Mock the put method of the API handler.
|
|
41
|
+
|
|
42
|
+
:param str endpoint:
|
|
43
|
+
:param dict data:
|
|
44
|
+
:rtype: MagicMock
|
|
45
|
+
:return: A mocked response object
|
|
46
|
+
"""
|
|
47
|
+
|
|
48
|
+
mock_response = MagicMock()
|
|
49
|
+
mock_response.ok = True
|
|
50
|
+
response_data = data.copy()
|
|
51
|
+
mock_response.json.return_value = response_data
|
|
52
|
+
return mock_response
|
|
53
|
+
|
|
54
|
+
def mock_graph(query: str, variables: Optional[dict] = None) -> MagicMock:
|
|
55
|
+
"""
|
|
56
|
+
Mock the graph method of the API handler.
|
|
57
|
+
|
|
58
|
+
:param str query:
|
|
59
|
+
:param Optional[dict] variables:
|
|
60
|
+
:rtype: MagicMock
|
|
61
|
+
:return: A mocked response object
|
|
62
|
+
"""
|
|
63
|
+
# Extract the model name from the query
|
|
64
|
+
model_name = query.split("{", 1)[1].split("(", 1)[0].strip()
|
|
65
|
+
|
|
66
|
+
# Create a mock response object
|
|
67
|
+
mock_response = MagicMock()
|
|
68
|
+
mock_response.ok = True
|
|
69
|
+
|
|
70
|
+
# Set up the response data structure
|
|
71
|
+
setattr(
|
|
72
|
+
mock_response,
|
|
73
|
+
model_name,
|
|
74
|
+
{
|
|
75
|
+
"items": [],
|
|
76
|
+
"pageInfo": {"hasNextPage": False},
|
|
77
|
+
"totalCount": 0,
|
|
78
|
+
},
|
|
79
|
+
)
|
|
80
|
+
|
|
81
|
+
return mock_response
|
|
82
|
+
|
|
83
|
+
mock.post.side_effect = mock_post
|
|
84
|
+
mock.put.side_effect = mock_put
|
|
85
|
+
mock.graph.side_effect = mock_graph
|
|
86
|
+
mock.regscale_version = "5.66.0"
|
|
87
|
+
yield mock
|