contrast-agent 4.14.1 → 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 +1 -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 +2 -2
- data/lib/contrast/agent/assess/policy/policy_scanner.rb +1 -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 +1 -1
- 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 -5
- 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 +37 -24
- data/lib/contrast/agent/assess/policy/trigger_node.rb +1 -1
- 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 +1 -1
- 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 +1 -1
- 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 +7 -59
- 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 +1 -1
- data/lib/contrast/agent/middleware.rb +3 -2
- 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 +28 -15
- data/lib/contrast/agent/patching/policy/method_policy_extend.rb +12 -10
- 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 +1 -5
- 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 +7 -1
- data/lib/contrast/agent/reporting/reporter.rb +21 -48
- 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 +138 -43
- 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 +20 -6
- data/lib/contrast/agent/reporting/reporting_events/preflight_message.rb +36 -17
- data/lib/contrast/agent/reporting/reporting_events/reporting_event.rb +28 -18
- 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 +22 -12
- 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 +74 -156
- data/lib/contrast/agent/reporting/reporting_utilities/reporter_client_utils.rb +154 -0
- data/lib/contrast/agent/reporting/reporting_utilities/reporting_storage.rb +1 -1
- 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 +44 -3
- data/lib/contrast/agent/request_context.rb +20 -7
- data/lib/contrast/agent/request_context_extend.rb +26 -1
- data/lib/contrast/agent/request_handler.rb +41 -5
- data/lib/contrast/agent/response.rb +23 -15
- 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 +34 -7
- data/lib/contrast/agent/static_analysis.rb +13 -3
- data/lib/contrast/agent/telemetry.rb +1 -1
- data/lib/contrast/agent/telemetry_event.rb +1 -1
- data/lib/contrast/agent/thread.rb +1 -1
- data/lib/contrast/agent/thread_watcher.rb +3 -3
- 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 +4 -4
- data/lib/contrast/api/communication/connection_status.rb +1 -1
- data/lib/contrast/api/communication/messaging_queue.rb +4 -4
- data/lib/contrast/api/communication/response_processor.rb +9 -5
- data/lib/contrast/api/communication/service_lifecycle.rb +1 -1
- data/lib/contrast/api/communication/socket.rb +1 -1
- data/lib/contrast/api/communication/socket_client.rb +4 -1
- data/lib/contrast/api/communication/speedracer.rb +1 -1
- data/lib/contrast/api/communication/tcp_socket.rb +1 -1
- data/lib/contrast/api/communication/unix_socket.rb +1 -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 +1 -17
- 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 +18 -9
- data/lib/contrast/components/app_context.rb +2 -1
- data/lib/contrast/components/app_context_extend.rb +1 -1
- data/lib/contrast/components/assess.rb +12 -8
- data/lib/contrast/components/base.rb +1 -1
- data/lib/contrast/components/config.rb +30 -15
- data/lib/contrast/components/contrast_service.rb +1 -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 +1 -1
- data/lib/contrast/components/scope.rb +1 -1
- data/lib/contrast/components/settings.rb +25 -12
- data/lib/contrast/config/agent_configuration.rb +1 -1
- data/lib/contrast/config/api_configuration.rb +2 -2
- data/lib/contrast/config/api_proxy_configuration.rb +1 -1
- data/lib/contrast/config/application_configuration.rb +1 -1
- data/lib/contrast/config/assess_configuration.rb +1 -1
- data/lib/contrast/config/assess_rules_configuration.rb +1 -1
- data/lib/contrast/config/base_configuration.rb +1 -1
- data/lib/contrast/config/certification_configuration.rb +1 -1
- data/lib/contrast/config/env_variables.rb +1 -1
- data/lib/contrast/config/exception_configuration.rb +1 -1
- data/lib/contrast/config/heap_dump_configuration.rb +1 -1
- data/lib/contrast/config/inventory_configuration.rb +1 -1
- 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 +1 -1
- data/lib/contrast/config/protect_rules_configuration.rb +1 -1
- data/lib/contrast/config/request_audit_configuration.rb +1 -1
- data/lib/contrast/config/root_configuration.rb +1 -1
- data/lib/contrast/config/ruby_configuration.rb +4 -1
- 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 +1 -1
- data/lib/contrast/config.rb +1 -1
- data/lib/contrast/configuration.rb +1 -1
- data/lib/contrast/extension/assess/array.rb +4 -2
- 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 +1 -1
- data/lib/contrast/framework/base_support.rb +5 -1
- data/lib/contrast/framework/grape/support.rb +25 -1
- data/lib/contrast/framework/manager.rb +26 -5
- data/lib/contrast/framework/manager_extend.rb +1 -1
- 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 +1 -1
- data/lib/contrast/framework/rails/support.rb +46 -2
- data/lib/contrast/framework/sinatra/support.rb +24 -2
- 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 +1 -1
- 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 +1 -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 +1 -1
- data/lib/contrast/utils/assess/trigger_method_utils.rb +3 -2
- data/lib/contrast/utils/class_util.rb +1 -1
- 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 +5 -2
- data/lib/contrast/utils/hash_digest.rb +36 -6
- data/lib/contrast/utils/hash_digest_extend.rb +44 -1
- data/lib/contrast/utils/head_dump_utils_extend.rb +1 -1
- data/lib/contrast/utils/heap_dump_util.rb +1 -1
- data/lib/contrast/utils/invalid_configuration_util.rb +6 -5
- data/lib/contrast/utils/io_util.rb +1 -1
- data/lib/contrast/utils/job_servers_running.rb +1 -1
- data/lib/contrast/utils/log_utils.rb +1 -1
- 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 +1 -1
- data/lib/contrast/utils/net_http_base.rb +14 -7
- data/lib/contrast/utils/object_share.rb +1 -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 +9 -1
- data/lib/contrast/utils/resource_loader.rb +1 -1
- data/lib/contrast/utils/response_utils.rb +1 -1
- 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 +2 -1
- data/lib/contrast/utils/telemetry.rb +1 -1
- data/lib/contrast/utils/telemetry_client.rb +1 -1
- data/lib/contrast/utils/telemetry_identifier.rb +1 -1
- 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 +4 -5
- metadata +58 -30
- 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/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/ruby_ast_rewriter.rb +0 -82
- data/lib/contrast/utils/substitution_utils.rb +0 -167
@@ -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
|
@@ -136,6 +136,7 @@ module Contrast
|
|
136
136
|
def smallerize tags
|
137
137
|
smallered = []
|
138
138
|
curr = nil
|
139
|
+
tags.sort_by! { |tag| [tag.start_idx, tag.end_idx] }
|
139
140
|
tags.each do |tag|
|
140
141
|
if curr && tag.start_idx <= curr.end_idx
|
141
142
|
curr.update_end(tag.end_idx) if tag.end_idx > curr.end_idx
|
@@ -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/telemetry'
|
@@ -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 'net/http'
|
@@ -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/telemetry'
|
@@ -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
|
data/lib/contrast/utils/timer.rb
CHANGED
@@ -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
|
data/lib/contrast-agent.rb
CHANGED
@@ -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
|
# We need this to make bundler happy since it's the name of the gem, unless we
|
data/lib/contrast.rb
CHANGED
@@ -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
|
# Used to prevent deprecation warnings from flooding stdout
|
data/ruby-agent.gemspec
CHANGED
@@ -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_relative './lib/contrast/agent/version'
|
@@ -22,7 +22,7 @@ end
|
|
22
22
|
def self.add_dev_dependencies spec
|
23
23
|
add_builders(spec)
|
24
24
|
add_debuggers(spec)
|
25
|
-
add_linters(spec)
|
25
|
+
add_linters(spec)
|
26
26
|
add_specs(spec)
|
27
27
|
add_custom_dependencies(spec)
|
28
28
|
end
|
@@ -59,7 +59,7 @@ def self.add_linters spec
|
|
59
59
|
spec.add_development_dependency 'debride', '1.8.2'
|
60
60
|
spec.add_development_dependency 'fasterer', '0.9.0'
|
61
61
|
spec.add_development_dependency 'flay', '2.12.1'
|
62
|
-
|
62
|
+
spec.add_development_dependency 'steep', '0.44.1'
|
63
63
|
add_rubocop(spec)
|
64
64
|
end
|
65
65
|
|
@@ -113,7 +113,6 @@ end
|
|
113
113
|
# corresponding update to the fake gem server data in TeamServer.
|
114
114
|
def self.add_dependencies spec
|
115
115
|
spec.add_dependency 'ougai', '~> 1.8'
|
116
|
-
spec.add_dependency 'parser', '>= 2.6' # if RUBY_VERSION < '2.6.0' # TODO: RUBY-714 remove guard w/ EOL of 2.5
|
117
116
|
spec.add_dependency 'protobuf', '~> 3.10'
|
118
117
|
spec.add_dependency 'rack', '~> 2.0'
|
119
118
|
end
|
@@ -174,7 +173,7 @@ Gem::Specification.new do |spec|
|
|
174
173
|
'Testing and Protection.'
|
175
174
|
spec.homepage = 'https://www.contrastsecurity.com'
|
176
175
|
spec.license = 'CONTRAST SECURITY (see license file)'
|
177
|
-
spec.required_ruby_version = ['>= 2.
|
176
|
+
spec.required_ruby_version = ['>= 2.6.0', '< 3.1.0']
|
178
177
|
|
179
178
|
spec.bindir = 'exe'
|
180
179
|
spec.executables = ['contrast_service']
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: contrast-agent
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 5.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- galen.palmer@contrastsecurity.com
|
@@ -13,7 +13,7 @@ authors:
|
|
13
13
|
autorequire:
|
14
14
|
bindir: exe
|
15
15
|
cert_chain: []
|
16
|
-
date:
|
16
|
+
date: 2022-01-06 00:00:00.000000000 Z
|
17
17
|
dependencies:
|
18
18
|
- !ruby/object:Gem::Dependency
|
19
19
|
name: bundler
|
@@ -141,6 +141,20 @@ dependencies:
|
|
141
141
|
- - '='
|
142
142
|
- !ruby/object:Gem::Version
|
143
143
|
version: 2.12.1
|
144
|
+
- !ruby/object:Gem::Dependency
|
145
|
+
name: steep
|
146
|
+
requirement: !ruby/object:Gem::Requirement
|
147
|
+
requirements:
|
148
|
+
- - '='
|
149
|
+
- !ruby/object:Gem::Version
|
150
|
+
version: 0.44.1
|
151
|
+
type: :development
|
152
|
+
prerelease: false
|
153
|
+
version_requirements: !ruby/object:Gem::Requirement
|
154
|
+
requirements:
|
155
|
+
- - '='
|
156
|
+
- !ruby/object:Gem::Version
|
157
|
+
version: 0.44.1
|
144
158
|
- !ruby/object:Gem::Dependency
|
145
159
|
name: rubocop
|
146
160
|
requirement: !ruby/object:Gem::Requirement
|
@@ -567,20 +581,6 @@ dependencies:
|
|
567
581
|
- - "~>"
|
568
582
|
- !ruby/object:Gem::Version
|
569
583
|
version: '1.8'
|
570
|
-
- !ruby/object:Gem::Dependency
|
571
|
-
name: parser
|
572
|
-
requirement: !ruby/object:Gem::Requirement
|
573
|
-
requirements:
|
574
|
-
- - ">="
|
575
|
-
- !ruby/object:Gem::Version
|
576
|
-
version: '2.6'
|
577
|
-
type: :runtime
|
578
|
-
prerelease: false
|
579
|
-
version_requirements: !ruby/object:Gem::Requirement
|
580
|
-
requirements:
|
581
|
-
- - ">="
|
582
|
-
- !ruby/object:Gem::Version
|
583
|
-
version: '2.6'
|
584
584
|
- !ruby/object:Gem::Dependency
|
585
585
|
name: protobuf
|
586
586
|
requirement: !ruby/object:Gem::Requirement
|
@@ -622,7 +622,6 @@ extensions:
|
|
622
622
|
- ext/cs__assess_string/extconf.rb
|
623
623
|
- ext/cs__assess_regexp/extconf.rb
|
624
624
|
- ext/cs__assess_yield_track/extconf.rb
|
625
|
-
- ext/cs__assess_active_record_named/extconf.rb
|
626
625
|
- ext/cs__contrast_patch/extconf.rb
|
627
626
|
- ext/cs__assess_kernel/extconf.rb
|
628
627
|
- ext/cs__assess_hash/extconf.rb
|
@@ -646,9 +645,6 @@ files:
|
|
646
645
|
- Rakefile
|
647
646
|
- exe/contrast_service
|
648
647
|
- ext/build_funchook.rb
|
649
|
-
- ext/cs__assess_active_record_named/cs__active_record_named.c
|
650
|
-
- ext/cs__assess_active_record_named/cs__active_record_named.h
|
651
|
-
- ext/cs__assess_active_record_named/extconf.rb
|
652
648
|
- ext/cs__assess_array/cs__assess_array.c
|
653
649
|
- ext/cs__assess_array/cs__assess_array.h
|
654
650
|
- ext/cs__assess_array/extconf.rb
|
@@ -829,6 +825,7 @@ files:
|
|
829
825
|
- lib/contrast/agent/assess.rb
|
830
826
|
- lib/contrast/agent/assess/contrast_event.rb
|
831
827
|
- lib/contrast/agent/assess/contrast_object.rb
|
828
|
+
- lib/contrast/agent/assess/events/event_data.rb
|
832
829
|
- lib/contrast/agent/assess/events/event_factory.rb
|
833
830
|
- lib/contrast/agent/assess/events/source_event.rb
|
834
831
|
- lib/contrast/agent/assess/finalizers/freeze.rb
|
@@ -860,8 +857,8 @@ files:
|
|
860
857
|
- lib/contrast/agent/assess/policy/propagator/splat.rb
|
861
858
|
- lib/contrast/agent/assess/policy/propagator/split.rb
|
862
859
|
- lib/contrast/agent/assess/policy/propagator/substitution.rb
|
860
|
+
- lib/contrast/agent/assess/policy/propagator/substitution_utils.rb
|
863
861
|
- lib/contrast/agent/assess/policy/propagator/trim.rb
|
864
|
-
- lib/contrast/agent/assess/policy/rewriter_patch.rb
|
865
862
|
- lib/contrast/agent/assess/policy/source_method.rb
|
866
863
|
- lib/contrast/agent/assess/policy/source_node.rb
|
867
864
|
- lib/contrast/agent/assess/policy/source_validation/cross_site_validator.rb
|
@@ -882,10 +879,11 @@ files:
|
|
882
879
|
- lib/contrast/agent/assess/rule/provider/hardcoded_key.rb
|
883
880
|
- lib/contrast/agent/assess/rule/provider/hardcoded_password.rb
|
884
881
|
- lib/contrast/agent/assess/rule/provider/hardcoded_value_rule.rb
|
882
|
+
- lib/contrast/agent/assess/rule/response/autocomplete_rule.rb
|
883
|
+
- lib/contrast/agent/assess/rule/response/base_rule.rb
|
885
884
|
- lib/contrast/agent/assess/tag.rb
|
886
885
|
- lib/contrast/agent/assess/tracker.rb
|
887
886
|
- lib/contrast/agent/at_exit_hook.rb
|
888
|
-
- lib/contrast/agent/class_reopener.rb
|
889
887
|
- lib/contrast/agent/deadzone/policy/deadzone_node.rb
|
890
888
|
- lib/contrast/agent/deadzone/policy/policy.rb
|
891
889
|
- lib/contrast/agent/disable_reaction.rb
|
@@ -944,19 +942,53 @@ files:
|
|
944
942
|
- lib/contrast/agent/reaction_processor.rb
|
945
943
|
- lib/contrast/agent/reporting/report.rb
|
946
944
|
- lib/contrast/agent/reporting/reporter.rb
|
945
|
+
- lib/contrast/agent/reporting/reporting_events/application_inventory.rb
|
946
|
+
- lib/contrast/agent/reporting/reporting_events/application_update.rb
|
947
|
+
- lib/contrast/agent/reporting/reporting_events/architecture_component.rb
|
948
|
+
- lib/contrast/agent/reporting/reporting_events/discovered_route.rb
|
947
949
|
- lib/contrast/agent/reporting/reporting_events/finding.rb
|
950
|
+
- lib/contrast/agent/reporting/reporting_events/finding_event.rb
|
951
|
+
- lib/contrast/agent/reporting/reporting_events/finding_event_source.rb
|
952
|
+
- lib/contrast/agent/reporting/reporting_events/finding_object.rb
|
953
|
+
- lib/contrast/agent/reporting/reporting_events/finding_request.rb
|
954
|
+
- lib/contrast/agent/reporting/reporting_events/finding_signature.rb
|
955
|
+
- lib/contrast/agent/reporting/reporting_events/finding_stack.rb
|
956
|
+
- lib/contrast/agent/reporting/reporting_events/finding_taint_range.rb
|
957
|
+
- lib/contrast/agent/reporting/reporting_events/library_discovery.rb
|
958
|
+
- lib/contrast/agent/reporting/reporting_events/library_usage_observation.rb
|
959
|
+
- lib/contrast/agent/reporting/reporting_events/observed_library_usage.rb
|
960
|
+
- lib/contrast/agent/reporting/reporting_events/observed_route.rb
|
948
961
|
- lib/contrast/agent/reporting/reporting_events/preflight.rb
|
949
962
|
- lib/contrast/agent/reporting/reporting_events/preflight_message.rb
|
950
963
|
- lib/contrast/agent/reporting/reporting_events/reporting_event.rb
|
964
|
+
- lib/contrast/agent/reporting/reporting_events/route_coverage.rb
|
965
|
+
- lib/contrast/agent/reporting/reporting_events/route_discovery.rb
|
966
|
+
- lib/contrast/agent/reporting/reporting_events/route_discovery_observation.rb
|
967
|
+
- lib/contrast/agent/reporting/reporting_events/server_activity.rb
|
968
|
+
- lib/contrast/agent/reporting/reporting_events/trace_event_source.rb
|
951
969
|
- lib/contrast/agent/reporting/reporting_utilities/audit.rb
|
970
|
+
- lib/contrast/agent/reporting/reporting_utilities/dtm_message.rb
|
971
|
+
- lib/contrast/agent/reporting/reporting_utilities/endpoints.rb
|
972
|
+
- lib/contrast/agent/reporting/reporting_utilities/headers.rb
|
952
973
|
- lib/contrast/agent/reporting/reporting_utilities/reporter_client.rb
|
974
|
+
- lib/contrast/agent/reporting/reporting_utilities/reporter_client_utils.rb
|
953
975
|
- lib/contrast/agent/reporting/reporting_utilities/reporting_storage.rb
|
976
|
+
- lib/contrast/agent/reporting/reporting_utilities/response.rb
|
977
|
+
- lib/contrast/agent/reporting/reporting_utilities/response_handler.rb
|
978
|
+
- lib/contrast/agent/reporting/reporting_utilities/response_handler_utils.rb
|
979
|
+
- lib/contrast/agent/reporting/settings/application_settings.rb
|
980
|
+
- lib/contrast/agent/reporting/settings/assess.rb
|
981
|
+
- lib/contrast/agent/reporting/settings/assess_server_feature.rb
|
982
|
+
- lib/contrast/agent/reporting/settings/exclusions.rb
|
983
|
+
- lib/contrast/agent/reporting/settings/protect.rb
|
984
|
+
- lib/contrast/agent/reporting/settings/protect_server_feature.rb
|
985
|
+
- lib/contrast/agent/reporting/settings/reaction.rb
|
986
|
+
- lib/contrast/agent/reporting/settings/server_features.rb
|
954
987
|
- lib/contrast/agent/request.rb
|
955
988
|
- lib/contrast/agent/request_context.rb
|
956
989
|
- lib/contrast/agent/request_context_extend.rb
|
957
990
|
- lib/contrast/agent/request_handler.rb
|
958
991
|
- lib/contrast/agent/response.rb
|
959
|
-
- lib/contrast/agent/rewriter.rb
|
960
992
|
- lib/contrast/agent/rule_set.rb
|
961
993
|
- lib/contrast/agent/scope.rb
|
962
994
|
- lib/contrast/agent/service_heartbeat.rb
|
@@ -987,6 +1019,7 @@ files:
|
|
987
1019
|
- lib/contrast/api/decorators/application_settings.rb
|
988
1020
|
- lib/contrast/api/decorators/application_startup.rb
|
989
1021
|
- lib/contrast/api/decorators/application_update.rb
|
1022
|
+
- lib/contrast/api/decorators/architecture_component.rb
|
990
1023
|
- lib/contrast/api/decorators/finding.rb
|
991
1024
|
- lib/contrast/api/decorators/http_request.rb
|
992
1025
|
- lib/contrast/api/decorators/input_analysis.rb
|
@@ -1076,10 +1109,6 @@ files:
|
|
1076
1109
|
- lib/contrast/framework/rails/patch/rails_application_configuration.rb
|
1077
1110
|
- lib/contrast/framework/rails/patch/support.rb
|
1078
1111
|
- lib/contrast/framework/rails/railtie.rb
|
1079
|
-
- lib/contrast/framework/rails/rewrite/action_controller_railties_helper_inherited.rb
|
1080
|
-
- lib/contrast/framework/rails/rewrite/active_record_attribute_methods_read.rb
|
1081
|
-
- lib/contrast/framework/rails/rewrite/active_record_named.rb
|
1082
|
-
- lib/contrast/framework/rails/rewrite/active_record_time_zone_inherited.rb
|
1083
1112
|
- lib/contrast/framework/rails/support.rb
|
1084
1113
|
- lib/contrast/framework/sinatra/support.rb
|
1085
1114
|
- lib/contrast/funchook/funchook.rb
|
@@ -1095,6 +1124,7 @@ files:
|
|
1095
1124
|
- lib/contrast/utils/assess/property/tagged_utils.rb
|
1096
1125
|
- lib/contrast/utils/assess/sampling_util.rb
|
1097
1126
|
- lib/contrast/utils/assess/source_method_utils.rb
|
1127
|
+
- lib/contrast/utils/assess/split_utils.rb
|
1098
1128
|
- lib/contrast/utils/assess/tracking_util.rb
|
1099
1129
|
- lib/contrast/utils/assess/trigger_method_utils.rb
|
1100
1130
|
- lib/contrast/utils/class_util.rb
|
@@ -1122,11 +1152,9 @@ files:
|
|
1122
1152
|
- lib/contrast/utils/request_utils.rb
|
1123
1153
|
- lib/contrast/utils/resource_loader.rb
|
1124
1154
|
- lib/contrast/utils/response_utils.rb
|
1125
|
-
- lib/contrast/utils/ruby_ast_rewriter.rb
|
1126
1155
|
- lib/contrast/utils/sha256_builder.rb
|
1127
1156
|
- lib/contrast/utils/stack_trace_utils.rb
|
1128
1157
|
- lib/contrast/utils/string_utils.rb
|
1129
|
-
- lib/contrast/utils/substitution_utils.rb
|
1130
1158
|
- lib/contrast/utils/tag_util.rb
|
1131
1159
|
- lib/contrast/utils/telemetry.rb
|
1132
1160
|
- lib/contrast/utils/telemetry_client.rb
|
@@ -1162,7 +1190,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
1162
1190
|
requirements:
|
1163
1191
|
- - ">="
|
1164
1192
|
- !ruby/object:Gem::Version
|
1165
|
-
version: 2.
|
1193
|
+
version: 2.6.0
|
1166
1194
|
- - "<"
|
1167
1195
|
- !ruby/object:Gem::Version
|
1168
1196
|
version: 3.1.0
|
@@ -1,46 +0,0 @@
|
|
1
|
-
/* Copyright (c) 2021 Contrast Security, Inc. See
|
2
|
-
* https://www.contrastsecurity.com/enduser-terms-0317a for more details. */
|
3
|
-
|
4
|
-
#include "cs__active_record_named.h"
|
5
|
-
#include "../cs__common/cs__common.h"
|
6
|
-
#include <ruby.h>
|
7
|
-
|
8
|
-
VALUE contrast_assess_active_record_scope(const int argc, const VALUE *argv,
|
9
|
-
const VALUE self) {
|
10
|
-
/*
|
11
|
-
* The ActiveRecord::Scoping::Named::ClassMethods#scope method allows for
|
12
|
-
* the creation of methods at runtime. In order to trigger on interpolation
|
13
|
-
* within that new method, we must rewrite the method body BEFORE it can be
|
14
|
-
* used in the original #scope method, replacing interpolations with our
|
15
|
-
* String append logic. As this deviates from standard Assess behavior
|
16
|
-
* (changes the application behavior and acts on an input BEFORE it can be
|
17
|
-
* passed to the original method), I think it deserves to be in a custom
|
18
|
-
* call. -HM
|
19
|
-
*/
|
20
|
-
VALUE new_body, ret;
|
21
|
-
VALUE new_args[3];
|
22
|
-
new_body = rb_funcall(active_record_named, rb_sym_assess_rewrite, 3, self,
|
23
|
-
argv[0], argv[1]);
|
24
|
-
new_args[0] = argv[0];
|
25
|
-
if (NIL_P(new_body)) {
|
26
|
-
new_args[1] = argv[1];
|
27
|
-
} else {
|
28
|
-
new_args[1] = new_body;
|
29
|
-
}
|
30
|
-
new_args[2] = argv[2];
|
31
|
-
ret = rb_funcall2(self, rb_sym_assess_scope, argc, new_args);
|
32
|
-
return ret;
|
33
|
-
}
|
34
|
-
|
35
|
-
void Init_cs__assess_active_record_named(void) {
|
36
|
-
VALUE framework, rails, rewrite;
|
37
|
-
framework = rb_define_module_under(contrast, "Framework");
|
38
|
-
rails = rb_define_module_under(framework, "Rails");
|
39
|
-
rewrite = rb_define_module_under(rails, "Rewrite");
|
40
|
-
active_record_named =
|
41
|
-
rb_define_class_under(rewrite, "ActiveRecordNamed", rb_cObject);
|
42
|
-
rb_sym_assess_rewrite = rb_intern("rewrite");
|
43
|
-
rb_sym_assess_scope =
|
44
|
-
contrast_register_patch("ActiveRecord::Scoping::Named::ClassMethods",
|
45
|
-
"scope", contrast_assess_active_record_scope);
|
46
|
-
}
|
@@ -1,11 +0,0 @@
|
|
1
|
-
#include <ruby.h>
|
2
|
-
|
3
|
-
static VALUE active_record_named;
|
4
|
-
static VALUE rb_sym_assess_rewrite;
|
5
|
-
static VALUE rb_sym_assess_scope;
|
6
|
-
|
7
|
-
void contrast_alias_method(const VALUE target, const char *to,
|
8
|
-
const char *from);
|
9
|
-
|
10
|
-
VALUE contrast_assess_active_record_scope(const int argc, const VALUE *argv,
|
11
|
-
const VALUE self);
|
@@ -1,95 +0,0 @@
|
|
1
|
-
# Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
return unless RUBY_VERSION < '2.6.0' # TODO: RUBY-714 remove guard w/ EOL of 2.5
|
5
|
-
|
6
|
-
require 'contrast/agent/patching/policy/patch_status'
|
7
|
-
require 'contrast/agent/module_data'
|
8
|
-
require 'contrast/agent/rewriter'
|
9
|
-
require 'contrast/components/logger'
|
10
|
-
require 'contrast/utils/object_share'
|
11
|
-
|
12
|
-
module Contrast
|
13
|
-
module Agent
|
14
|
-
module Assess
|
15
|
-
module Policy
|
16
|
-
# This is our interface from the Patcher to the Rewriter
|
17
|
-
# functionality
|
18
|
-
#
|
19
|
-
# TODO: RUBY-714 remove w/ EOL of 2.5
|
20
|
-
# @deprecated Changes to this class are discouraged as this approach is
|
21
|
-
# being phased out with support for those language versions.
|
22
|
-
module RewriterPatch
|
23
|
-
extend Contrast::Components::Logger::InstanceMethods
|
24
|
-
|
25
|
-
class << self
|
26
|
-
def rewrite_interpolations
|
27
|
-
return unless agent_should_rewrite?
|
28
|
-
|
29
|
-
logger.debug_with_time('Running Assess interpolation rewrite') do
|
30
|
-
ObjectSpace.each_object(Module) do |mod|
|
31
|
-
rewrite_interpolation(mod)
|
32
|
-
end
|
33
|
-
end
|
34
|
-
end
|
35
|
-
|
36
|
-
def rewrite_interpolation mod, redo_rewrite = false
|
37
|
-
return unless should_rewrite?(mod)
|
38
|
-
|
39
|
-
status = Contrast::Agent::Patching::Policy::PatchStatus.get_status(mod)
|
40
|
-
return if (status&.rewritten? || status&.rewriting?) && !redo_rewrite
|
41
|
-
|
42
|
-
module_name = mod.cs__name
|
43
|
-
return unless module_name
|
44
|
-
|
45
|
-
if module_name.start_with?(Contrast::Utils::ObjectShare::CONTRAST_MODULE_START,
|
46
|
-
Contrast::Utils::ObjectShare::ANONYMOUS_CLASS_MARKER)
|
47
|
-
|
48
|
-
status.no_rewrite!
|
49
|
-
return
|
50
|
-
|
51
|
-
end
|
52
|
-
module_data = Contrast::Agent::ModuleData.new(mod, module_name)
|
53
|
-
logger.trace_with_time('Rewriting module', module: module_name) do
|
54
|
-
Contrast::Agent::Rewriter.rewrite_class(module_data, redo_rewrite)
|
55
|
-
end
|
56
|
-
rescue StandardError => e
|
57
|
-
logger.error('Unable to patch for assess', e, module: mod)
|
58
|
-
end
|
59
|
-
|
60
|
-
private
|
61
|
-
|
62
|
-
# Rails is being a jerk, again. It passes in a class before it is
|
63
|
-
# done being defined. There is a state where the files have been
|
64
|
-
# loaded, but the class definition is not complete, so the
|
65
|
-
# methods of the class are not defined despite the class existing
|
66
|
-
#
|
67
|
-
# To get around this, we have those methods tell us the class
|
68
|
-
# isn't ready
|
69
|
-
def mid_defining? mod
|
70
|
-
mod.instance_variable_defined?(:@cs__defining_class) && mod.instance_variable_get(:@cs__defining_class)
|
71
|
-
end
|
72
|
-
|
73
|
-
def agent_should_rewrite?
|
74
|
-
return false unless ::Contrast::ASSESS.enabled?
|
75
|
-
return false unless ::Contrast::AGENT.rewrite_interpolation?
|
76
|
-
return false unless ::Contrast::AGENT.interpolation_enabled?
|
77
|
-
|
78
|
-
true
|
79
|
-
end
|
80
|
-
|
81
|
-
def should_rewrite? mod
|
82
|
-
return false unless agent_should_rewrite?
|
83
|
-
return false if ::Contrast::AGENT.skip_instrumentation? mod.cs__name
|
84
|
-
return false if mod.cs__frozen?
|
85
|
-
return false if mod.singleton_class?
|
86
|
-
return false if mid_defining?(mod)
|
87
|
-
|
88
|
-
true
|
89
|
-
end
|
90
|
-
end
|
91
|
-
end
|
92
|
-
end
|
93
|
-
end
|
94
|
-
end
|
95
|
-
end
|