contrast-agent 3.10.1 → 3.12.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.flayignore +1 -0
- data/.simplecov +5 -2
- data/ext/build_funchook.rb +13 -17
- data/ext/cs__assess_active_record_named/cs__active_record_named.c +12 -14
- data/ext/cs__assess_active_record_named/cs__active_record_named.h +1 -0
- data/ext/cs__assess_active_record_named/extconf.rb +3 -0
- data/ext/cs__assess_array/cs__assess_array.c +5 -6
- data/ext/cs__assess_array/cs__assess_array.h +1 -0
- data/ext/cs__assess_array/extconf.rb +3 -0
- data/ext/cs__assess_basic_object/cs__assess_basic_object.c +13 -11
- data/ext/cs__assess_basic_object/cs__assess_basic_object.h +2 -1
- data/ext/cs__assess_basic_object/extconf.rb +3 -0
- data/ext/cs__assess_fiber_track/cs__assess_fiber_track.c +4 -3
- data/ext/cs__assess_fiber_track/cs__assess_fiber_track.h +3 -3
- data/ext/cs__assess_fiber_track/extconf.rb +3 -0
- data/ext/cs__assess_hash/cs__assess_hash.c +40 -17
- data/ext/cs__assess_hash/cs__assess_hash.h +4 -6
- data/ext/cs__assess_hash/extconf.rb +3 -0
- data/ext/cs__assess_kernel/cs__assess_kernel.c +11 -9
- data/ext/cs__assess_kernel/cs__assess_kernel.h +1 -0
- data/ext/cs__assess_kernel/extconf.rb +3 -0
- data/ext/cs__assess_marshal_module/cs__assess_marshal_module.c +3 -6
- data/ext/cs__assess_marshal_module/extconf.rb +3 -0
- data/ext/cs__assess_module/cs__assess_module.c +16 -14
- data/ext/cs__assess_module/cs__assess_module.h +3 -0
- data/ext/cs__assess_module/extconf.rb +3 -0
- data/ext/cs__assess_regexp/cs__assess_regexp.c +13 -9
- data/ext/cs__assess_regexp/cs__assess_regexp.h +1 -0
- data/ext/cs__assess_regexp/extconf.rb +3 -0
- data/ext/cs__assess_string/cs__assess_string.c +5 -8
- data/ext/cs__assess_string/cs__assess_string.h +2 -1
- data/ext/cs__assess_string/extconf.rb +3 -0
- data/ext/cs__assess_string_interpolation26/cs__assess_string_interpolation26.c +2 -2
- data/ext/cs__assess_string_interpolation26/cs__assess_string_interpolation26.h +3 -3
- data/ext/cs__assess_string_interpolation26/extconf.rb +3 -0
- data/ext/cs__assess_yield_track/cs__assess_yield_track.h +1 -1
- data/ext/cs__assess_yield_track/extconf.rb +3 -0
- data/ext/cs__common/cs__common.c +80 -1
- data/ext/cs__common/cs__common.h +34 -0
- data/ext/cs__common/extconf.rb +9 -8
- data/ext/cs__contrast_patch/cs__contrast_patch.h +1 -6
- data/ext/cs__contrast_patch/extconf.rb +3 -0
- data/ext/cs__protect_kernel/cs__protect_kernel.c +23 -12
- data/ext/cs__protect_kernel/cs__protect_kernel.h +1 -0
- data/ext/cs__protect_kernel/extconf.rb +3 -0
- data/ext/extconf_common.rb +10 -8
- data/funchook/autom4te.cache/output.0 +1 -13
- data/funchook/autom4te.cache/requests +50 -51
- data/funchook/autom4te.cache/traces.0 +0 -3
- data/funchook/config.log +378 -217
- data/funchook/config.status +23 -24
- data/funchook/configure +1 -13
- data/funchook/src/Makefile +7 -7
- data/funchook/src/config.h +2 -2
- data/funchook/src/decoder.o +0 -0
- data/funchook/src/distorm.o +0 -0
- data/funchook/src/funchook.o +0 -0
- data/funchook/src/funchook_io.o +0 -0
- data/funchook/src/funchook_syscall.o +0 -0
- data/funchook/src/funchook_unix.o +0 -0
- data/funchook/src/funchook_x86.o +0 -0
- data/funchook/src/instructions.o +0 -0
- data/funchook/src/insts.o +0 -0
- data/funchook/src/libfunchook.dylib +0 -0
- data/funchook/src/mnemonics.o +0 -0
- data/funchook/src/operands.o +0 -0
- data/funchook/src/os_func.o +0 -0
- data/funchook/src/os_func_unix.o +0 -0
- data/funchook/src/prefix.o +0 -0
- data/funchook/src/printf_base.o +0 -0
- data/funchook/src/textdefs.o +0 -0
- data/funchook/src/wstring.o +0 -0
- data/funchook/test/Makefile +2 -2
- data/funchook/test/funchook_test +0 -0
- data/funchook/test/libfunchook_test.so +0 -0
- data/funchook/test/libfunchook_test.so.dSYM/Contents/Info.plist +20 -0
- data/funchook/test/libfunchook_test.so.dSYM/Contents/Resources/DWARF/libfunchook_test.so +0 -0
- data/funchook/test/test_main.o +0 -0
- data/funchook/test/x86_64_test.o +0 -0
- data/lib/contrast.rb +1 -1
- data/lib/contrast/agent.rb +32 -29
- data/lib/contrast/agent/assess.rb +1 -11
- data/lib/contrast/agent/assess/adjusted_span.rb +3 -1
- data/lib/contrast/agent/assess/contrast_event.rb +16 -62
- data/lib/contrast/agent/assess/events/event_factory.rb +25 -0
- data/lib/contrast/agent/assess/events/source_event.rb +83 -0
- data/lib/contrast/agent/assess/insulator.rb +0 -4
- data/lib/contrast/agent/assess/policy/patcher.rb +6 -2
- data/lib/contrast/agent/assess/policy/policy_node.rb +1 -8
- data/lib/contrast/agent/assess/policy/policy_scanner.rb +2 -2
- data/lib/contrast/agent/assess/policy/preshift.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagation_method.rb +68 -33
- data/lib/contrast/agent/assess/policy/propagation_node.rb +2 -1
- data/lib/contrast/agent/assess/policy/propagator.rb +1 -0
- data/lib/contrast/agent/assess/policy/propagator/custom.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/database_write.rb +1 -3
- data/lib/contrast/agent/assess/policy/propagator/match_data.rb +80 -0
- data/lib/contrast/agent/assess/policy/propagator/select.rb +35 -22
- data/lib/contrast/agent/assess/policy/propagator/split.rb +26 -6
- data/lib/contrast/agent/assess/policy/propagator/substitution.rb +2 -0
- data/lib/contrast/agent/assess/policy/rewriter_patch.rb +37 -26
- data/lib/contrast/agent/assess/policy/source_method.rb +20 -20
- data/lib/contrast/agent/assess/policy/source_node.rb +0 -15
- data/lib/contrast/agent/assess/policy/trigger/reflected_xss.rb +90 -0
- data/lib/contrast/agent/assess/policy/trigger/xpath.rb +57 -0
- data/lib/contrast/agent/assess/policy/trigger_method.rb +30 -45
- data/lib/contrast/agent/assess/policy/trigger_node.rb +7 -7
- data/lib/contrast/agent/assess/policy/trigger_validation/ssrf_validator.rb +2 -31
- data/lib/contrast/agent/assess/properties.rb +5 -3
- data/lib/contrast/agent/assess/rule/base.rb +1 -20
- data/lib/contrast/agent/assess/rule/provider/hardcoded_value_rule.rb +23 -6
- data/lib/contrast/agent/assess/rule/redos.rb +4 -5
- data/lib/contrast/agent/assess/tag.rb +24 -14
- data/lib/contrast/agent/at_exit_hook.rb +16 -13
- data/lib/contrast/agent/class_reopener.rb +23 -8
- data/lib/contrast/agent/deadzone/policy/policy.rb +2 -2
- data/lib/contrast/agent/disable_reaction.rb +3 -4
- data/lib/contrast/agent/exclusion_matcher.rb +7 -48
- data/lib/contrast/agent/inventory/policy/datastores.rb +54 -0
- data/lib/contrast/agent/inventory/policy/policy.rb +1 -1
- data/lib/contrast/agent/middleware.rb +101 -260
- data/lib/contrast/agent/module_data.rb +2 -1
- data/lib/contrast/agent/patching/policy/after_load_patch.rb +13 -3
- data/lib/contrast/agent/patching/policy/after_load_patcher.rb +59 -47
- data/lib/contrast/agent/patching/policy/method_policy.rb +3 -3
- data/lib/contrast/agent/patching/policy/module_policy.rb +0 -25
- data/lib/contrast/agent/patching/policy/patch.rb +97 -23
- data/lib/contrast/agent/patching/policy/patcher.rb +28 -30
- data/lib/contrast/agent/patching/policy/policy.rb +7 -7
- data/lib/contrast/agent/patching/policy/policy_node.rb +3 -11
- data/lib/contrast/agent/patching/policy/trigger_node.rb +2 -5
- data/lib/contrast/agent/protect/policy/applies_command_injection_rule.rb +63 -0
- data/lib/contrast/agent/protect/policy/applies_deserialization_rule.rb +52 -0
- data/lib/contrast/agent/protect/policy/applies_no_sqli_rule.rb +68 -0
- data/lib/contrast/agent/protect/policy/applies_path_traversal_rule.rb +117 -0
- data/lib/contrast/agent/protect/policy/applies_sqli_rule.rb +54 -0
- data/lib/contrast/agent/protect/policy/applies_xxe_rule.rb +129 -0
- data/lib/contrast/agent/protect/policy/policy.rb +6 -6
- data/lib/contrast/agent/protect/policy/rule_applicator.rb +51 -0
- data/lib/contrast/agent/protect/rule.rb +0 -5
- data/lib/contrast/agent/protect/rule/base.rb +19 -37
- data/lib/contrast/agent/protect/rule/base_service.rb +3 -1
- data/lib/contrast/agent/protect/rule/cmd_injection.rb +12 -15
- data/lib/contrast/agent/protect/rule/default_scanner.rb +0 -13
- data/lib/contrast/agent/protect/rule/deserialization.rb +2 -0
- data/lib/contrast/agent/protect/rule/http_method_tampering.rb +2 -2
- data/lib/contrast/agent/protect/rule/no_sqli.rb +4 -4
- data/lib/contrast/agent/protect/rule/path_traversal.rb +6 -10
- data/lib/contrast/agent/protect/rule/sqli.rb +5 -4
- data/lib/contrast/agent/protect/rule/unsafe_file_upload.rb +2 -0
- data/lib/contrast/agent/protect/rule/xss.rb +2 -0
- data/lib/contrast/agent/protect/rule/xxe.rb +10 -4
- data/lib/contrast/agent/railtie.rb +3 -8
- data/lib/contrast/agent/reaction_processor.rb +5 -5
- data/lib/contrast/agent/request.rb +11 -18
- data/lib/contrast/agent/request_context.rb +16 -19
- data/lib/contrast/agent/request_handler.rb +35 -0
- data/lib/contrast/agent/response.rb +39 -86
- data/lib/contrast/agent/rewriter.rb +22 -10
- data/lib/contrast/agent/rule_set.rb +49 -0
- data/lib/contrast/agent/scope.rb +0 -6
- data/lib/contrast/agent/service_heartbeat.rb +3 -4
- data/lib/contrast/agent/socket_client.rb +25 -19
- data/lib/contrast/agent/static_analysis.rb +41 -0
- data/lib/contrast/agent/thread.rb +1 -1
- data/lib/contrast/agent/tracepoint_hook.rb +1 -5
- data/lib/contrast/agent/version.rb +1 -1
- data/lib/contrast/api.rb +1 -1
- data/lib/contrast/api/decorators.rb +14 -0
- data/lib/contrast/api/decorators/application_settings.rb +37 -0
- data/lib/contrast/api/decorators/application_update.rb +66 -0
- data/lib/contrast/api/decorators/input_analysis.rb +17 -0
- data/lib/contrast/api/decorators/server_features.rb +24 -0
- data/lib/contrast/api/speedracer.rb +28 -24
- data/lib/contrast/api/tcp_socket.rb +0 -2
- data/lib/contrast/components/agent.rb +34 -24
- data/lib/contrast/components/app_context.rb +45 -38
- data/lib/contrast/components/assess.rb +25 -15
- data/lib/contrast/components/config.rb +7 -5
- data/lib/contrast/components/contrast_service.rb +23 -71
- data/lib/contrast/components/heap_dump.rb +12 -8
- data/lib/contrast/components/interface.rb +15 -22
- data/lib/contrast/components/inventory.rb +5 -1
- data/lib/contrast/components/logger.rb +3 -68
- data/lib/contrast/components/protect.rb +40 -4
- data/lib/contrast/components/sampling.rb +22 -11
- data/lib/contrast/components/scope.rb +2 -52
- data/lib/contrast/components/settings.rb +42 -23
- data/lib/contrast/config/base_configuration.rb +1 -0
- data/lib/contrast/config/default_value.rb +1 -0
- data/lib/contrast/config/protect_rule_configuration.rb +0 -14
- data/lib/contrast/config/protect_rules_configuration.rb +0 -1
- data/lib/contrast/configuration.rb +2 -2
- data/lib/contrast/{extensions/ruby_core → extension}/assess.rb +12 -15
- data/lib/contrast/extension/assess/array.rb +77 -0
- data/lib/contrast/{extensions/ruby_core → extension}/assess/assess_extension.rb +29 -24
- data/lib/contrast/{extensions/ruby_core → extension}/assess/erb.rb +0 -8
- data/lib/contrast/extension/assess/eval_trigger.rb +78 -0
- data/lib/contrast/{extensions/ruby_core → extension}/assess/exec_trigger.rb +7 -9
- data/lib/contrast/extension/assess/fiber.rb +113 -0
- data/lib/contrast/extension/assess/hash.rb +39 -0
- data/lib/contrast/extension/assess/kernel.rb +110 -0
- data/lib/contrast/extension/assess/regexp.rb +84 -0
- data/lib/contrast/{extensions/ruby_core → extension}/assess/string.rb +18 -10
- data/lib/contrast/{extensions/ruby_core → extension}/delegator.rb +0 -0
- data/lib/contrast/{extensions/ruby_core → extension}/inventory.rb +2 -2
- data/lib/contrast/extension/kernel.rb +54 -0
- data/lib/contrast/{extensions/ruby_core → extension}/module.rb +0 -0
- data/lib/contrast/{extensions/ruby_core → extension}/protect.rb +2 -2
- data/lib/contrast/extension/protect/kernel.rb +44 -0
- data/lib/contrast/{extensions/ruby_core → extension}/protect/psych.rb +1 -1
- data/lib/contrast/{extensions/ruby_core → extension}/thread.rb +0 -0
- data/lib/contrast/framework/base_support.rb +32 -0
- data/lib/contrast/framework/manager.rb +59 -8
- data/lib/contrast/framework/platform_version.rb +1 -0
- data/lib/contrast/framework/rack/patch/session_cookie.rb +126 -0
- data/lib/contrast/framework/rack/patch/support.rb +24 -0
- data/lib/contrast/framework/rack/support.rb +22 -0
- data/lib/contrast/framework/rails/patch/action_controller_live_buffer.rb +43 -0
- data/lib/contrast/framework/rails/patch/assess_configuration.rb +103 -0
- data/lib/contrast/framework/rails/patch/rails_application_configuration.rb +31 -0
- data/lib/contrast/framework/rails/patch/support.rb +67 -0
- data/lib/contrast/framework/rails/rewrite/action_controller_railties_helper_inherited.rb +34 -0
- data/lib/contrast/framework/rails/rewrite/active_record_attribute_methods_read.rb +39 -0
- data/lib/contrast/framework/rails/rewrite/active_record_named.rb +73 -0
- data/lib/contrast/framework/rails/rewrite/active_record_time_zone_inherited.rb +33 -0
- data/lib/contrast/framework/rails/support.rb +115 -0
- data/lib/contrast/framework/sinatra/application_helper.rb +51 -0
- data/lib/contrast/framework/sinatra/patch/base.rb +83 -0
- data/lib/contrast/framework/sinatra/patch/support.rb +27 -0
- data/lib/contrast/framework/sinatra/support.rb +109 -0
- data/lib/contrast/framework/view_technologies_descriptor.rb +1 -0
- data/lib/contrast/logger/application.rb +80 -0
- data/lib/contrast/logger/log.rb +143 -0
- data/lib/contrast/logger/time.rb +50 -0
- data/lib/contrast/tasks/config.rb +54 -0
- data/lib/contrast/tasks/service.rb +3 -13
- data/lib/contrast/utils/assess/sampling_util.rb +4 -9
- data/lib/contrast/utils/assess/tracking_util.rb +7 -1
- data/lib/contrast/utils/boolean_util.rb +2 -2
- data/lib/contrast/utils/cache.rb +0 -11
- data/lib/contrast/utils/class_util.rb +24 -3
- data/lib/contrast/utils/gemfile_reader.rb +7 -5
- data/lib/contrast/utils/hash_digest.rb +2 -11
- data/lib/contrast/utils/heap_dump_util.rb +12 -11
- data/lib/contrast/utils/invalid_configuration_util.rb +4 -4
- data/lib/contrast/utils/inventory_util.rb +2 -2
- data/lib/contrast/utils/io_util.rb +1 -11
- data/lib/contrast/utils/job_servers_running.rb +6 -4
- data/lib/contrast/utils/object_share.rb +1 -28
- data/lib/contrast/utils/os.rb +1 -25
- data/lib/contrast/utils/service_response_util.rb +36 -60
- data/lib/contrast/utils/service_sender_util.rb +84 -23
- data/lib/contrast/utils/sinatra_helper.rb +0 -6
- data/lib/contrast/utils/stack_trace_utils.rb +86 -182
- data/lib/contrast/utils/string_utils.rb +18 -2
- data/lib/contrast/utils/tag_util.rb +11 -1
- data/lib/contrast/utils/thread_tracker.rb +2 -2
- data/lib/contrast/utils/timer.rb +0 -40
- data/resources/assess/policy.json +42 -71
- data/resources/inventory/policy.json +2 -2
- data/resources/protect/policy.json +15 -15
- data/ruby-agent.gemspec +11 -4
- data/service_executables/VERSION +1 -1
- data/service_executables/linux/contrast-service +0 -0
- data/service_executables/mac/contrast-service +0 -0
- metadata +126 -113
- data/ext/cs__assess_regexp_track/cs__assess_regexp_track.c +0 -63
- data/ext/cs__assess_regexp_track/cs__assess_regexp_track.h +0 -29
- data/ext/cs__assess_regexp_track/extconf.rb +0 -2
- data/funchook/src/libfunchook.so +0 -0
- data/lib/contrast/agent/assess/frozen_properties.rb +0 -41
- data/lib/contrast/agent/assess/rule/csrf.rb +0 -66
- data/lib/contrast/agent/assess/rule/csrf/csrf_action.rb +0 -28
- data/lib/contrast/agent/assess/rule/csrf/csrf_applicator.rb +0 -73
- data/lib/contrast/agent/assess/rule/csrf/csrf_watcher.rb +0 -132
- data/lib/contrast/agent/assess/rule/response_scanning_rule.rb +0 -47
- data/lib/contrast/agent/assess/rule/response_watcher.rb +0 -36
- data/lib/contrast/agent/assess/rule/watcher.rb +0 -36
- data/lib/contrast/agent/feature_state.rb +0 -376
- data/lib/contrast/agent/logger_manager.rb +0 -116
- data/lib/contrast/agent/protect/rule/csrf.rb +0 -118
- data/lib/contrast/agent/protect/rule/csrf/csrf_evaluator.rb +0 -103
- data/lib/contrast/agent/protect/rule/csrf/csrf_token_injector.rb +0 -85
- data/lib/contrast/agent/settings_state.rb +0 -152
- data/lib/contrast/delegators.rb +0 -9
- data/lib/contrast/delegators/application_update.rb +0 -32
- data/lib/contrast/extensions/framework/rack/cookie.rb +0 -24
- data/lib/contrast/extensions/framework/rack/request.rb +0 -24
- data/lib/contrast/extensions/framework/rack/response.rb +0 -23
- data/lib/contrast/extensions/framework/rails/action_controller_railties_helper_inherited.rb +0 -20
- data/lib/contrast/extensions/framework/rails/active_record.rb +0 -26
- data/lib/contrast/extensions/framework/rails/active_record_named.rb +0 -53
- data/lib/contrast/extensions/framework/rails/active_record_time_zone_inherited.rb +0 -21
- data/lib/contrast/extensions/framework/rails/buffer.rb +0 -28
- data/lib/contrast/extensions/framework/rails/configuration.rb +0 -27
- data/lib/contrast/extensions/framework/sinatra/base.rb +0 -59
- data/lib/contrast/extensions/ruby_core/assess/array.rb +0 -59
- data/lib/contrast/extensions/ruby_core/assess/basic_object.rb +0 -15
- data/lib/contrast/extensions/ruby_core/assess/fiber.rb +0 -124
- data/lib/contrast/extensions/ruby_core/assess/hash.rb +0 -22
- data/lib/contrast/extensions/ruby_core/assess/kernel.rb +0 -95
- data/lib/contrast/extensions/ruby_core/assess/module.rb +0 -14
- data/lib/contrast/extensions/ruby_core/assess/regexp.rb +0 -206
- data/lib/contrast/extensions/ruby_core/assess/tilt_template_trigger.rb +0 -73
- data/lib/contrast/extensions/ruby_core/assess/xpath_library_trigger.rb +0 -40
- data/lib/contrast/extensions/ruby_core/eval_trigger.rb +0 -52
- data/lib/contrast/extensions/ruby_core/inventory/datastores.rb +0 -37
- data/lib/contrast/extensions/ruby_core/protect/applies_command_injection_rule.rb +0 -72
- data/lib/contrast/extensions/ruby_core/protect/applies_deserialization_rule.rb +0 -60
- data/lib/contrast/extensions/ruby_core/protect/applies_no_sqli_rule.rb +0 -83
- data/lib/contrast/extensions/ruby_core/protect/applies_path_traversal_rule.rb +0 -123
- data/lib/contrast/extensions/ruby_core/protect/applies_sqli_rule.rb +0 -65
- data/lib/contrast/extensions/ruby_core/protect/applies_xxe_rule.rb +0 -143
- data/lib/contrast/extensions/ruby_core/protect/kernel.rb +0 -30
- data/lib/contrast/framework/rails_support.rb +0 -88
- data/lib/contrast/framework/sinatra_application_helper.rb +0 -49
- data/lib/contrast/framework/sinatra_support.rb +0 -94
- data/lib/contrast/utils/comment_range.rb +0 -19
- data/lib/contrast/utils/data_store_util.rb +0 -23
- data/lib/contrast/utils/environment_util.rb +0 -81
- data/lib/contrast/utils/performs_logging.rb +0 -152
- data/lib/contrast/utils/rack_assess_session_cookie.rb +0 -104
- data/lib/contrast/utils/rails_assess_configuration.rb +0 -95
- data/lib/contrast/utils/random_util.rb +0 -22
- data/resources/csrf/inject.js +0 -44
- data/resources/factory-bot-spec/spec_helper.rb +0 -30
- data/resources/rubocops/kernel/catch_cop.rb +0 -37
- data/resources/rubocops/kernel/require_cop.rb +0 -37
- data/resources/rubocops/kernel/require_relative_cop.rb +0 -33
- data/resources/rubocops/module/autoload_cop.rb +0 -37
- data/resources/rubocops/module/const_defined_cop.rb +0 -37
- data/resources/rubocops/module/const_get_cop.rb +0 -37
- data/resources/rubocops/module/const_set_cop.rb +0 -37
- data/resources/rubocops/module/constants_cop.rb +0 -37
- data/resources/rubocops/module/name_cop.rb +0 -37
- data/resources/rubocops/object/class_cop.rb +0 -37
- data/resources/rubocops/object/freeze_cop.rb +0 -37
- data/resources/rubocops/object/frozen_cop.rb +0 -37
- data/resources/rubocops/object/is_a_cop.rb +0 -37
- data/resources/rubocops/object/method_cop.rb +0 -37
- data/resources/rubocops/object/respond_to_cop.rb +0 -37
- data/resources/rubocops/object/singleton_class_cop.rb +0 -37
- data/resources/rubocops/regexp/spelling_cop.rb +0 -44
- data/resources/rubocops/thread/new_cop.rb +0 -39
- data/resources/ruby-spec/ancestors_spec.rb +0 -70
- data/resources/ruby-spec/modulo_spec.rb +0 -831
- data/resources/ruby-spec/parameters_spec.rb +0 -261
- data/resources/ruby-spec/ruby_spec_spec_helper.rb +0 -35
@@ -0,0 +1,39 @@
|
|
1
|
+
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
cs__scoped_require 'contrast/components/interface'
|
5
|
+
|
6
|
+
module Contrast
|
7
|
+
module Extension
|
8
|
+
module Assess
|
9
|
+
# This Class provides us with a way to invoke Hash propagation for those
|
10
|
+
# methods which are too complex to fit into one of the standard
|
11
|
+
# Contrast::Agent::Assess::Policy::Propagator molds.
|
12
|
+
class HashPropagator
|
13
|
+
include Contrast::Components::Interface
|
14
|
+
access_component :logging
|
15
|
+
class << self
|
16
|
+
def cs__duplicate_and_freeze object
|
17
|
+
return object unless object.is_a?(String) && !object.cs__frozen?
|
18
|
+
return object unless object.cs__tracked?
|
19
|
+
|
20
|
+
object.dup.cs__freeze
|
21
|
+
rescue StandardError
|
22
|
+
# we'll rescue this error, but we can't log it here as that will
|
23
|
+
# result in a seg fault
|
24
|
+
end
|
25
|
+
|
26
|
+
def instrument_hash_track
|
27
|
+
@_instrument_hash_track ||= begin
|
28
|
+
cs__scoped_require 'cs__assess_hash/cs__assess_hash'
|
29
|
+
true
|
30
|
+
end
|
31
|
+
rescue StandardError, LoadError => e
|
32
|
+
logger.error('Error loading hash track patch', e)
|
33
|
+
false
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
@@ -0,0 +1,110 @@
|
|
1
|
+
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
cs__scoped_require 'contrast/components/interface'
|
5
|
+
cs__scoped_require 'contrast/extension/assess/exec_trigger'
|
6
|
+
|
7
|
+
module Contrast
|
8
|
+
module Extension
|
9
|
+
module Assess
|
10
|
+
# This module provides us with a way to invoke Kernel propagation for those
|
11
|
+
# methods which are too complex to fit into one of the standard
|
12
|
+
# Contrast::Agent::Assess::Policy::Propagator molds without cluttering up the
|
13
|
+
# Kernel Module or exposing our methods there.
|
14
|
+
module KernelPropagator
|
15
|
+
class << self
|
16
|
+
include Contrast::Components::Interface
|
17
|
+
include Contrast::Extension::Assess::ExecTrigger
|
18
|
+
|
19
|
+
access_component :logging
|
20
|
+
|
21
|
+
# We're 'tracking' sprintf now, meaning if anything is tracked on the way
|
22
|
+
# in, the entire result will be tracked out. We're going to take this
|
23
|
+
# approach for now b/c it's fast and easy. I don't super love it, and by
|
24
|
+
# that I mean I hate it.
|
25
|
+
#
|
26
|
+
# To actually track this, we'd have to find the index of the new things
|
27
|
+
# being added, then remove the tags at the range of the format marker,
|
28
|
+
# which is some arbitrary length thing, and add the new tags from the
|
29
|
+
# inserted string, shifted down by the length of the aforementioned
|
30
|
+
# marker.
|
31
|
+
#
|
32
|
+
# marker is in the format %[flags][width][.precision]type, type being a
|
33
|
+
# single character. We could regexp this with %.+[bBdiouxXeEfgGaAcps%]
|
34
|
+
#
|
35
|
+
# also, b/c Ruby hates us, there are things called absolute markers,
|
36
|
+
# (digit)$, that go in the flags section. These cannot be mixed w/ the
|
37
|
+
# order assumed type
|
38
|
+
#
|
39
|
+
# oh, and there's also %<name>type and %{name}... b/c of course there is
|
40
|
+
# -HM
|
41
|
+
def sprintf_tagger patcher, preshift, ret, _block
|
42
|
+
format_string = preshift.args[0]
|
43
|
+
args = preshift.args[1]
|
44
|
+
|
45
|
+
track_sprintf(ret, format_string, args)
|
46
|
+
|
47
|
+
ret.cs__properties.build_event(
|
48
|
+
patcher,
|
49
|
+
ret,
|
50
|
+
preshift.object,
|
51
|
+
ret,
|
52
|
+
preshift.args,
|
53
|
+
1)
|
54
|
+
ret
|
55
|
+
end
|
56
|
+
|
57
|
+
def track_sprintf result, format_string, args
|
58
|
+
handle_sprintf_value(format_string, result)
|
59
|
+
if args.is_a?(String)
|
60
|
+
handle_sprintf_value(args, result)
|
61
|
+
elsif args.is_a?(Hash)
|
62
|
+
handle_sprintf_hash(args, result)
|
63
|
+
elsif args.is_a?(Array)
|
64
|
+
handle_sprintf_array args, result
|
65
|
+
end
|
66
|
+
|
67
|
+
result
|
68
|
+
rescue StandardError => e
|
69
|
+
logger.error(
|
70
|
+
'Unable to track dataflow through sprintf', e)
|
71
|
+
result
|
72
|
+
end
|
73
|
+
|
74
|
+
def instrument_kernel_track
|
75
|
+
@_instrument_fiber_variables ||= begin
|
76
|
+
cs__scoped_require 'cs__assess_kernel/cs__assess_kernel'
|
77
|
+
true
|
78
|
+
end
|
79
|
+
rescue StandardError, LoadError => e
|
80
|
+
logger.error('Error loading kernel track patch', e)
|
81
|
+
false
|
82
|
+
end
|
83
|
+
|
84
|
+
private
|
85
|
+
|
86
|
+
def handle_sprintf_value value, result
|
87
|
+
return unless Contrast::Utils::DuckUtils.trackable?(value) && value.cs__tracked?
|
88
|
+
|
89
|
+
value.cs__properties.events.each do |event|
|
90
|
+
result.cs__properties.events << event
|
91
|
+
end
|
92
|
+
value.cs__splat_tags(result)
|
93
|
+
end
|
94
|
+
|
95
|
+
def handle_sprintf_array args, result
|
96
|
+
args.each do |value|
|
97
|
+
handle_sprintf_value(value, result)
|
98
|
+
end
|
99
|
+
end
|
100
|
+
|
101
|
+
def handle_sprintf_hash args, result
|
102
|
+
args.each_value do |value|
|
103
|
+
handle_sprintf_value(value, result)
|
104
|
+
end
|
105
|
+
end
|
106
|
+
end
|
107
|
+
end
|
108
|
+
end
|
109
|
+
end
|
110
|
+
end
|
@@ -0,0 +1,84 @@
|
|
1
|
+
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
cs__scoped_require 'contrast/agent/assess/policy/propagation_node'
|
5
|
+
cs__scoped_require 'contrast/components/interface'
|
6
|
+
|
7
|
+
module Contrast
|
8
|
+
module Extension
|
9
|
+
module Assess
|
10
|
+
# This Class provides us with a way to invoke Regexp propagation for those
|
11
|
+
# methods which are too complex to fit into one of the standard
|
12
|
+
# Contrast::Agent::Assess::Policy::Propagator molds without cluttering up the
|
13
|
+
# Regexp Class or exposing our methods there.
|
14
|
+
class RegexpPropagator
|
15
|
+
include Contrast::Components::Interface
|
16
|
+
|
17
|
+
access_component :analysis, :logging, :scope
|
18
|
+
|
19
|
+
REGEXP_EQUAL_SQUIGGLE_HASH = {
|
20
|
+
'id' => 'regexp_100',
|
21
|
+
'class_name' => 'Regexp',
|
22
|
+
'instance_method' => true,
|
23
|
+
'method_visibility' => 'public',
|
24
|
+
'method_name' => '=~',
|
25
|
+
'action' => 'CUSTOM',
|
26
|
+
'source' => 'P0',
|
27
|
+
'target' => 'R',
|
28
|
+
'patch_class' => 'Contrast::Extension::Assess::RegexpPropagator',
|
29
|
+
'patch_method' => 'track_equal_squiggle'
|
30
|
+
}.cs__freeze
|
31
|
+
REGEXP_EQUAL_SQUIGGLE_NODE = Contrast::Agent::Assess::Policy::PropagationNode.new(REGEXP_EQUAL_SQUIGGLE_HASH)
|
32
|
+
private_constant :REGEXP_EQUAL_SQUIGGLE_HASH
|
33
|
+
private_constant :REGEXP_EQUAL_SQUIGGLE_NODE
|
34
|
+
|
35
|
+
class << self
|
36
|
+
def track_equal_squiggle info_hash
|
37
|
+
return unless ASSESS.enabled?
|
38
|
+
|
39
|
+
# Because we have a special case for this propagation,
|
40
|
+
# it falls out of regular scoping. As such, any patch to the `=~` method
|
41
|
+
# that goes through normal channels, like that for the redos rule,
|
42
|
+
# will force this to be in a scope of 1 (instead of the normal 0).
|
43
|
+
# As such, a scope of 1 here indicates that,
|
44
|
+
# so we know that we're in the top level call for this method.
|
45
|
+
# normal patch [-alias-]> special case patch [-alias-]> original method
|
46
|
+
# TODO: RUBY-686
|
47
|
+
return if scope_for_current_ec.instance_variable_get(:@contrast_scope) > 1
|
48
|
+
|
49
|
+
target = info_hash[:back_ref]
|
50
|
+
return unless Contrast::Utils::DuckUtils.trackable?(target)
|
51
|
+
|
52
|
+
with_contrast_scope do
|
53
|
+
result = info_hash[:result]
|
54
|
+
return unless result
|
55
|
+
|
56
|
+
string = info_hash[:string]
|
57
|
+
return unless string
|
58
|
+
|
59
|
+
string.cs__splat_tags(target)
|
60
|
+
target.cs__properties.build_event(
|
61
|
+
REGEXP_EQUAL_SQUIGGLE_NODE,
|
62
|
+
target,
|
63
|
+
self,
|
64
|
+
result,
|
65
|
+
[string])
|
66
|
+
end
|
67
|
+
rescue Exception => e # rubocop:disable Lint/RescueException
|
68
|
+
logger.error('Unable to propagate during Regexp#=~', e)
|
69
|
+
end
|
70
|
+
|
71
|
+
def instrument_regexp_track
|
72
|
+
@_instrument_regexp_track ||= begin
|
73
|
+
cs__scoped_require 'cs__assess_regexp/cs__assess_regexp'
|
74
|
+
true
|
75
|
+
end
|
76
|
+
rescue StandardError, LoadError => e
|
77
|
+
logger.error('Error loading regexp track patch', e)
|
78
|
+
false
|
79
|
+
end
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
83
|
+
end
|
84
|
+
end
|
@@ -1,16 +1,18 @@
|
|
1
1
|
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
+
cs__scoped_require 'contrast/agent/assess/policy/propagation_node'
|
4
5
|
cs__scoped_require 'contrast/components/interface'
|
6
|
+
cs__scoped_require 'contrast/extension/assess/assess_extension'
|
5
7
|
|
6
8
|
# This patch installs our extension as early as possible. The alternative is to
|
7
|
-
# litter our code with
|
9
|
+
# litter our code with Contrast::Utils::DuckUtils.trackable? checks.
|
8
10
|
class String
|
9
|
-
include Contrast::
|
11
|
+
include Contrast::Extension::Assess::AssessExtension
|
10
12
|
end
|
11
13
|
|
12
14
|
module Contrast
|
13
|
-
module
|
15
|
+
module Extension
|
14
16
|
module Assess
|
15
17
|
# This Class provides us with a way to invoke String propagation for those
|
16
18
|
# methods which are too complex to fit into one of the standard
|
@@ -19,7 +21,7 @@ module Contrast
|
|
19
21
|
class StringPropagator
|
20
22
|
include Contrast::Components::Interface
|
21
23
|
|
22
|
-
access_component :
|
24
|
+
access_component :agent, :analysis, :logging, :scope
|
23
25
|
|
24
26
|
NODE_HASH = {
|
25
27
|
'class_name' => 'String',
|
@@ -50,6 +52,16 @@ module Contrast
|
|
50
52
|
end
|
51
53
|
end
|
52
54
|
|
55
|
+
def instrument_string
|
56
|
+
@_instrument_string ||= begin
|
57
|
+
cs__scoped_require 'cs__assess_string/cs__assess_string'
|
58
|
+
true
|
59
|
+
end
|
60
|
+
rescue StandardError, LoadError => e
|
61
|
+
logger.error('Error loading hash track patch', e)
|
62
|
+
false
|
63
|
+
end
|
64
|
+
|
53
65
|
def instrument_string_interpolation
|
54
66
|
if @_instrument_string_interpolation.nil?
|
55
67
|
@_instrument_string_interpolation = begin
|
@@ -57,8 +69,8 @@ module Contrast
|
|
57
69
|
cs__scoped_require 'cs__assess_string_interpolation26/cs__assess_string_interpolation26'
|
58
70
|
end
|
59
71
|
true
|
60
|
-
rescue StandardError => e
|
61
|
-
logger.error(
|
72
|
+
rescue StandardError, LoadError => e
|
73
|
+
logger.error('Error loading interpolation patch', e)
|
62
74
|
false
|
63
75
|
end
|
64
76
|
end
|
@@ -69,7 +81,3 @@ module Contrast
|
|
69
81
|
end
|
70
82
|
end
|
71
83
|
end
|
72
|
-
|
73
|
-
cs__scoped_require 'cs__assess_string/cs__assess_string'
|
74
|
-
|
75
|
-
Contrast::CoreExtensions::Assess::StringPropagator.instrument_string_interpolation
|
File without changes
|
@@ -2,8 +2,8 @@
|
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
module Contrast
|
5
|
-
module
|
6
|
-
# Our top level Inventory namespace in the Core
|
5
|
+
module Extension
|
6
|
+
# Our top level Inventory namespace in the Core Extension section of our
|
7
7
|
# code. These patches are those that are invoked directly from a patched
|
8
8
|
# Class.
|
9
9
|
#
|
@@ -0,0 +1,54 @@
|
|
1
|
+
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
cs__scoped_require 'contrast/components/scope'
|
5
|
+
|
6
|
+
# This is a reasonable place for the Kernel#catch hook to live.
|
7
|
+
# No current plans for component re-design, but if we had some kind of
|
8
|
+
# "do this when a component is hooked in" thing, this would live there.
|
9
|
+
# For now, it's over-engineering to live anywhere else. -ajm
|
10
|
+
module Kernel # :nodoc:
|
11
|
+
alias_method :cs__catch, :catch
|
12
|
+
|
13
|
+
# In the event of a `throw`, we need to override `catch`
|
14
|
+
# to save & restore scope state:
|
15
|
+
#
|
16
|
+
# scope_level == 0
|
17
|
+
#
|
18
|
+
# catch(:abc) do
|
19
|
+
# with_contrast_scope do
|
20
|
+
# throw :abc # will leak
|
21
|
+
# end
|
22
|
+
# end
|
23
|
+
#
|
24
|
+
# scope_level == 1
|
25
|
+
#
|
26
|
+
# Frankly, this isn't how scope should be used. This is in place of
|
27
|
+
# proper `ensure` blocks within the instrumentation call stack.
|
28
|
+
# This will actually /create/ scope leaks if you're doing something like:
|
29
|
+
#
|
30
|
+
# catch(:ohno) do
|
31
|
+
# enter scope
|
32
|
+
# end
|
33
|
+
#
|
34
|
+
# abc()
|
35
|
+
#
|
36
|
+
# exit scope
|
37
|
+
#
|
38
|
+
# i.e. if you intend to change net scope across a catch block boundary.
|
39
|
+
|
40
|
+
private
|
41
|
+
|
42
|
+
def catch *args, &block
|
43
|
+
# Save current scope level
|
44
|
+
scope_level = Contrast::Components::Scope::COMPONENT_INTERFACE.scope_for_current_ec.instance_variable_get(:@contrast_scope)
|
45
|
+
|
46
|
+
# Run original catch with block.
|
47
|
+
retval = cs__catch(*args, &block)
|
48
|
+
|
49
|
+
# Restore scope.
|
50
|
+
Contrast::Components::Scope::COMPONENT_INTERFACE.scope_for_current_ec.instance_variable_set(:@contrast_scope, scope_level)
|
51
|
+
|
52
|
+
retval
|
53
|
+
end
|
54
|
+
end
|
File without changes
|
@@ -2,8 +2,8 @@
|
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
module Contrast
|
5
|
-
module
|
6
|
-
# Our top level Protect namespace in the Core
|
5
|
+
module Extension
|
6
|
+
# Our top level Protect namespace in the Core Extension section of our
|
7
7
|
# code. These patches are those that are invoked directly from a patched
|
8
8
|
# Class.
|
9
9
|
#
|
@@ -0,0 +1,44 @@
|
|
1
|
+
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
cs__scoped_require 'contrast/components/interface'
|
5
|
+
|
6
|
+
module Contrast
|
7
|
+
module Extension
|
8
|
+
module Protect
|
9
|
+
# This Module functions as our patch into the Kernel class for Protect,
|
10
|
+
# allowing us to track activity as it crosses spawned processes.
|
11
|
+
module Kernel
|
12
|
+
class << self
|
13
|
+
include Contrast::Components::Interface
|
14
|
+
access_component :contrast_service
|
15
|
+
|
16
|
+
def build_wrapper
|
17
|
+
lambda {
|
18
|
+
proc_start
|
19
|
+
yield
|
20
|
+
# AtExitHook handles sending any messages generated in the new forked process
|
21
|
+
}
|
22
|
+
end
|
23
|
+
|
24
|
+
def proc_start
|
25
|
+
context = Contrast::Agent::REQUEST_TRACKER.current
|
26
|
+
return unless context
|
27
|
+
|
28
|
+
context.reset_activity
|
29
|
+
end
|
30
|
+
|
31
|
+
def instrument
|
32
|
+
@_instrument ||= begin
|
33
|
+
cs__scoped_require 'cs__protect_kernel/cs__protect_kernel'
|
34
|
+
true
|
35
|
+
end
|
36
|
+
rescue StandardError, LoadError => e
|
37
|
+
logger.error('Error loading kernel protect patch', e)
|
38
|
+
false
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
@@ -2,6 +2,6 @@
|
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
if defined?(Psych)
|
5
|
-
cs__scoped_require 'contrast/
|
5
|
+
cs__scoped_require 'contrast/agent/protect/policy/applies_deserialization_rule'
|
6
6
|
cs__scoped_require 'cs__patched_psych/cs__patched_psych'
|
7
7
|
end
|
File without changes
|
@@ -42,6 +42,38 @@ module Contrast
|
|
42
42
|
raise NoMethodError, 'Subclasses of BaseSupport should implement this method'
|
43
43
|
end
|
44
44
|
|
45
|
+
def retrieve_request _env
|
46
|
+
raise NoMethodError, 'Subclasses of BaseSupport should implement this method'
|
47
|
+
end
|
48
|
+
|
49
|
+
# Some Frameworks require specific patching for their classes to handle
|
50
|
+
# functionality like configuration scanning. To accommodate this, this
|
51
|
+
# method provides a place to register those patches for invocation on
|
52
|
+
# Agent load.
|
53
|
+
#
|
54
|
+
# By default, and hopefully in all cases, we won't need these patches,
|
55
|
+
# so we're allowing nil here rather than raising an exception.
|
56
|
+
def before_load_patches; end
|
57
|
+
|
58
|
+
# Some Frameworks require specific patching for their classes to handle
|
59
|
+
# functionality like routing. To accommodate this, this method provides
|
60
|
+
# a place to register those patches for invocation in our
|
61
|
+
# AfterLoadPatcher flow.
|
62
|
+
#
|
63
|
+
# By default, and hopefully in all cases, we won't need these patches,
|
64
|
+
# so we're allowing nil here rather than raising an exception.
|
65
|
+
#
|
66
|
+
# @return [Set<Contrast::Agent::Patching::Policy::AfterLoadPatch>,nil]
|
67
|
+
# those patches required for a Framework which can only be installed
|
68
|
+
# once a specific module has been loaded.
|
69
|
+
def after_load_patches; end
|
70
|
+
|
71
|
+
# We only support websockets in rails right now, so we won't detect streaming in
|
72
|
+
# any other framework
|
73
|
+
def streaming? _env
|
74
|
+
false
|
75
|
+
end
|
76
|
+
|
45
77
|
protected
|
46
78
|
|
47
79
|
def source_or_string obj
|