cycode 3.15.2.dev2__tar.gz → 3.15.3__tar.gz
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.
- cycode-3.15.2.dev2/README.md → cycode-3.15.3/PKG-INFO +77 -0
- cycode-3.15.2.dev2/PKG-INFO → cycode-3.15.3/README.md +35 -42
- cycode-3.15.3/cycode/__init__.py +1 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/sca/maven/restore_maven_dependencies.py +21 -2
- {cycode-3.15.2.dev2 → cycode-3.15.3}/pyproject.toml +4 -4
- cycode-3.15.2.dev2/cycode/__init__.py +0 -1
- {cycode-3.15.2.dev2 → cycode-3.15.3}/LICENCE +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/__main__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/app.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/activation_manager.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/ai_guardrails/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/ai_guardrails/command_utils.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/ai_guardrails/consts.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/ai_guardrails/hooks_manager.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/ai_guardrails/install_command.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/ai_guardrails/scan/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/ai_guardrails/scan/claude_config.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/ai_guardrails/scan/consts.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/ai_guardrails/scan/cursor_config.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/ai_guardrails/scan/handlers.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/ai_guardrails/scan/payload.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/ai_guardrails/scan/policy.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/ai_guardrails/scan/response_builders.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/ai_guardrails/scan/scan_command.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/ai_guardrails/scan/types.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/ai_guardrails/scan/utils.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/ai_guardrails/session_start_command.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/ai_guardrails/status_command.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/ai_guardrails/uninstall_command.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/ai_remediation/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/ai_remediation/ai_remediation_command.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/ai_remediation/apply_fix.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/ai_remediation/print_remediation.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/api/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/api/api_command.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/api/openapi_spec.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/auth/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/auth/auth_command.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/auth/auth_common.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/auth/auth_manager.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/auth/models.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/configure/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/configure/configure_command.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/configure/consts.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/configure/messages.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/configure/prompts.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/ignore/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/ignore/ignore_command.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/mcp/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/mcp/mcp_command.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/report/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/report/report_command.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/report/sbom/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/report/sbom/common.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/report/sbom/path/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/report/sbom/path/path_command.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/report/sbom/repository_url/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/report/sbom/repository_url/repository_url_command.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/report/sbom/sbom_command.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/report/sbom/sbom_report_file.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/report_import/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/report_import/report_import_command.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/report_import/sbom/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/report_import/sbom/sbom_command.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/sca_options.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/scan/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/scan/aggregation_report.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/scan/code_scanner.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/scan/commit_history/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/scan/commit_history/commit_history_command.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/scan/commit_range_scanner.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/scan/detection_excluder.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/scan/path/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/scan/path/path_command.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/scan/pre_commit/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/scan/pre_commit/pre_commit_command.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/scan/pre_push/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/scan/pre_push/pre_push_command.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/scan/pre_receive/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/scan/pre_receive/pre_receive_command.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/scan/remote_url_resolver.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/scan/repository/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/scan/repository/repository_command.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/scan/scan_ci/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/scan/scan_ci/ci_integrations.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/scan/scan_ci/scan_ci_command.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/scan/scan_command.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/scan/scan_parameters.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/scan/scan_result.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/status/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/status/get_cli_status.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/status/models.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/status/status_command.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/status/version_command.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/cli_types.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/config.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/console.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/consts.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/exceptions/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/exceptions/custom_exceptions.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/exceptions/handle_ai_remediation_errors.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/exceptions/handle_auth_errors.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/exceptions/handle_errors.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/exceptions/handle_report_sbom_errors.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/exceptions/handle_scan_errors.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/commit_range_documents.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/documents_walk_ignore.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/file_excluder.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/iac/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/iac/tf_content_generator.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/models/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/models/in_memory_zip.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/path_documents.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/repository_documents.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/sca/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/sca/base_restore_dependencies.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/sca/go/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/sca/go/restore_go_dependencies.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/sca/maven/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/sca/maven/restore_gradle_dependencies.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/sca/npm/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/sca/npm/restore_deno_dependencies.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/sca/npm/restore_npm_dependencies.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/sca/npm/restore_pnpm_dependencies.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/sca/npm/restore_yarn_dependencies.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/sca/nuget/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/sca/nuget/restore_nuget_dependencies.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/sca/php/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/sca/php/restore_composer_dependencies.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/sca/python/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/sca/python/restore_pipenv_dependencies.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/sca/python/restore_poetry_dependencies.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/sca/python/restore_uv_dependencies.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/sca/ruby/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/sca/ruby/restore_ruby_dependencies.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/sca/sbt/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/sca/sbt/restore_sbt_dependencies.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/sca/sca_file_collector.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/walk_ignore.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/zip_documents.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/logger.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/main.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/models.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/printers/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/printers/console_printer.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/printers/json_printer.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/printers/printer_base.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/printers/rich_printer.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/printers/tables/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/printers/tables/sca_table_printer.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/printers/tables/table.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/printers/tables/table_models.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/printers/tables/table_printer.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/printers/tables/table_printer_base.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/printers/text_printer.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/printers/utils/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/printers/utils/code_snippet_syntax.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/printers/utils/detection_data.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/printers/utils/detection_ordering/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/printers/utils/detection_ordering/common_ordering.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/printers/utils/detection_ordering/sca_ordering.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/printers/utils/rich_helpers.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/user_settings/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/user_settings/base_file_manager.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/user_settings/config_file_manager.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/user_settings/configuration_manager.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/user_settings/credentials_manager.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/user_settings/jwt_creator.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/utils/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/utils/binary_utils.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/utils/enum_utils.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/utils/get_api_client.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/utils/git_proxy.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/utils/ignore_utils.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/utils/jwt_utils.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/utils/path_utils.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/utils/progress_bar.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/utils/scan_batch.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/utils/scan_utils.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/utils/shell_executor.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/utils/string_utils.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/utils/task_timer.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/utils/url_utils.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/utils/version_checker.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/utils/yaml_utils.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/config.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cyclient/__init__.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cyclient/ai_security_manager_client.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cyclient/ai_security_manager_service_config.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cyclient/auth_client.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cyclient/base_token_auth_client.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cyclient/cli_activation_client.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cyclient/client_creator.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cyclient/config.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cyclient/config_dev.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cyclient/cycode_client.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cyclient/cycode_client_base.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cyclient/cycode_dev_based_client.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cyclient/cycode_oidc_based_client.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cyclient/cycode_token_based_client.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cyclient/headers.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cyclient/import_sbom_client.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cyclient/logger.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cyclient/models.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cyclient/report_client.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cyclient/scan_client.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cyclient/scan_config_base.py +0 -0
- {cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/logger.py +0 -0
|
@@ -1,3 +1,44 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: cycode
|
|
3
|
+
Version: 3.15.3
|
|
4
|
+
Summary: Boost security in your dev lifecycle via SAST, SCA, Secrets & IaC scanning.
|
|
5
|
+
License-Expression: MIT
|
|
6
|
+
License-File: LICENCE
|
|
7
|
+
Keywords: secret-scan,cycode,devops,token,secret,security,code
|
|
8
|
+
Author: Cycode
|
|
9
|
+
Author-email: support@cycode.com
|
|
10
|
+
Requires-Python: >=3.9
|
|
11
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
12
|
+
Classifier: Environment :: Console
|
|
13
|
+
Classifier: Natural Language :: English
|
|
14
|
+
Classifier: Operating System :: OS Independent
|
|
15
|
+
Classifier: Programming Language :: Python
|
|
16
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
23
|
+
Requires-Dist: arrow (>=1.0.0,<1.5.0)
|
|
24
|
+
Requires-Dist: click (>=8.1.0,<8.2.0)
|
|
25
|
+
Requires-Dist: colorama (>=0.4.3,<0.5.0)
|
|
26
|
+
Requires-Dist: gitpython (>=3.1.50,<3.2.0)
|
|
27
|
+
Requires-Dist: marshmallow (>=3.15.0,<4.0.0)
|
|
28
|
+
Requires-Dist: mcp (>=1.9.3,<2.0.0) ; python_version >= "3.10"
|
|
29
|
+
Requires-Dist: patch-ng (==1.19.1)
|
|
30
|
+
Requires-Dist: pathvalidate (>=3.3.1,<4.0.0)
|
|
31
|
+
Requires-Dist: pydantic (>=2.11.5,<3.0.0)
|
|
32
|
+
Requires-Dist: pyjwt (>=2.8.0,<3.0)
|
|
33
|
+
Requires-Dist: pyyaml (>=6.0,<7.0)
|
|
34
|
+
Requires-Dist: requests (>=2.32.4,<3.0)
|
|
35
|
+
Requires-Dist: rich (>=13.9.4,<14)
|
|
36
|
+
Requires-Dist: tenacity (>=9.0.0,<9.1.0)
|
|
37
|
+
Requires-Dist: typer (>=0.15.3,<0.16.0)
|
|
38
|
+
Requires-Dist: urllib3 (>=2.4.0,<3.0.0)
|
|
39
|
+
Project-URL: Repository, https://github.com/cycodehq/cycode-cli
|
|
40
|
+
Description-Content-Type: text/markdown
|
|
41
|
+
|
|
1
42
|
# Cycode CLI User Guide
|
|
2
43
|
|
|
3
44
|
The Cycode Command Line Interface (CLI) is an application you can install locally to scan your repositories for secrets, infrastructure as code misconfigurations, software composition analysis vulnerabilities, and static application security testing issues.
|
|
@@ -21,6 +62,7 @@ This guide walks you through both installation and usage.
|
|
|
21
62
|
2. [Available Options](#available-options)
|
|
22
63
|
3. [MCP Tools](#mcp-tools)
|
|
23
64
|
4. [Usage Examples](#usage-examples)
|
|
65
|
+
5. [Advanced Configuration](#advanced-configuration)
|
|
24
66
|
5. [Platform Command](#platform-command-beta)
|
|
25
67
|
1. [Discovering Commands](#discovering-commands)
|
|
26
68
|
2. [Examples](#platform-examples)
|
|
@@ -559,6 +601,38 @@ cycode mcp -t streamable-http -H 127.0.0.2 -p 9000 &
|
|
|
559
601
|
}
|
|
560
602
|
```
|
|
561
603
|
|
|
604
|
+
### Advanced Configuration
|
|
605
|
+
##### Custom Certificates and Timeouts (Proxy Environments)
|
|
606
|
+
|
|
607
|
+
If your organization uses a corporate proxy or a custom CA bundle for HTTPS inspection, you need to tell Cycode CLI (and the underlying Python TLS stack) where to find the trusted certificate bundle. You can also increase the MCP tool call timeout if scans are being cut short.
|
|
608
|
+
|
|
609
|
+
| Environment Variable | Description |
|
|
610
|
+
|----------------------|-------------|
|
|
611
|
+
| `REQUESTS_CA_BUNDLE` | Path to a custom CA bundle file (`.pem` or `.crt`). Used by the `requests` library for all HTTPS calls made by Cycode CLI. |
|
|
612
|
+
| `SSL_CERT_FILE` | Path to a custom CA bundle file. Used by Python's low-level `ssl` module. Set this alongside `REQUESTS_CA_BUNDLE` for full coverage. |
|
|
613
|
+
| `MCP_TOOL_TIMEOUT` | Timeout (in seconds) that MCP clients such as Claude and GitHub Copilot wait for a tool call to complete. Increase this if long-running scans are being cut off before they finish. |
|
|
614
|
+
|
|
615
|
+
> [!TIP]
|
|
616
|
+
> Set both `REQUESTS_CA_BUNDLE` and `SSL_CERT_FILE` to the same CA bundle path. `REQUESTS_CA_BUNDLE` covers the HTTP layer; `SSL_CERT_FILE` covers the lower-level TLS layer. Using only one may still cause certificate errors in some environments.
|
|
617
|
+
|
|
618
|
+
Example `mcp.json` configuration with custom certificates and a longer timeout:
|
|
619
|
+
|
|
620
|
+
```json
|
|
621
|
+
{
|
|
622
|
+
"mcpServers": {
|
|
623
|
+
"cycode": {
|
|
624
|
+
"command": "cycode",
|
|
625
|
+
"args": ["mcp"],
|
|
626
|
+
"env": {
|
|
627
|
+
"REQUESTS_CA_BUNDLE": "/path/to/your/corporate-ca-bundle.pem",
|
|
628
|
+
"SSL_CERT_FILE": "/path/to/your/corporate-ca-bundle.pem",
|
|
629
|
+
"MCP_TOOL_TIMEOUT": "1800"
|
|
630
|
+
}
|
|
631
|
+
}
|
|
632
|
+
}
|
|
633
|
+
}
|
|
634
|
+
```
|
|
635
|
+
|
|
562
636
|
> [!NOTE]
|
|
563
637
|
> The MCP server requires proper Cycode CLI authentication to function. Make sure you have authenticated using `cycode auth` or configured your credentials before starting the MCP server.
|
|
564
638
|
|
|
@@ -608,6 +682,8 @@ This information can be helpful when:
|
|
|
608
682
|
- Identifying authentication problems
|
|
609
683
|
- Debugging transport-specific issues
|
|
610
684
|
|
|
685
|
+
### MCP Configuration
|
|
686
|
+
|
|
611
687
|
|
|
612
688
|
# Platform Command \[BETA\]
|
|
613
689
|
|
|
@@ -1502,3 +1578,4 @@ To see the options available for a report, use this command:
|
|
|
1502
1578
|
To see the options available for a specific type of report, enter:
|
|
1503
1579
|
|
|
1504
1580
|
`cycode scan {{option}} --help`
|
|
1581
|
+
|
|
@@ -1,44 +1,3 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: cycode
|
|
3
|
-
Version: 3.15.2.dev2
|
|
4
|
-
Summary: Boost security in your dev lifecycle via SAST, SCA, Secrets & IaC scanning.
|
|
5
|
-
License-Expression: MIT
|
|
6
|
-
License-File: LICENCE
|
|
7
|
-
Keywords: secret-scan,cycode,devops,token,secret,security,code
|
|
8
|
-
Author: Cycode
|
|
9
|
-
Author-email: support@cycode.com
|
|
10
|
-
Requires-Python: >=3.9
|
|
11
|
-
Classifier: Development Status :: 5 - Production/Stable
|
|
12
|
-
Classifier: Environment :: Console
|
|
13
|
-
Classifier: Natural Language :: English
|
|
14
|
-
Classifier: Operating System :: OS Independent
|
|
15
|
-
Classifier: Programming Language :: Python
|
|
16
|
-
Classifier: Programming Language :: Python :: 3 :: Only
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
-
Classifier: Programming Language :: Python :: 3.13
|
|
22
|
-
Classifier: Programming Language :: Python :: 3.14
|
|
23
|
-
Requires-Dist: arrow (>=1.0.0,<1.5.0)
|
|
24
|
-
Requires-Dist: click (>=8.1.0,<8.2.0)
|
|
25
|
-
Requires-Dist: colorama (>=0.4.3,<0.5.0)
|
|
26
|
-
Requires-Dist: gitpython (>=3.1.47,<3.2.0)
|
|
27
|
-
Requires-Dist: marshmallow (>=3.15.0,<4.0.0)
|
|
28
|
-
Requires-Dist: mcp (>=1.9.3,<2.0.0) ; python_version >= "3.10"
|
|
29
|
-
Requires-Dist: patch-ng (==1.19.0)
|
|
30
|
-
Requires-Dist: pathvalidate (>=3.3.1,<4.0.0)
|
|
31
|
-
Requires-Dist: pydantic (>=2.11.5,<3.0.0)
|
|
32
|
-
Requires-Dist: pyjwt (>=2.8.0,<3.0)
|
|
33
|
-
Requires-Dist: pyyaml (>=6.0,<7.0)
|
|
34
|
-
Requires-Dist: requests (>=2.32.4,<3.0)
|
|
35
|
-
Requires-Dist: rich (>=13.9.4,<14)
|
|
36
|
-
Requires-Dist: tenacity (>=9.0.0,<9.1.0)
|
|
37
|
-
Requires-Dist: typer (>=0.15.3,<0.16.0)
|
|
38
|
-
Requires-Dist: urllib3 (>=2.4.0,<3.0.0)
|
|
39
|
-
Project-URL: Repository, https://github.com/cycodehq/cycode-cli
|
|
40
|
-
Description-Content-Type: text/markdown
|
|
41
|
-
|
|
42
1
|
# Cycode CLI User Guide
|
|
43
2
|
|
|
44
3
|
The Cycode Command Line Interface (CLI) is an application you can install locally to scan your repositories for secrets, infrastructure as code misconfigurations, software composition analysis vulnerabilities, and static application security testing issues.
|
|
@@ -62,6 +21,7 @@ This guide walks you through both installation and usage.
|
|
|
62
21
|
2. [Available Options](#available-options)
|
|
63
22
|
3. [MCP Tools](#mcp-tools)
|
|
64
23
|
4. [Usage Examples](#usage-examples)
|
|
24
|
+
5. [Advanced Configuration](#advanced-configuration)
|
|
65
25
|
5. [Platform Command](#platform-command-beta)
|
|
66
26
|
1. [Discovering Commands](#discovering-commands)
|
|
67
27
|
2. [Examples](#platform-examples)
|
|
@@ -600,6 +560,38 @@ cycode mcp -t streamable-http -H 127.0.0.2 -p 9000 &
|
|
|
600
560
|
}
|
|
601
561
|
```
|
|
602
562
|
|
|
563
|
+
### Advanced Configuration
|
|
564
|
+
##### Custom Certificates and Timeouts (Proxy Environments)
|
|
565
|
+
|
|
566
|
+
If your organization uses a corporate proxy or a custom CA bundle for HTTPS inspection, you need to tell Cycode CLI (and the underlying Python TLS stack) where to find the trusted certificate bundle. You can also increase the MCP tool call timeout if scans are being cut short.
|
|
567
|
+
|
|
568
|
+
| Environment Variable | Description |
|
|
569
|
+
|----------------------|-------------|
|
|
570
|
+
| `REQUESTS_CA_BUNDLE` | Path to a custom CA bundle file (`.pem` or `.crt`). Used by the `requests` library for all HTTPS calls made by Cycode CLI. |
|
|
571
|
+
| `SSL_CERT_FILE` | Path to a custom CA bundle file. Used by Python's low-level `ssl` module. Set this alongside `REQUESTS_CA_BUNDLE` for full coverage. |
|
|
572
|
+
| `MCP_TOOL_TIMEOUT` | Timeout (in seconds) that MCP clients such as Claude and GitHub Copilot wait for a tool call to complete. Increase this if long-running scans are being cut off before they finish. |
|
|
573
|
+
|
|
574
|
+
> [!TIP]
|
|
575
|
+
> Set both `REQUESTS_CA_BUNDLE` and `SSL_CERT_FILE` to the same CA bundle path. `REQUESTS_CA_BUNDLE` covers the HTTP layer; `SSL_CERT_FILE` covers the lower-level TLS layer. Using only one may still cause certificate errors in some environments.
|
|
576
|
+
|
|
577
|
+
Example `mcp.json` configuration with custom certificates and a longer timeout:
|
|
578
|
+
|
|
579
|
+
```json
|
|
580
|
+
{
|
|
581
|
+
"mcpServers": {
|
|
582
|
+
"cycode": {
|
|
583
|
+
"command": "cycode",
|
|
584
|
+
"args": ["mcp"],
|
|
585
|
+
"env": {
|
|
586
|
+
"REQUESTS_CA_BUNDLE": "/path/to/your/corporate-ca-bundle.pem",
|
|
587
|
+
"SSL_CERT_FILE": "/path/to/your/corporate-ca-bundle.pem",
|
|
588
|
+
"MCP_TOOL_TIMEOUT": "1800"
|
|
589
|
+
}
|
|
590
|
+
}
|
|
591
|
+
}
|
|
592
|
+
}
|
|
593
|
+
```
|
|
594
|
+
|
|
603
595
|
> [!NOTE]
|
|
604
596
|
> The MCP server requires proper Cycode CLI authentication to function. Make sure you have authenticated using `cycode auth` or configured your credentials before starting the MCP server.
|
|
605
597
|
|
|
@@ -649,6 +641,8 @@ This information can be helpful when:
|
|
|
649
641
|
- Identifying authentication problems
|
|
650
642
|
- Debugging transport-specific issues
|
|
651
643
|
|
|
644
|
+
### MCP Configuration
|
|
645
|
+
|
|
652
646
|
|
|
653
647
|
# Platform Command \[BETA\]
|
|
654
648
|
|
|
@@ -1543,4 +1537,3 @@ To see the options available for a report, use this command:
|
|
|
1543
1537
|
To see the options available for a specific type of report, enter:
|
|
1544
1538
|
|
|
1545
1539
|
`cycode scan {{option}} --help`
|
|
1546
|
-
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '3.15.3' # DON'T TOUCH. Placeholder. Will be filled automatically on poetry build from Git Tag
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import json
|
|
1
2
|
from os import path
|
|
2
3
|
from pathlib import Path
|
|
3
4
|
from typing import Optional
|
|
@@ -20,6 +21,16 @@ MAVEN_CYCLONE_DEP_TREE_FILE_NAME = 'bom.json'
|
|
|
20
21
|
MAVEN_DEP_TREE_FILE_NAME = 'bcde.mvndeps'
|
|
21
22
|
|
|
22
23
|
|
|
24
|
+
def _has_dependency_graph(bom_content: Optional[str]) -> bool:
|
|
25
|
+
try:
|
|
26
|
+
if not bom_content:
|
|
27
|
+
return False
|
|
28
|
+
bom = json.loads(bom_content)
|
|
29
|
+
return any(dep.get('dependsOn') for dep in bom.get('dependencies', []))
|
|
30
|
+
except Exception:
|
|
31
|
+
return False
|
|
32
|
+
|
|
33
|
+
|
|
23
34
|
class RestoreMavenDependencies(BaseRestoreDependencies):
|
|
24
35
|
def __init__(self, ctx: typer.Context, is_git_diff: bool, command_timeout: int) -> None:
|
|
25
36
|
super().__init__(ctx, is_git_diff, command_timeout)
|
|
@@ -46,8 +57,16 @@ class RestoreMavenDependencies(BaseRestoreDependencies):
|
|
|
46
57
|
if document.content is None:
|
|
47
58
|
return self.restore_from_secondary_command(document, manifest_file_path)
|
|
48
59
|
|
|
49
|
-
|
|
50
|
-
|
|
60
|
+
restore_dependencies_document = super().try_restore_dependencies(document)
|
|
61
|
+
if restore_dependencies_document is None:
|
|
62
|
+
return None
|
|
63
|
+
|
|
64
|
+
if not _has_dependency_graph(restore_dependencies_document.content):
|
|
65
|
+
fallback = self.restore_from_secondary_command(document, manifest_file_path)
|
|
66
|
+
if fallback is not None and fallback.content is not None:
|
|
67
|
+
return fallback
|
|
68
|
+
|
|
69
|
+
return restore_dependencies_document
|
|
51
70
|
|
|
52
71
|
def restore_from_secondary_command(self, document: Document, manifest_file_path: str) -> Optional[Document]:
|
|
53
72
|
restore_content = execute_commands(
|
|
@@ -21,7 +21,7 @@ classifiers = [
|
|
|
21
21
|
"Programming Language :: Python :: 3.14",
|
|
22
22
|
]
|
|
23
23
|
dynamic = ["dependencies"]
|
|
24
|
-
version = "3.15.
|
|
24
|
+
version = "3.15.3"
|
|
25
25
|
|
|
26
26
|
[project.scripts]
|
|
27
27
|
cycode = "cycode.cli.app:app"
|
|
@@ -37,13 +37,13 @@ click = ">=8.1.0,<8.2.0"
|
|
|
37
37
|
colorama = ">=0.4.3,<0.5.0"
|
|
38
38
|
pyyaml = ">=6.0,<7.0"
|
|
39
39
|
marshmallow = ">=3.15.0,<4.0.0"
|
|
40
|
-
gitpython = ">=3.1.
|
|
40
|
+
gitpython = ">=3.1.50,<3.2.0"
|
|
41
41
|
arrow = ">=1.0.0,<1.5.0"
|
|
42
42
|
requests = ">=2.32.4,<3.0"
|
|
43
43
|
urllib3 = ">=2.4.0,<3.0.0"
|
|
44
44
|
pyjwt = ">=2.8.0,<3.0"
|
|
45
45
|
rich = ">=13.9.4, <14"
|
|
46
|
-
patch-ng = "1.19.
|
|
46
|
+
patch-ng = "1.19.1"
|
|
47
47
|
typer = "^0.15.3"
|
|
48
48
|
tenacity = ">=9.0.0,<9.1.0"
|
|
49
49
|
mcp = { version = ">=1.9.3,<2.0.0", markers = "python_version >= '3.10'" }
|
|
@@ -60,7 +60,7 @@ pyfakefs = ">=5.7.2,<5.11.0"
|
|
|
60
60
|
|
|
61
61
|
[tool.poetry.group.executable.dependencies]
|
|
62
62
|
pyinstaller = {version=">=6.0.0,<7.0.0", python=">=3.9,<3.15"}
|
|
63
|
-
dunamai = ">=1.
|
|
63
|
+
dunamai = ">=1.26.1,<1.27.0"
|
|
64
64
|
|
|
65
65
|
[tool.poetry.group.dev.dependencies]
|
|
66
66
|
ruff = "0.11.7"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '3.15.2.dev2' # DON'T TOUCH. Placeholder. Will be filled automatically on poetry build from Git Tag
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/ai_guardrails/scan/response_builders.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/ai_remediation/ai_remediation_command.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/scan/commit_history/commit_history_command.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/apps/scan/pre_receive/pre_receive_command.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/sca/base_restore_dependencies.py
RENAMED
|
File without changes
|
|
File without changes
|
{cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/sca/go/restore_go_dependencies.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/sca/npm/restore_deno_dependencies.py
RENAMED
|
File without changes
|
{cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/sca/npm/restore_npm_dependencies.py
RENAMED
|
File without changes
|
{cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/sca/npm/restore_pnpm_dependencies.py
RENAMED
|
File without changes
|
{cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/sca/npm/restore_yarn_dependencies.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/files_collector/sca/sbt/restore_sbt_dependencies.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/printers/utils/detection_ordering/__init__.py
RENAMED
|
File without changes
|
{cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/printers/utils/detection_ordering/common_ordering.py
RENAMED
|
File without changes
|
{cycode-3.15.2.dev2 → cycode-3.15.3}/cycode/cli/printers/utils/detection_ordering/sca_ordering.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|