contrast-agent 4.13.0 → 5.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.simplecov +2 -1
- data/Gemfile +1 -1
- data/LICENSE.txt +1 -1
- data/Rakefile +1 -1
- data/exe/contrast_service +1 -1
- data/ext/build_funchook.rb +1 -1
- data/ext/cs__assess_array/cs__assess_array.c +1 -1
- data/ext/cs__assess_array/extconf.rb +1 -1
- data/ext/cs__assess_basic_object/cs__assess_basic_object.c +1 -1
- data/ext/cs__assess_basic_object/extconf.rb +1 -1
- data/ext/cs__assess_fiber_track/cs__assess_fiber_track.c +1 -1
- data/ext/cs__assess_fiber_track/extconf.rb +1 -1
- data/ext/cs__assess_hash/cs__assess_hash.c +1 -1
- data/ext/cs__assess_hash/extconf.rb +1 -1
- data/ext/cs__assess_kernel/cs__assess_kernel.c +1 -1
- data/ext/cs__assess_kernel/extconf.rb +1 -1
- data/ext/cs__assess_marshal_module/cs__assess_marshal_module.c +1 -1
- data/ext/cs__assess_marshal_module/extconf.rb +1 -1
- data/ext/cs__assess_module/cs__assess_module.c +1 -1
- data/ext/cs__assess_module/extconf.rb +1 -1
- data/ext/cs__assess_regexp/cs__assess_regexp.c +1 -1
- data/ext/cs__assess_regexp/extconf.rb +1 -1
- data/ext/cs__assess_string/cs__assess_string.c +1 -1
- data/ext/cs__assess_string/extconf.rb +1 -1
- data/ext/cs__assess_string_interpolation26/cs__assess_string_interpolation26.c +1 -1
- data/ext/cs__assess_string_interpolation26/extconf.rb +1 -1
- data/ext/cs__assess_yield_track/cs__assess_yield_track.c +1 -1
- data/ext/cs__assess_yield_track/extconf.rb +1 -1
- data/ext/cs__common/cs__common.c +1 -1
- data/ext/cs__common/extconf.rb +1 -1
- data/ext/cs__contrast_patch/cs__contrast_patch.c +1 -1
- data/ext/cs__contrast_patch/extconf.rb +1 -1
- data/ext/cs__os_information/cs__os_information.c +1 -1
- data/ext/cs__os_information/extconf.rb +1 -1
- data/ext/extconf_common.rb +1 -1
- data/lib/contrast/agent/assess/contrast_event.rb +7 -11
- data/lib/contrast/agent/assess/contrast_object.rb +1 -1
- data/lib/contrast/agent/assess/events/event_data.rb +30 -0
- data/lib/contrast/agent/assess/events/event_factory.rb +14 -6
- data/lib/contrast/agent/assess/events/source_event.rb +22 -3
- data/lib/contrast/agent/assess/finalizers/freeze.rb +1 -1
- data/lib/contrast/agent/assess/finalizers/hash.rb +1 -1
- data/lib/contrast/agent/assess/policy/dynamic_source_factory.rb +7 -7
- data/lib/contrast/agent/assess/policy/patcher.rb +1 -35
- data/lib/contrast/agent/assess/policy/policy.rb +1 -1
- data/lib/contrast/agent/assess/policy/policy_node.rb +7 -7
- data/lib/contrast/agent/assess/policy/policy_scanner.rb +6 -1
- data/lib/contrast/agent/assess/policy/preshift.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagation_method.rb +55 -28
- data/lib/contrast/agent/assess/policy/propagation_node.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/append.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/base.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/center.rb +2 -2
- data/lib/contrast/agent/assess/policy/propagator/custom.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/database_write.rb +6 -2
- data/lib/contrast/agent/assess/policy/propagator/insert.rb +5 -2
- data/lib/contrast/agent/assess/policy/propagator/keep.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/match_data.rb +7 -3
- data/lib/contrast/agent/assess/policy/propagator/next.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/prepend.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/rack_protection.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/remove.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/replace.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/reverse.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/select.rb +3 -2
- data/lib/contrast/agent/assess/policy/propagator/splat.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/split.rb +27 -25
- data/lib/contrast/agent/assess/policy/propagator/substitution.rb +3 -157
- data/lib/contrast/agent/assess/policy/propagator/substitution_utils.rb +190 -0
- data/lib/contrast/agent/assess/policy/propagator/trim.rb +9 -4
- data/lib/contrast/agent/assess/policy/propagator.rb +1 -1
- data/lib/contrast/agent/assess/policy/source_method.rb +39 -26
- data/lib/contrast/agent/assess/policy/source_node.rb +1 -1
- data/lib/contrast/agent/assess/policy/source_validation/cross_site_validator.rb +1 -1
- data/lib/contrast/agent/assess/policy/source_validation/source_validation.rb +1 -1
- data/lib/contrast/agent/assess/policy/trigger/reflected_xss.rb +7 -2
- data/lib/contrast/agent/assess/policy/trigger/xpath.rb +1 -1
- data/lib/contrast/agent/assess/policy/trigger_method.rb +68 -18
- data/lib/contrast/agent/assess/policy/trigger_node.rb +15 -7
- data/lib/contrast/agent/assess/policy/trigger_validation/redos_validator.rb +1 -1
- data/lib/contrast/agent/assess/policy/trigger_validation/ssrf_validator.rb +1 -1
- data/lib/contrast/agent/assess/policy/trigger_validation/trigger_validation.rb +1 -1
- data/lib/contrast/agent/assess/policy/trigger_validation/xss_validator.rb +2 -2
- data/lib/contrast/agent/assess/properties.rb +1 -1
- data/lib/contrast/agent/assess/property/evented.rb +25 -12
- data/lib/contrast/agent/assess/property/tagged.rb +52 -58
- data/lib/contrast/agent/assess/property/updated.rb +1 -1
- data/lib/contrast/agent/assess/rule/provider/hardcoded_key.rb +1 -19
- data/lib/contrast/agent/assess/rule/provider/hardcoded_password.rb +1 -13
- data/lib/contrast/agent/assess/rule/provider/hardcoded_value_rule.rb +42 -60
- data/lib/contrast/agent/assess/rule/provider.rb +1 -1
- data/lib/contrast/agent/assess/rule/response/autocomplete_rule.rb +130 -0
- data/lib/contrast/agent/assess/rule/response/base_rule.rb +117 -0
- data/lib/contrast/agent/assess/tag.rb +1 -1
- data/lib/contrast/agent/assess/tracker.rb +1 -1
- data/lib/contrast/agent/assess.rb +1 -2
- data/lib/contrast/agent/at_exit_hook.rb +1 -1
- data/lib/contrast/agent/deadzone/policy/deadzone_node.rb +13 -8
- data/lib/contrast/agent/deadzone/policy/policy.rb +1 -1
- data/lib/contrast/agent/disable_reaction.rb +1 -1
- data/lib/contrast/agent/exclusion_matcher.rb +1 -1
- data/lib/contrast/agent/inventory/database_config.rb +115 -77
- data/lib/contrast/agent/inventory/dependencies.rb +1 -1
- data/lib/contrast/agent/inventory/dependency_analysis.rb +1 -1
- data/lib/contrast/agent/inventory/dependency_usage_analysis.rb +3 -3
- data/lib/contrast/agent/inventory/policy/datastores.rb +1 -1
- data/lib/contrast/agent/inventory/policy/policy.rb +1 -1
- data/lib/contrast/agent/inventory/policy/trigger_node.rb +1 -1
- data/lib/contrast/agent/inventory.rb +1 -1
- data/lib/contrast/agent/metric_telemetry_event.rb +3 -3
- data/lib/contrast/agent/middleware.rb +8 -77
- data/lib/contrast/agent/module_data.rb +1 -1
- data/lib/contrast/agent/patching/policy/after_load_patch.rb +1 -1
- data/lib/contrast/agent/patching/policy/after_load_patcher.rb +1 -1
- data/lib/contrast/agent/patching/policy/method_policy.rb +31 -104
- data/lib/contrast/agent/patching/policy/method_policy_extend.rb +113 -0
- data/lib/contrast/agent/patching/policy/module_policy.rb +1 -1
- data/lib/contrast/agent/patching/policy/patch.rb +1 -1
- data/lib/contrast/agent/patching/policy/patch_status.rb +2 -26
- data/lib/contrast/agent/patching/policy/patcher.rb +13 -13
- data/lib/contrast/agent/patching/policy/policy.rb +1 -1
- data/lib/contrast/agent/patching/policy/policy_node.rb +1 -1
- data/lib/contrast/agent/patching/policy/trigger_node.rb +1 -1
- data/lib/contrast/agent/protect/policy/applies_command_injection_rule.rb +1 -1
- data/lib/contrast/agent/protect/policy/applies_deserialization_rule.rb +1 -1
- data/lib/contrast/agent/protect/policy/applies_no_sqli_rule.rb +1 -1
- data/lib/contrast/agent/protect/policy/applies_path_traversal_rule.rb +1 -1
- data/lib/contrast/agent/protect/policy/applies_sqli_rule.rb +1 -1
- data/lib/contrast/agent/protect/policy/applies_xxe_rule.rb +1 -1
- data/lib/contrast/agent/protect/policy/policy.rb +1 -1
- data/lib/contrast/agent/protect/policy/rule_applicator.rb +1 -1
- data/lib/contrast/agent/protect/policy/trigger_node.rb +1 -1
- data/lib/contrast/agent/protect/rule/base.rb +1 -1
- data/lib/contrast/agent/protect/rule/base_service.rb +1 -1
- data/lib/contrast/agent/protect/rule/cmd_injection.rb +1 -1
- data/lib/contrast/agent/protect/rule/default_scanner.rb +1 -1
- data/lib/contrast/agent/protect/rule/deserialization.rb +1 -1
- data/lib/contrast/agent/protect/rule/http_method_tampering.rb +1 -1
- data/lib/contrast/agent/protect/rule/no_sqli/mongo_no_sql_scanner.rb +1 -1
- data/lib/contrast/agent/protect/rule/no_sqli.rb +1 -1
- data/lib/contrast/agent/protect/rule/path_traversal.rb +1 -1
- data/lib/contrast/agent/protect/rule/sql_sample_builder.rb +1 -1
- data/lib/contrast/agent/protect/rule/sqli/default_sql_scanner.rb +1 -1
- data/lib/contrast/agent/protect/rule/sqli/mysql_sql_scanner.rb +1 -1
- data/lib/contrast/agent/protect/rule/sqli/postgres_sql_scanner.rb +2 -2
- data/lib/contrast/agent/protect/rule/sqli/sqlite_sql_scanner.rb +1 -1
- data/lib/contrast/agent/protect/rule/sqli.rb +1 -1
- data/lib/contrast/agent/protect/rule/unsafe_file_upload.rb +1 -1
- data/lib/contrast/agent/protect/rule/xss.rb +1 -1
- data/lib/contrast/agent/protect/rule/xxe/entity_wrapper.rb +1 -1
- data/lib/contrast/agent/protect/rule/xxe.rb +1 -1
- data/lib/contrast/agent/protect/rule.rb +1 -1
- data/lib/contrast/agent/reaction_processor.rb +1 -1
- data/lib/contrast/agent/reporting/report.rb +27 -0
- data/lib/contrast/agent/reporting/reporter.rb +115 -0
- data/lib/contrast/agent/reporting/reporting_events/application_inventory.rb +49 -0
- data/lib/contrast/agent/reporting/reporting_events/application_update.rb +82 -0
- data/lib/contrast/agent/reporting/reporting_events/architecture_component.rb +80 -0
- data/lib/contrast/agent/reporting/reporting_events/discovered_route.rb +59 -0
- data/lib/contrast/agent/reporting/reporting_events/finding.rb +185 -0
- data/lib/contrast/agent/reporting/reporting_events/finding_event.rb +264 -0
- data/lib/contrast/agent/reporting/reporting_events/finding_event_source.rb +57 -0
- data/lib/contrast/agent/reporting/reporting_events/finding_object.rb +90 -0
- data/lib/contrast/agent/reporting/reporting_events/finding_request.rb +121 -0
- data/lib/contrast/agent/reporting/reporting_events/finding_signature.rb +105 -0
- data/lib/contrast/agent/reporting/reporting_events/finding_stack.rb +67 -0
- data/lib/contrast/agent/reporting/reporting_events/finding_taint_range.rb +58 -0
- data/lib/contrast/agent/reporting/reporting_events/library_discovery.rb +93 -0
- data/lib/contrast/agent/reporting/reporting_events/library_usage_observation.rb +50 -0
- data/lib/contrast/agent/reporting/reporting_events/observed_library_usage.rb +54 -0
- data/lib/contrast/agent/reporting/reporting_events/observed_route.rb +66 -0
- data/lib/contrast/agent/reporting/reporting_events/preflight.rb +39 -0
- data/lib/contrast/agent/reporting/reporting_events/preflight_message.rb +75 -0
- data/lib/contrast/agent/reporting/reporting_events/reporting_event.rb +47 -0
- data/lib/contrast/agent/reporting/reporting_events/route_coverage.rb +76 -0
- data/lib/contrast/agent/reporting/reporting_events/route_discovery.rb +66 -0
- data/lib/contrast/agent/reporting/reporting_events/route_discovery_observation.rb +65 -0
- data/lib/contrast/agent/reporting/reporting_events/server_activity.rb +52 -0
- data/lib/contrast/agent/reporting/reporting_events/trace_event_source.rb +30 -0
- data/lib/contrast/agent/reporting/reporting_utilities/audit.rb +137 -0
- data/lib/contrast/agent/reporting/reporting_utilities/dtm_message.rb +67 -0
- data/lib/contrast/agent/reporting/reporting_utilities/endpoints.rb +165 -0
- data/lib/contrast/agent/reporting/reporting_utilities/headers.rb +55 -0
- data/lib/contrast/agent/reporting/reporting_utilities/reporter_client.rb +86 -0
- data/lib/contrast/agent/reporting/reporting_utilities/reporter_client_utils.rb +154 -0
- data/lib/contrast/agent/reporting/reporting_utilities/reporting_storage.rb +66 -0
- data/lib/contrast/agent/reporting/reporting_utilities/response.rb +30 -0
- data/lib/contrast/agent/reporting/reporting_utilities/response_handler.rb +57 -0
- data/lib/contrast/agent/reporting/reporting_utilities/response_handler_utils.rb +196 -0
- data/lib/contrast/agent/reporting/settings/application_settings.rb +67 -0
- data/lib/contrast/agent/reporting/settings/assess.rb +45 -0
- data/lib/contrast/agent/reporting/settings/assess_server_feature.rb +136 -0
- data/lib/contrast/agent/reporting/settings/exclusions.rb +123 -0
- data/lib/contrast/agent/reporting/settings/protect.rb +89 -0
- data/lib/contrast/agent/reporting/settings/protect_server_feature.rb +243 -0
- data/lib/contrast/agent/reporting/settings/reaction.rb +30 -0
- data/lib/contrast/agent/reporting/settings/server_features.rb +78 -0
- data/lib/contrast/agent/request.rb +46 -84
- data/lib/contrast/agent/request_context.rb +20 -131
- data/lib/contrast/agent/request_context_extend.rb +163 -0
- data/lib/contrast/agent/request_handler.rb +41 -5
- data/lib/contrast/agent/response.rb +25 -88
- data/lib/contrast/agent/rule_set.rb +1 -1
- data/lib/contrast/agent/scope.rb +1 -1
- data/lib/contrast/agent/service_heartbeat.rb +1 -1
- data/lib/contrast/agent/startup_metrics_telemetry_event.rb +73 -23
- data/lib/contrast/agent/static_analysis.rb +14 -4
- data/lib/contrast/agent/telemetry.rb +16 -8
- data/lib/contrast/agent/telemetry_event.rb +9 -10
- data/lib/contrast/agent/thread.rb +1 -1
- data/lib/contrast/agent/thread_watcher.rb +32 -6
- data/lib/contrast/agent/tracepoint_hook.rb +1 -4
- data/lib/contrast/agent/version.rb +2 -2
- data/lib/contrast/agent/worker_thread.rb +1 -1
- data/lib/contrast/agent.rb +16 -1
- data/lib/contrast/api/communication/connection_status.rb +11 -8
- data/lib/contrast/api/communication/messaging_queue.rb +38 -4
- data/lib/contrast/api/communication/response_processor.rb +22 -11
- data/lib/contrast/api/communication/service_lifecycle.rb +14 -4
- data/lib/contrast/api/communication/socket.rb +7 -9
- data/lib/contrast/api/communication/socket_client.rb +33 -13
- data/lib/contrast/api/communication/speedracer.rb +38 -2
- data/lib/contrast/api/communication/tcp_socket.rb +5 -4
- data/lib/contrast/api/communication/unix_socket.rb +2 -1
- data/lib/contrast/api/communication.rb +1 -1
- data/lib/contrast/api/decorators/address.rb +1 -1
- data/lib/contrast/api/decorators/agent_startup.rb +1 -1
- data/lib/contrast/api/decorators/application_settings.rb +1 -1
- data/lib/contrast/api/decorators/application_startup.rb +1 -1
- data/lib/contrast/api/decorators/application_update.rb +1 -1
- data/lib/contrast/api/decorators/architecture_component.rb +36 -0
- data/lib/contrast/api/decorators/finding.rb +29 -0
- data/lib/contrast/api/decorators/http_request.rb +3 -2
- data/lib/contrast/api/decorators/input_analysis.rb +1 -1
- data/lib/contrast/api/decorators/instrumentation_mode.rb +1 -1
- data/lib/contrast/api/decorators/library.rb +1 -1
- data/lib/contrast/api/decorators/library_usage_update.rb +1 -1
- data/lib/contrast/api/decorators/message.rb +1 -1
- data/lib/contrast/api/decorators/rasp_rule_sample.rb +1 -1
- data/lib/contrast/api/decorators/route_coverage.rb +1 -1
- data/lib/contrast/api/decorators/server_features.rb +1 -1
- data/lib/contrast/api/decorators/trace_event.rb +1 -1
- data/lib/contrast/api/decorators/trace_event_object.rb +1 -1
- data/lib/contrast/api/decorators/trace_event_signature.rb +1 -1
- data/lib/contrast/api/decorators/trace_taint_range.rb +1 -1
- data/lib/contrast/api/decorators/trace_taint_range_tags.rb +1 -1
- data/lib/contrast/api/decorators/user_input.rb +1 -1
- data/lib/contrast/api/decorators.rb +2 -1
- data/lib/contrast/api.rb +1 -1
- data/lib/contrast/components/agent.rb +5 -24
- data/lib/contrast/components/api.rb +67 -2
- data/lib/contrast/components/app_context.rb +12 -66
- data/lib/contrast/components/app_context_extend.rb +78 -0
- data/lib/contrast/components/assess.rb +12 -8
- data/lib/contrast/components/base.rb +24 -1
- data/lib/contrast/components/config.rb +38 -23
- data/lib/contrast/components/contrast_service.rb +6 -1
- data/lib/contrast/components/heap_dump.rb +1 -1
- data/lib/contrast/components/inventory.rb +5 -1
- data/lib/contrast/components/logger.rb +1 -1
- data/lib/contrast/components/protect.rb +6 -2
- data/lib/contrast/components/sampling.rb +3 -3
- data/lib/contrast/components/scope.rb +1 -1
- data/lib/contrast/components/settings.rb +25 -12
- data/lib/contrast/config/agent_configuration.rb +2 -2
- data/lib/contrast/config/api_configuration.rb +9 -4
- data/lib/contrast/config/api_proxy_configuration.rb +14 -0
- data/lib/contrast/config/application_configuration.rb +3 -4
- data/lib/contrast/config/assess_configuration.rb +4 -4
- data/lib/contrast/config/assess_rules_configuration.rb +1 -1
- data/lib/contrast/config/base_configuration.rb +18 -29
- data/lib/contrast/config/certification_configuration.rb +15 -0
- data/lib/contrast/config/env_variables.rb +3 -10
- data/lib/contrast/config/exception_configuration.rb +1 -1
- data/lib/contrast/config/heap_dump_configuration.rb +7 -7
- data/lib/contrast/config/inventory_configuration.rb +2 -6
- data/lib/contrast/config/logger_configuration.rb +1 -1
- data/lib/contrast/config/protect_configuration.rb +1 -1
- data/lib/contrast/config/protect_rule_configuration.rb +2 -2
- data/lib/contrast/config/protect_rules_configuration.rb +1 -1
- data/lib/contrast/config/request_audit_configuration.rb +18 -0
- data/lib/contrast/config/root_configuration.rb +1 -1
- data/lib/contrast/config/ruby_configuration.rb +10 -7
- data/lib/contrast/config/sampling_configuration.rb +1 -1
- data/lib/contrast/config/server_configuration.rb +1 -1
- data/lib/contrast/config/service_configuration.rb +2 -3
- data/lib/contrast/config.rb +1 -2
- data/lib/contrast/configuration.rb +2 -3
- data/lib/contrast/extension/assess/array.rb +9 -9
- data/lib/contrast/extension/assess/erb.rb +15 -5
- data/lib/contrast/extension/assess/eval_trigger.rb +3 -1
- data/lib/contrast/extension/assess/exec_trigger.rb +2 -1
- data/lib/contrast/extension/assess/fiber.rb +6 -3
- data/lib/contrast/extension/assess/hash.rb +1 -1
- data/lib/contrast/extension/assess/kernel.rb +8 -3
- data/lib/contrast/extension/assess/marshal.rb +6 -2
- data/lib/contrast/extension/assess/regexp.rb +8 -2
- data/lib/contrast/extension/assess/string.rb +8 -2
- data/lib/contrast/extension/assess.rb +1 -1
- data/lib/contrast/extension/delegator.rb +1 -1
- data/lib/contrast/extension/extension.rb +2 -4
- data/lib/contrast/extension/inventory.rb +1 -1
- data/lib/contrast/extension/kernel.rb +1 -1
- data/lib/contrast/extension/module.rb +1 -1
- data/lib/contrast/extension/protect/psych.rb +1 -1
- data/lib/contrast/extension/protect.rb +1 -1
- data/lib/contrast/extension/thread.rb +32 -13
- data/lib/contrast/framework/base_support.rb +5 -1
- data/lib/contrast/framework/grape/support.rb +25 -1
- data/lib/contrast/framework/manager.rb +33 -36
- data/lib/contrast/framework/manager_extend.rb +50 -0
- data/lib/contrast/framework/platform_version.rb +1 -1
- data/lib/contrast/framework/rack/patch/session_cookie.rb +1 -1
- data/lib/contrast/framework/rack/patch/support.rb +1 -1
- data/lib/contrast/framework/rack/support.rb +1 -1
- data/lib/contrast/framework/rails/patch/action_controller_live_buffer.rb +1 -1
- data/lib/contrast/framework/rails/patch/assess_configuration.rb +1 -1
- data/lib/contrast/framework/rails/patch/rails_application_configuration.rb +1 -1
- data/lib/contrast/framework/rails/patch/support.rb +1 -1
- data/lib/contrast/framework/rails/railtie.rb +2 -2
- data/lib/contrast/framework/rails/support.rb +46 -2
- data/lib/contrast/framework/sinatra/support.rb +26 -3
- data/lib/contrast/funchook/funchook.rb +21 -18
- data/lib/contrast/logger/application.rb +1 -1
- data/lib/contrast/logger/format.rb +1 -1
- data/lib/contrast/logger/log.rb +9 -104
- data/lib/contrast/logger/request.rb +1 -1
- data/lib/contrast/logger/time.rb +1 -1
- data/lib/contrast/security_exception.rb +1 -1
- data/lib/contrast/tasks/config.rb +1 -1
- data/lib/contrast/tasks/service.rb +1 -1
- data/lib/contrast/utils/assess/propagation_method_utils.rb +1 -1
- data/lib/contrast/utils/assess/property/tagged_utils.rb +24 -1
- data/lib/contrast/utils/assess/sampling_util.rb +4 -4
- data/lib/contrast/utils/assess/source_method_utils.rb +1 -1
- data/lib/contrast/utils/assess/split_utils.rb +23 -0
- data/lib/contrast/utils/assess/tracking_util.rb +21 -16
- data/lib/contrast/utils/assess/trigger_method_utils.rb +4 -3
- data/lib/contrast/utils/class_util.rb +19 -15
- data/lib/contrast/utils/duck_utils.rb +1 -1
- data/lib/contrast/utils/env_configuration_item.rb +2 -2
- data/lib/contrast/utils/exclude_key.rb +1 -1
- data/lib/contrast/utils/findings.rb +65 -0
- data/lib/contrast/utils/hash_digest.rb +46 -79
- data/lib/contrast/utils/hash_digest_extend.rb +129 -0
- data/lib/contrast/utils/head_dump_utils_extend.rb +74 -0
- data/lib/contrast/utils/heap_dump_util.rb +3 -66
- data/lib/contrast/utils/invalid_configuration_util.rb +32 -2
- data/lib/contrast/utils/io_util.rb +2 -2
- data/lib/contrast/utils/job_servers_running.rb +1 -1
- data/lib/contrast/utils/log_utils.rb +108 -0
- data/lib/contrast/utils/lru_cache.rb +1 -1
- data/lib/contrast/utils/metrics_hash.rb +2 -2
- data/lib/contrast/utils/middleware_utils.rb +87 -0
- data/lib/contrast/utils/net_http_base.rb +165 -0
- data/lib/contrast/utils/object_share.rb +2 -6
- data/lib/contrast/utils/os.rb +9 -5
- data/lib/contrast/utils/patching/policy/patch_utils.rb +63 -99
- data/lib/contrast/utils/patching/policy/patcher_utils.rb +1 -1
- data/lib/contrast/utils/preflight_util.rb +1 -1
- data/lib/contrast/utils/request_utils.rb +96 -0
- data/lib/contrast/utils/resource_loader.rb +1 -1
- data/lib/contrast/utils/response_utils.rb +97 -0
- data/lib/contrast/utils/sha256_builder.rb +1 -1
- data/lib/contrast/utils/stack_trace_utils.rb +1 -1
- data/lib/contrast/utils/string_utils.rb +69 -67
- data/lib/contrast/utils/tag_util.rb +11 -10
- data/lib/contrast/utils/telemetry.rb +11 -10
- data/lib/contrast/utils/telemetry_client.rb +90 -0
- data/lib/contrast/utils/telemetry_identifier.rb +18 -25
- data/lib/contrast/utils/thread_tracker.rb +1 -1
- data/lib/contrast/utils/timer.rb +1 -1
- data/lib/contrast-agent.rb +1 -1
- data/lib/contrast.rb +1 -1
- data/ruby-agent.gemspec +9 -10
- metadata +102 -49
- data/ext/cs__assess_active_record_named/cs__active_record_named.c +0 -46
- data/ext/cs__assess_active_record_named/cs__active_record_named.h +0 -11
- data/ext/cs__assess_active_record_named/extconf.rb +0 -5
- data/lib/contrast/agent/assess/policy/rewriter_patch.rb +0 -95
- data/lib/contrast/agent/class_reopener.rb +0 -258
- data/lib/contrast/agent/rewriter.rb +0 -259
- data/lib/contrast/config/default_value.rb +0 -17
- data/lib/contrast/framework/rails/rewrite/action_controller_railties_helper_inherited.rb +0 -37
- data/lib/contrast/framework/rails/rewrite/active_record_attribute_methods_read.rb +0 -41
- data/lib/contrast/framework/rails/rewrite/active_record_named.rb +0 -75
- data/lib/contrast/framework/rails/rewrite/active_record_time_zone_inherited.rb +0 -35
- data/lib/contrast/utils/requests_client.rb +0 -150
- data/lib/contrast/utils/ruby_ast_rewriter.rb +0 -82
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'ipaddr'
|
@@ -14,6 +14,7 @@ require 'contrast/utils/telemetry'
|
|
14
14
|
require 'contrast/agent/request_handler'
|
15
15
|
require 'contrast/agent/static_analysis'
|
16
16
|
require 'contrast/agent/startup_metrics_telemetry_event'
|
17
|
+
require 'contrast/utils/middleware_utils'
|
17
18
|
|
18
19
|
require 'contrast/utils/timer'
|
19
20
|
|
@@ -25,6 +26,7 @@ module Contrast
|
|
25
26
|
class Middleware
|
26
27
|
include Contrast::Components::Logger::InstanceMethods
|
27
28
|
include Contrast::Components::Scope::InstanceMethods
|
29
|
+
include Contrast::Utils::MiddlewareUtils
|
28
30
|
|
29
31
|
attr_reader :app
|
30
32
|
|
@@ -66,22 +68,6 @@ module Contrast
|
|
66
68
|
|
67
69
|
private
|
68
70
|
|
69
|
-
def setup_agent
|
70
|
-
::Contrast::SETTINGS.reset_state
|
71
|
-
|
72
|
-
inform_deprecations
|
73
|
-
telemetry_disclaimer
|
74
|
-
|
75
|
-
if ::Contrast::CONFIG.invalid?
|
76
|
-
::Contrast::AGENT.disable!
|
77
|
-
logger.error('!!! CONFIG FILE IS INVALID - DISABLING CONTRAST AGENT !!!')
|
78
|
-
elsif ::Contrast::AGENT.disabled?
|
79
|
-
logger.warn('Contrast disabled by configuration. Continuing without instrumentation.')
|
80
|
-
else
|
81
|
-
::Contrast::AGENT.enable!
|
82
|
-
end
|
83
|
-
end
|
84
|
-
|
85
71
|
# Startup the Agent as part of the initialization process:
|
86
72
|
# - start the service sending thread, responsible for sending and processing messages
|
87
73
|
# - start the heartbeat thread, which triggers service startup
|
@@ -175,12 +161,16 @@ module Contrast
|
|
175
161
|
with_contrast_scope do
|
176
162
|
context.extract_after(response) # update context with final response information
|
177
163
|
|
164
|
+
# Build and report all collected findings prior response
|
165
|
+
Contrast::Agent::FINDINGS.report_collected_findings unless Contrast::Agent::FINDINGS.collection.empty?
|
166
|
+
|
178
167
|
if Contrast::Agent.framework_manager.streaming?(env)
|
179
168
|
context.reset_activity
|
180
169
|
request_handler.stream_safe_postfilter
|
181
170
|
else
|
182
171
|
request_handler.ruleset.postfilter
|
183
|
-
request_handler.
|
172
|
+
request_handler.report_activity
|
173
|
+
request_handler.send_activity_messages # TODO: RUBY-1438 -- remove
|
184
174
|
end
|
185
175
|
end
|
186
176
|
rescue StandardError => e
|
@@ -188,65 +178,6 @@ module Contrast
|
|
188
178
|
|
189
179
|
logger.error('Unable to execute agent post_call', e)
|
190
180
|
end
|
191
|
-
|
192
|
-
def application_code env
|
193
|
-
logger.trace_with_time('application') do
|
194
|
-
app.call(env)
|
195
|
-
end
|
196
|
-
rescue Contrast::SecurityException => e
|
197
|
-
logger.trace('Security Exception raised during application lifecycle to prevent an attack', e)
|
198
|
-
raise e
|
199
|
-
end
|
200
|
-
|
201
|
-
SECURITY_EXCEPTION_MARKER = 'Contrast::SecurityException'
|
202
|
-
# We're only going to suppress SecurityExceptions indicating a blocked attack. And, only if the
|
203
|
-
# config.agent.ruby.exceptions.capture? is set
|
204
|
-
def handle_exception exception
|
205
|
-
if security_exception?(exception)
|
206
|
-
exception_control = ::Contrast::AGENT.exception_control
|
207
|
-
raise exception unless exception_control[:enable]
|
208
|
-
|
209
|
-
[exception_control[:status], {}, [exception_control[:message]]]
|
210
|
-
else
|
211
|
-
logger.debug('Re-throwing original error', exception)
|
212
|
-
raise exception
|
213
|
-
end
|
214
|
-
end
|
215
|
-
|
216
|
-
# Is the given exception one raised by our Protect code?
|
217
|
-
#
|
218
|
-
# @param exception [Exception]
|
219
|
-
# @return [Boolean]
|
220
|
-
def security_exception? exception
|
221
|
-
exception.is_a?(Contrast::SecurityException) || exception.message&.include?(SECURITY_EXCEPTION_MARKER)
|
222
|
-
end
|
223
|
-
|
224
|
-
# As we deprecate support to prepare to remove dead code, we need to inform our users still relying on the now
|
225
|
-
# deprecated and soon to be removed functionality. This method handles doing that by leveraging the standard
|
226
|
-
# Kernel#warn approach
|
227
|
-
def inform_deprecations
|
228
|
-
# Ruby 2.5 is currently in security maintenance, meaning int is only receiving updates for security issues. It
|
229
|
-
# will move to eol on 31 March 2021. As such, we can remove support for it in Q3. We'll begin the deprecation
|
230
|
-
# warnings now so that customers have time to reach out if they'll be impacted.
|
231
|
-
# TODO: RUBY-715 remove this part of the method, leaving it empty if there are no other deprecations, when we
|
232
|
-
# drop 2.5 support.
|
233
|
-
return unless RUBY_VERSION < '2.6.0'
|
234
|
-
|
235
|
-
Kernel.warn('[Contrast Security] [DEPRECATION] Support for Ruby 2.5 will be removed in April 2021. '\
|
236
|
-
'Please contact Customer Support prior if you require continued support.')
|
237
|
-
end
|
238
|
-
|
239
|
-
# Displays Telemetry disclaimer if Telemetry is enabled.
|
240
|
-
# if .telemetry file doesn't exist we create one and then show the disclaimer.
|
241
|
-
# if the file already exists we do nothing.
|
242
|
-
def telemetry_disclaimer
|
243
|
-
return unless Contrast::Agent::Telemetry.enabled?
|
244
|
-
return unless Contrast::Utils::Telemetry.create_telemetry_file
|
245
|
-
|
246
|
-
logger.info Contrast::Utils::Telemetry.disclaimer
|
247
|
-
$stdout.print Contrast::Utils::Telemetry.disclaimer
|
248
|
-
true
|
249
|
-
end
|
250
181
|
end
|
251
182
|
end
|
252
183
|
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
module Contrast
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'contrast/components/scope'
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'contrast/agent/patching/policy/after_load_patch'
|
@@ -1,29 +1,45 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
+
require 'contrast/agent/patching/policy/method_policy_extend'
|
5
|
+
|
4
6
|
module Contrast
|
5
7
|
module Agent
|
6
8
|
module Patching
|
7
9
|
module Policy
|
8
10
|
# This class is used to map each method to the trigger node that applies to it
|
9
11
|
class MethodPolicy
|
12
|
+
extend Contrast::Agent::Patching::Policy::MethodPolicyExtend
|
10
13
|
attr_reader :deadzone_node, :inventory_node, :propagation_node, :protect_node, :trigger_node
|
11
14
|
attr_accessor :source_node, :method_name, :method_visibility, :instance_method
|
12
15
|
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
16
|
+
# Initialize new method policy with:
|
17
|
+
#
|
18
|
+
# @param method_policy [Hash]
|
19
|
+
# {
|
20
|
+
# source_node [ Contrast::Agent::Assesss::Policy::SourceNode ]
|
21
|
+
# propagation_node [ Contrast::Agent::Assesss::Policy::PropagationNode ]
|
22
|
+
# trigger_node [ Contrast::Agent::Assesss::Policy::TriggerNode ]
|
23
|
+
# inventory_node [ Contrast::Agent::Inventory::Policy::TriggerNode ]
|
24
|
+
# protect_node [ Contrast::Agent::Protect::Policy::TriggerNode ]
|
25
|
+
# deadzone_node [ Contrast::Agent::Deadzone::Policy::DeadzoneNode ]
|
26
|
+
# method_name [ Symbol ]
|
27
|
+
# the name of the method for this policy
|
28
|
+
# method_visibility [ Symbol ]
|
29
|
+
# Public, Private Protected
|
30
|
+
# instance_method [ Boolean ]
|
31
|
+
# true if this method is an instance method
|
32
|
+
# }
|
33
|
+
def initialize method_policy
|
34
|
+
@method_name = method_policy[:method_name]
|
35
|
+
@method_visibility = method_policy[:method_visibility]
|
36
|
+
@instance_method = method_policy[:instance_method]
|
37
|
+
@source_node = method_policy[:source_node]
|
38
|
+
@propagation_node = method_policy[:propagation_node]
|
39
|
+
@trigger_node = method_policy[:trigger_node]
|
40
|
+
@inventory_node = method_policy[:inventory_node]
|
41
|
+
@protect_node = method_policy[:protect_node]
|
42
|
+
@deadzone_node = method_policy[:deadzone_node]
|
27
43
|
end
|
28
44
|
|
29
45
|
def private_method?
|
@@ -60,95 +76,6 @@ module Contrast
|
|
60
76
|
# defined by #nodes.
|
61
77
|
@_method_scopes ||= nodes.flat_map(&:method_scope).tap(&:compact!).tap(&:uniq!)
|
62
78
|
end
|
63
|
-
|
64
|
-
class << self
|
65
|
-
# Given a Contrast::Agent::Patching::Policy::ModulePolicy, parse
|
66
|
-
# out its information for the given method in order to construct a
|
67
|
-
# Contrast::Agent::Patching::Policy::MethodPolicy
|
68
|
-
#
|
69
|
-
# @param method_name [Symbol] the name of the method for this policy
|
70
|
-
# @param module_policy [Contrast::Agent::Patching::Policy::ModulePolicy]
|
71
|
-
# the entire policy for this module
|
72
|
-
# @param instance_method [Boolean] true if this method is an
|
73
|
-
# instance method
|
74
|
-
# @return [Contrast::Agent::Patching::Policy::MethodPolicy]
|
75
|
-
def build_method_policy method_name, module_policy, instance_method
|
76
|
-
source_node = find_method_node(module_policy.source_nodes, method_name, instance_method)
|
77
|
-
propagation_node = find_method_node(module_policy.propagator_nodes, method_name, instance_method)
|
78
|
-
trigger_node = find_method_node(module_policy.trigger_nodes, method_name, instance_method)
|
79
|
-
protect_node = find_method_node(module_policy.protect_nodes, method_name, instance_method)
|
80
|
-
inventory_node = find_method_node(module_policy.inventory_nodes, method_name, instance_method)
|
81
|
-
deadzone_node = find_method_node(module_policy.deadzone_nodes, method_name, instance_method)
|
82
|
-
method_visibility = find_visibility(source_node, propagation_node, trigger_node, protect_node,
|
83
|
-
inventory_node, deadzone_node)
|
84
|
-
method_policy = MethodPolicy.new(method_name: method_name,
|
85
|
-
method_visibility: method_visibility,
|
86
|
-
instance_method: instance_method,
|
87
|
-
source_node: source_node,
|
88
|
-
propagation_node: propagation_node,
|
89
|
-
trigger_node: trigger_node,
|
90
|
-
protect_node: protect_node,
|
91
|
-
inventory_node: inventory_node,
|
92
|
-
deadzone_node: deadzone_node)
|
93
|
-
|
94
|
-
return method_policy unless check_method_policy_nodes_empty? source_node, propagation_node, trigger_node,
|
95
|
-
protect_node, inventory_node, deadzone_node
|
96
|
-
|
97
|
-
create_new_node(module_policy, method_policy) if module_policy.deadzone_nodes&.any?
|
98
|
-
method_policy
|
99
|
-
end
|
100
|
-
|
101
|
-
def find_method_node nodes, method_name, is_instance_method
|
102
|
-
return unless nodes
|
103
|
-
|
104
|
-
nodes.find do |node|
|
105
|
-
node.instance_method? == is_instance_method && node.method_name == method_name
|
106
|
-
end
|
107
|
-
end
|
108
|
-
|
109
|
-
def find_visibility *nodes
|
110
|
-
nodes.find { |node| node }&.method_visibility
|
111
|
-
end
|
112
|
-
|
113
|
-
def check_method_policy_nodes_empty?(source_node, propagation_node, trigger_node, protect_node,
|
114
|
-
inventory_node, deadzone_node)
|
115
|
-
return false unless source_node.nil? && propagation_node.nil? && trigger_node.nil? && protect_node.nil? &&
|
116
|
-
inventory_node.nil? && deadzone_node.nil?
|
117
|
-
|
118
|
-
true
|
119
|
-
end
|
120
|
-
|
121
|
-
private
|
122
|
-
|
123
|
-
def create_new_node module_policy, method_policy
|
124
|
-
return if module_policy.deadzone_nodes.empty?
|
125
|
-
|
126
|
-
module_policy.deadzone_nodes.map do |node|
|
127
|
-
next unless node.method_name.nil?
|
128
|
-
|
129
|
-
klass = Module.cs__const_get(node.class_name)
|
130
|
-
next unless it_defined? klass, method_policy.method_name
|
131
|
-
|
132
|
-
new_node = {}
|
133
|
-
new_node['instance_method'] = method_policy.instance_method
|
134
|
-
new_node['method_visibility'] =
|
135
|
-
klass.private_method_defined?(method_policy.method_name) ? 'private' : 'public'
|
136
|
-
new_node['method_name'] = method_policy.method_name
|
137
|
-
new_node['class_name'] = node.class_name
|
138
|
-
new_node = Contrast::Agent::Deadzone::Policy::DeadzoneNode.new(new_node)
|
139
|
-
method_policy.instance_variable_set(:@method_visibility, new_node.method_visibility)
|
140
|
-
method_policy.instance_variable_set(:@deadzone_node, new_node)
|
141
|
-
module_policy.deadzone_nodes << new_node
|
142
|
-
break unless method_policy.deadzone_node.nil?
|
143
|
-
end
|
144
|
-
end
|
145
|
-
|
146
|
-
def it_defined? klass, method_name
|
147
|
-
klass.instance_methods(false).include?(method_name) ||
|
148
|
-
klass.private_instance_methods(false).include?(method_name) ||
|
149
|
-
klass.singleton_methods(false).include?(method_name)
|
150
|
-
end
|
151
|
-
end
|
152
79
|
end
|
153
80
|
end
|
154
81
|
end
|
@@ -0,0 +1,113 @@
|
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
module Contrast
|
5
|
+
module Agent
|
6
|
+
module Patching
|
7
|
+
module Policy
|
8
|
+
# This class is used to map each method to the trigger node that applies to it
|
9
|
+
module MethodPolicyExtend
|
10
|
+
# Given a Contrast::Agent::Patching::Policy::ModulePolicy, parse
|
11
|
+
# out its information for the given method in order to construct a
|
12
|
+
# Contrast::Agent::Patching::Policy::MethodPolicy
|
13
|
+
#
|
14
|
+
# @param method_name [Symbol] the name of the method for this policy
|
15
|
+
# @param module_policy [Contrast::Agent::Patching::Policy::ModulePolicy]
|
16
|
+
# the entire policy for this module
|
17
|
+
# @param instance_method [Boolean] true if this method is an
|
18
|
+
# instance method
|
19
|
+
# @return [Contrast::Agent::Patching::Policy::MethodPolicy]
|
20
|
+
def build_method_policy method_name, module_policy, instance_method
|
21
|
+
source_node = find_method_node(module_policy.source_nodes, method_name, instance_method)
|
22
|
+
propagation_node = find_method_node(module_policy.propagator_nodes, method_name, instance_method)
|
23
|
+
trigger_node = find_method_node(module_policy.trigger_nodes, method_name, instance_method)
|
24
|
+
protect_node = find_method_node(module_policy.protect_nodes, method_name, instance_method)
|
25
|
+
inventory_node = find_method_node(module_policy.inventory_nodes, method_name, instance_method)
|
26
|
+
deadzone_node = find_method_node(module_policy.deadzone_nodes, method_name, instance_method)
|
27
|
+
method_visibility = find_visibility(source_node, propagation_node, trigger_node, protect_node,
|
28
|
+
inventory_node, deadzone_node)
|
29
|
+
method_policy = MethodPolicy.new({
|
30
|
+
method_name: method_name,
|
31
|
+
method_visibility: method_visibility,
|
32
|
+
instance_method: instance_method,
|
33
|
+
source_node: source_node,
|
34
|
+
propagation_node: propagation_node,
|
35
|
+
trigger_node: trigger_node,
|
36
|
+
protect_node: protect_node,
|
37
|
+
inventory_node: inventory_node,
|
38
|
+
deadzone_node: deadzone_node
|
39
|
+
})
|
40
|
+
|
41
|
+
return method_policy unless check_method_policy_nodes_empty? source_node, propagation_node, trigger_node,
|
42
|
+
protect_node, inventory_node, deadzone_node
|
43
|
+
|
44
|
+
create_new_node(module_policy, method_policy) if module_policy.deadzone_nodes&.any?
|
45
|
+
method_policy
|
46
|
+
end
|
47
|
+
|
48
|
+
def find_method_node nodes, method_name, is_instance_method
|
49
|
+
return unless nodes
|
50
|
+
|
51
|
+
nodes.find do |node|
|
52
|
+
node.instance_method? == is_instance_method && node.method_name == method_name
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
def find_visibility *nodes
|
57
|
+
nodes.find { |node| node }&.method_visibility
|
58
|
+
end
|
59
|
+
|
60
|
+
def check_method_policy_nodes_empty?(source_node, propagation_node, trigger_node, protect_node,
|
61
|
+
inventory_node, deadzone_node)
|
62
|
+
return false unless source_node.nil? && propagation_node.nil? && trigger_node.nil? && protect_node.nil? &&
|
63
|
+
inventory_node.nil? && deadzone_node.nil?
|
64
|
+
|
65
|
+
true
|
66
|
+
end
|
67
|
+
|
68
|
+
private
|
69
|
+
|
70
|
+
def create_new_node module_policy, method_policy
|
71
|
+
return if module_policy.deadzone_nodes.empty?
|
72
|
+
|
73
|
+
module_policy.deadzone_nodes.map do |node|
|
74
|
+
next unless node.method_name.nil?
|
75
|
+
|
76
|
+
klass = Module.cs__const_get(node.class_name)
|
77
|
+
next unless it_defined? klass, method_policy.method_name
|
78
|
+
|
79
|
+
new_node = set_new_node method_policy, klass, node
|
80
|
+
method_policy.instance_variable_set(:@method_visibility, new_node.method_visibility)
|
81
|
+
method_policy.instance_variable_set(:@deadzone_node, node)
|
82
|
+
module_policy.deadzone_nodes << new_node
|
83
|
+
break unless method_policy.deadzone_node.nil?
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
# Helper method for creating new node
|
88
|
+
#
|
89
|
+
# @param method_policy [Contrast::Agent::Patching::Policy::MethodPolicy]
|
90
|
+
# used to map each method to the trigger node that applies to it
|
91
|
+
# @param klass [String] classname
|
92
|
+
# @param node [Contrast::Agent::Patching::Policy::PolicyNode]
|
93
|
+
# @return @_set_new_node [Contrast::Agent::Deadzone::Policy::DeadzoneNode]
|
94
|
+
def set_new_node method_policy, klass, node
|
95
|
+
new_node = {}
|
96
|
+
new_node['instance_method'] = method_policy.instance_method
|
97
|
+
new_node['method_visibility'] =
|
98
|
+
klass.private_method_defined?(method_policy.method_name) ? 'private' : 'public'
|
99
|
+
new_node['method_name'] = method_policy.method_name
|
100
|
+
new_node['class_name'] = node.class_name
|
101
|
+
@_set_new_node = Contrast::Agent::Deadzone::Policy::DeadzoneNode.new(new_node)
|
102
|
+
end
|
103
|
+
|
104
|
+
def it_defined? klass, method_name
|
105
|
+
klass.instance_methods(false).include?(method_name) ||
|
106
|
+
klass.private_instance_methods(false).include?(method_name) ||
|
107
|
+
klass.singleton_methods(false).include?(method_name)
|
108
|
+
end
|
109
|
+
end
|
110
|
+
end
|
111
|
+
end
|
112
|
+
end
|
113
|
+
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'contrast/agent/patching/policy/method_policy'
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'monitor'
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
module Contrast
|
@@ -125,7 +125,7 @@ module Contrast
|
|
125
125
|
MOD_ARRAY = [Module].cs__freeze
|
126
126
|
end
|
127
127
|
|
128
|
-
attr_reader :patch_status
|
128
|
+
attr_reader :patch_status
|
129
129
|
|
130
130
|
def patching!
|
131
131
|
@patch_status = :PATCHING
|
@@ -154,30 +154,6 @@ module Contrast
|
|
154
154
|
def patched?
|
155
155
|
@patch_status == :PATCHED || @patch_status == :NONE || @patch_status == :FAILED
|
156
156
|
end
|
157
|
-
|
158
|
-
def rewriting!
|
159
|
-
@rewrite_status = :REWRITING
|
160
|
-
end
|
161
|
-
|
162
|
-
def no_rewrite!
|
163
|
-
@rewrite_status = :NO_REWRITE
|
164
|
-
end
|
165
|
-
|
166
|
-
def rewritten!
|
167
|
-
@rewrite_status = :REWRITTEN
|
168
|
-
end
|
169
|
-
|
170
|
-
def failed_rewrite!
|
171
|
-
@rewrite_status = :FAILED_REWRITE
|
172
|
-
end
|
173
|
-
|
174
|
-
def rewriting?
|
175
|
-
@rewrite_status == :REWRITING
|
176
|
-
end
|
177
|
-
|
178
|
-
def rewritten?
|
179
|
-
@rewrite_status == :REWRITTEN || @rewrite_status == :NO_REWRITE || @rewrite_status == :FAILED_REWRITE
|
180
|
-
end
|
181
157
|
end
|
182
158
|
end
|
183
159
|
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'monitor'
|
@@ -15,8 +15,6 @@ require 'contrast/utils/patching/policy/patcher_utils'
|
|
15
15
|
# assess
|
16
16
|
require 'contrast/agent/assess/policy/policy'
|
17
17
|
require 'contrast/agent/assess/policy/policy_scanner'
|
18
|
-
# TODO: RUBY-714 remove guard w/ EOL of 2.5
|
19
|
-
require 'contrast/agent/assess/policy/rewriter_patch' if RUBY_VERSION < '2.6.0'
|
20
18
|
require 'contrast/agent/assess/policy/source_method'
|
21
19
|
require 'contrast/agent/assess/policy/trigger_method'
|
22
20
|
|
@@ -56,8 +54,6 @@ module Contrast
|
|
56
54
|
def patch
|
57
55
|
catchup_after_load_patches
|
58
56
|
catchup_loaded_methods
|
59
|
-
# TODO: RUBY-714 remove guard w/ EOL of 2.5
|
60
|
-
Contrast::Agent::Assess::Policy::RewriterPatch.rewrite_interpolations if RUBY_VERSION < '2.6.0'
|
61
57
|
end
|
62
58
|
|
63
59
|
# Hook to only monkeypatch Contrast. This will not trigger any
|
@@ -151,6 +147,18 @@ module Contrast
|
|
151
147
|
return
|
152
148
|
end
|
153
149
|
|
150
|
+
patch_methods status, module_data, module_policy
|
151
|
+
rescue StandardError => e
|
152
|
+
status&.failed_patch!
|
153
|
+
logger.warn('Patching failed', e, module: module_data.mod_name)
|
154
|
+
ensure
|
155
|
+
logger.trace('Patching complete',
|
156
|
+
module: module_data.mod_name,
|
157
|
+
result:
|
158
|
+
Contrast::Agent::Patching::Policy::PatchStatus.get_status(module_data.mod).patch_status)
|
159
|
+
end
|
160
|
+
|
161
|
+
def patch_methods status, module_data, module_policy
|
154
162
|
status.patching!
|
155
163
|
num_applied_patches = patch_into_instance_methods(module_data, module_policy)
|
156
164
|
num_applied_patches += patch_into_singleton_methods(module_data, module_policy)
|
@@ -160,14 +168,6 @@ module Contrast
|
|
160
168
|
else
|
161
169
|
status.partial_patch!
|
162
170
|
end
|
163
|
-
rescue StandardError => e
|
164
|
-
status&.failed_patch!
|
165
|
-
logger.warn('Patching failed', e, module: module_data.mod_name)
|
166
|
-
ensure
|
167
|
-
logger.trace('Patching complete',
|
168
|
-
module: module_data.mod_name,
|
169
|
-
result:
|
170
|
-
Contrast::Agent::Patching::Policy::PatchStatus.get_status(module_data.mod).patch_status)
|
171
171
|
end
|
172
172
|
|
173
173
|
# Get all of the instance methods on the given module, excluding
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'json'
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'contrast/components/scope'
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'contrast/extension/module'
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'contrast/agent/protect/rule/cmd_injection'
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'contrast/agent/protect/rule/deserialization'
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'contrast/agent/protect/rule/no_sqli'
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'contrast/agent/protect/rule/path_traversal'
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'contrast/agent/protect/rule/sqli'
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'contrast/agent/protect/rule/xxe'
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'contrast/agent/patching/policy/policy'
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'contrast/components/logger'
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'contrast/agent/patching/policy/trigger_node'
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'contrast/components/logger'
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'contrast/agent/protect/rule/base'
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'contrast/agent/protect/rule/base_service'
|