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
@@ -1,52 +0,0 @@
|
|
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
|
-
module Contrast
|
5
|
-
module CoreExtensions
|
6
|
-
module Assess
|
7
|
-
# This Module allows us to track calls to the BasicObject#eval method,
|
8
|
-
# which violates the design of most methods we track in that we have to
|
9
|
-
# apply the trigger in a custom patch over one of the generic triggers in
|
10
|
-
# TriggerMethod.
|
11
|
-
module EvalTrigger
|
12
|
-
def instance_eval_trigger_check source, ret
|
13
|
-
apply_trigger(source, ret, 'BasicObject', :instance_eval)
|
14
|
-
end
|
15
|
-
|
16
|
-
def eval_trigger_check source, ret, method
|
17
|
-
apply_trigger(source, ret, 'Module', method)
|
18
|
-
end
|
19
|
-
|
20
|
-
def apply_trigger source, ret, clazz, method
|
21
|
-
current_context = Contrast::Agent::REQUEST_TRACKER.current
|
22
|
-
return unless current_context
|
23
|
-
|
24
|
-
# Since we know this is the source of the trigger, we can do some
|
25
|
-
# optimization here and return when it is not tracked
|
26
|
-
return unless Contrast::Utils::Assess::TrackingUtil.tracked?(source)
|
27
|
-
|
28
|
-
# source might not be all the args passed in, but it is the one we care
|
29
|
-
# about. we could pass in all the args in the last param here if it
|
30
|
-
# becomes an issue in rendering on TS
|
31
|
-
Contrast::Agent::Assess::Policy::TriggerMethod.apply_eval_trigger(
|
32
|
-
current_context,
|
33
|
-
trigger_node(clazz, method),
|
34
|
-
source,
|
35
|
-
self,
|
36
|
-
ret,
|
37
|
-
1,
|
38
|
-
source)
|
39
|
-
end
|
40
|
-
|
41
|
-
private
|
42
|
-
|
43
|
-
def trigger_node clazz, method
|
44
|
-
triggers = Contrast::Agent::Assess::Policy::Policy.instance.triggers
|
45
|
-
return unless triggers
|
46
|
-
|
47
|
-
triggers.find { |node| node.class_name == clazz && node.method_name == method }
|
48
|
-
end
|
49
|
-
end
|
50
|
-
end
|
51
|
-
end
|
52
|
-
end
|
@@ -1,37 +0,0 @@
|
|
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/utils/data_store_util'
|
6
|
-
|
7
|
-
module Contrast
|
8
|
-
module CoreExtensions
|
9
|
-
module Inventory
|
10
|
-
# This Module is how we apply the Data Store detection required for the
|
11
|
-
# FlowMap feature. It is called from our patches of the targeted methods
|
12
|
-
# in which database operations occur. It is responsible for deciding if
|
13
|
-
# the given invocation is worth reporting or not.
|
14
|
-
module DataStores
|
15
|
-
class << self
|
16
|
-
include Contrast::Components::Interface
|
17
|
-
|
18
|
-
access_component :logging, :analysis
|
19
|
-
# The key used in policy.json to indicate the database type to
|
20
|
-
# report.
|
21
|
-
DATA_STORE_MARKER = 'data_store'
|
22
|
-
|
23
|
-
def patched_report_data_store _method, _exception, properties, object, _args
|
24
|
-
return unless INVENTORY.enabled?
|
25
|
-
|
26
|
-
marker = properties[DATA_STORE_MARKER]
|
27
|
-
return unless marker
|
28
|
-
|
29
|
-
Contrast::Utils::DataStoreUtil.report_data_store(marker)
|
30
|
-
rescue StandardError => e
|
31
|
-
logger.error(e, "Error reporting database call in #{ object }")
|
32
|
-
end
|
33
|
-
end
|
34
|
-
end
|
35
|
-
end
|
36
|
-
end
|
37
|
-
end
|
@@ -1,72 +0,0 @@
|
|
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/extensions/ruby_core/protect/applies_deserialization_rule'
|
6
|
-
|
7
|
-
module Contrast
|
8
|
-
module CoreExtensions
|
9
|
-
module Protect
|
10
|
-
# This Module is how we apply the Command Injection rule. It is called
|
11
|
-
# from our patches of the targeted methods in which command execution
|
12
|
-
# occurs. It is responsible for deciding if the infilter methods of the
|
13
|
-
# rule should be invoked.
|
14
|
-
# In addition, b/c of the nature of Deserialization's sand boxing
|
15
|
-
# function, this Module's apply methods call through to the
|
16
|
-
# {#apply_deserialization_command_check} method of the
|
17
|
-
# Deserialization applicator.
|
18
|
-
module AppliesCommandInjectionRule
|
19
|
-
CS__SEMICOLON = '; '
|
20
|
-
|
21
|
-
class << self
|
22
|
-
include Contrast::Components::Interface
|
23
|
-
access_component :logging, :analysis
|
24
|
-
|
25
|
-
def apply_command_injection_rule method, _exception, _properties, object, args
|
26
|
-
return unless valid_command?(args)
|
27
|
-
|
28
|
-
command = build_command(args)
|
29
|
-
Contrast::CoreExtensions::Protect::AppliesDeserializationRule.apply_deserialization_command_check(command)
|
30
|
-
return if skip_analysis?
|
31
|
-
|
32
|
-
begin
|
33
|
-
clazz = object.is_a?(Module) ? object : object.cs__class
|
34
|
-
class_name = clazz.cs__name
|
35
|
-
rule.infilter(Contrast::Agent::REQUEST_TRACKER.current, class_name, method, command)
|
36
|
-
end
|
37
|
-
rescue Contrast::SecurityException => e
|
38
|
-
raise e
|
39
|
-
rescue StandardError => e
|
40
|
-
msg = "command injection: class=#{ object }.#{ method }"
|
41
|
-
logger.error(e, msg)
|
42
|
-
end
|
43
|
-
|
44
|
-
private
|
45
|
-
|
46
|
-
def rule
|
47
|
-
PROTECT.rule Contrast::Agent::Protect::Rule::CmdInjection::NAME
|
48
|
-
end
|
49
|
-
|
50
|
-
def skip_analysis?
|
51
|
-
context = Contrast::Agent::REQUEST_TRACKER.current
|
52
|
-
return true unless context&.app_loaded?
|
53
|
-
return true unless rule&.enabled?
|
54
|
-
|
55
|
-
false
|
56
|
-
end
|
57
|
-
|
58
|
-
def valid_command? command
|
59
|
-
command && (command.is_a?(String) || command.is_a?(Array))
|
60
|
-
end
|
61
|
-
|
62
|
-
def build_command command
|
63
|
-
return command if command.is_a?(String)
|
64
|
-
|
65
|
-
command = command.drop(1) if command.length > 1
|
66
|
-
command.join(CS__SEMICOLON)
|
67
|
-
end
|
68
|
-
end
|
69
|
-
end
|
70
|
-
end
|
71
|
-
end
|
72
|
-
end
|
@@ -1,60 +0,0 @@
|
|
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 CoreExtensions
|
8
|
-
module Protect
|
9
|
-
# This Module is how we apply the Deserialization rule. It is called from
|
10
|
-
# our patches of the targeted methods in which deserialization occurs.
|
11
|
-
# It is responsible for deciding if the infilter methods of the rule
|
12
|
-
# should be invoked.
|
13
|
-
module AppliesDeserializationRule
|
14
|
-
include Contrast::Components::Interface
|
15
|
-
access_component :logging, :analysis
|
16
|
-
|
17
|
-
class << self
|
18
|
-
def apply_deserialization_rule method, _exception, _properties, object, args
|
19
|
-
return unless valid_input?(args)
|
20
|
-
return if skip_analysis?
|
21
|
-
|
22
|
-
rule.infilter(Contrast::Agent::REQUEST_TRACKER.current, args[0])
|
23
|
-
rescue Contrast::SecurityException => e
|
24
|
-
raise e
|
25
|
-
rescue StandardError => e
|
26
|
-
logger.error(e, "Error running untrusted-deserialization rule in #{ object }.#{ method }")
|
27
|
-
end
|
28
|
-
|
29
|
-
def apply_deserialization_command_check command
|
30
|
-
return unless command
|
31
|
-
return if skip_analysis?
|
32
|
-
|
33
|
-
rule.check_command_scope(command)
|
34
|
-
end
|
35
|
-
|
36
|
-
private
|
37
|
-
|
38
|
-
def rule
|
39
|
-
PROTECT.rule Contrast::Agent::Protect::Rule::Deserialization::NAME
|
40
|
-
end
|
41
|
-
|
42
|
-
def valid_input? args
|
43
|
-
return false unless args&.any?
|
44
|
-
|
45
|
-
input = args[0]
|
46
|
-
input.is_a?(String)
|
47
|
-
end
|
48
|
-
|
49
|
-
def skip_analysis?
|
50
|
-
context = Contrast::Agent::REQUEST_TRACKER.current
|
51
|
-
return true unless context&.app_loaded?
|
52
|
-
return true unless rule&.enabled?
|
53
|
-
|
54
|
-
false
|
55
|
-
end
|
56
|
-
end
|
57
|
-
end
|
58
|
-
end
|
59
|
-
end
|
60
|
-
end
|
@@ -1,83 +0,0 @@
|
|
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 CoreExtensions
|
8
|
-
module Protect
|
9
|
-
# This Module is how we apply the NoSQL Injection rule. It is called from
|
10
|
-
# our patches of the targeted methods in which the execution of String
|
11
|
-
# based NoSQL queries occur. It is responsible for deciding if the
|
12
|
-
# infilter methods of the rule should be invoked.
|
13
|
-
module AppliesNoSqliRule
|
14
|
-
DATABASE_MONGO = 'MongoDB'
|
15
|
-
ACTION_DISPATCH = 'dispatch'
|
16
|
-
ACTION_READ = 'read'
|
17
|
-
ACTION_WRITE = 'write'
|
18
|
-
ACTION_PROCESS = 'process'
|
19
|
-
|
20
|
-
class << self
|
21
|
-
include Contrast::Components::Interface
|
22
|
-
access_component :logging, :analysis
|
23
|
-
|
24
|
-
def apply_nosql_rule method, _exception, properties, _object, args
|
25
|
-
return unless valid_input?(args)
|
26
|
-
return if skip_analysis?
|
27
|
-
|
28
|
-
database = properties['database']
|
29
|
-
operations = args[0]
|
30
|
-
context = Contrast::Agent::REQUEST_TRACKER.current
|
31
|
-
if operations.is_a?(Array)
|
32
|
-
operations.each do |m|
|
33
|
-
handle_operation(context, database, method, m)
|
34
|
-
end
|
35
|
-
else
|
36
|
-
handle_operation(context, database, method, operations)
|
37
|
-
end
|
38
|
-
rescue Contrast::SecurityException => e
|
39
|
-
raise e
|
40
|
-
rescue StandardError => e
|
41
|
-
logger.error(e, "Error running NoSQLi rule in #{ properties['database'] }")
|
42
|
-
end
|
43
|
-
|
44
|
-
private
|
45
|
-
|
46
|
-
def rule
|
47
|
-
PROTECT.rule Contrast::Agent::Protect::Rule::NoSqli::NAME
|
48
|
-
end
|
49
|
-
|
50
|
-
def valid_input? args
|
51
|
-
return false unless args&.any?
|
52
|
-
|
53
|
-
args[0]
|
54
|
-
end
|
55
|
-
|
56
|
-
def skip_analysis?
|
57
|
-
context = Contrast::Agent::REQUEST_TRACKER.current
|
58
|
-
return true unless context&.app_loaded?
|
59
|
-
return true unless rule&.enabled?
|
60
|
-
|
61
|
-
false
|
62
|
-
end
|
63
|
-
|
64
|
-
def handle_operation context, database, action, operation
|
65
|
-
data = extract_mongo_data(operation)
|
66
|
-
return unless data && !data.empty?
|
67
|
-
|
68
|
-
logger.debug(nil, "applying nosqli rule #{ database }##{ action }")
|
69
|
-
rule.infilter(context, database, data)
|
70
|
-
end
|
71
|
-
|
72
|
-
def extract_mongo_data operation
|
73
|
-
if operation.cs__respond_to? :selector
|
74
|
-
operation.selector
|
75
|
-
elsif operation.cs__respond_to? :documents
|
76
|
-
operation.documents
|
77
|
-
end
|
78
|
-
end
|
79
|
-
end
|
80
|
-
end
|
81
|
-
end
|
82
|
-
end
|
83
|
-
end
|
@@ -1,123 +0,0 @@
|
|
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/utils/object_share'
|
5
|
-
cs__scoped_require 'contrast/components/interface'
|
6
|
-
|
7
|
-
module Contrast
|
8
|
-
module CoreExtensions
|
9
|
-
module Protect
|
10
|
-
# This Module is how we apply the Path Traversal rule. It is called from
|
11
|
-
# our patches of the targeted methods in which File or IO access occur.
|
12
|
-
# It is responsible for deciding if the infilter methods of the rule
|
13
|
-
# should be invoked.
|
14
|
-
module AppliesPathTraversalRule
|
15
|
-
include Contrast::Components::Interface
|
16
|
-
|
17
|
-
access_component :logging, :analysis
|
18
|
-
|
19
|
-
class << self
|
20
|
-
def apply_path_traversal_rule method, _exception, properties, _object, args
|
21
|
-
return unless args&.any?
|
22
|
-
|
23
|
-
path = args[0]
|
24
|
-
return unless path.is_a?(String)
|
25
|
-
return if skip_analysis?
|
26
|
-
|
27
|
-
action = properties['action']
|
28
|
-
write_marker = write?(action, *args)
|
29
|
-
possible_write = write_marker && possible_write(write_marker)
|
30
|
-
path_traversal_rule(path, possible_write, method)
|
31
|
-
|
32
|
-
# If the action was copy, we need to handle the write half of it.
|
33
|
-
# We handled read in line above.
|
34
|
-
return unless action == COPY
|
35
|
-
return unless args.length > 1
|
36
|
-
|
37
|
-
dst = args[1]
|
38
|
-
return unless dst.is_a?(String)
|
39
|
-
|
40
|
-
path_traversal_rule(dst, true, method)
|
41
|
-
end
|
42
|
-
|
43
|
-
private
|
44
|
-
|
45
|
-
def rule
|
46
|
-
PROTECT.rule Contrast::Agent::Protect::Rule::PathTraversal::NAME
|
47
|
-
end
|
48
|
-
|
49
|
-
def possible_write input
|
50
|
-
input.cs__respond_to?(:to_s) &&
|
51
|
-
input.to_s.include?(Contrast::Utils::ObjectShare::WRITE_FLAG)
|
52
|
-
end
|
53
|
-
|
54
|
-
def skip_analysis?
|
55
|
-
context = Contrast::Agent::REQUEST_TRACKER.current
|
56
|
-
return true unless context&.app_loaded?
|
57
|
-
return true unless rule&.enabled?
|
58
|
-
|
59
|
-
false
|
60
|
-
end
|
61
|
-
|
62
|
-
READ = 'read'
|
63
|
-
WRITE = 'write'
|
64
|
-
COPY = 'copy'
|
65
|
-
def write? action, *args
|
66
|
-
return false if action == READ
|
67
|
-
return false if action == COPY
|
68
|
-
return true if action == WRITE
|
69
|
-
|
70
|
-
write_marker = args.length > 1 ? args[1] : nil
|
71
|
-
write_marker && possible_write(write_marker)
|
72
|
-
end
|
73
|
-
|
74
|
-
def path_traversal_rule path, possible_write, method
|
75
|
-
return unless applies_to?(path, possible_write)
|
76
|
-
|
77
|
-
logger.debug(nil, "checking path traversal: write=true path=#{ path }")
|
78
|
-
rule.infilter(Contrast::Agent::REQUEST_TRACKER.current, method, path)
|
79
|
-
rescue Contrast::SecurityException => e
|
80
|
-
raise e
|
81
|
-
rescue StandardError => e
|
82
|
-
logger.error(e, 'path traversal')
|
83
|
-
end
|
84
|
-
|
85
|
-
CS__SAFER_REL_PATHS = %w[public app log tmp].cs__freeze
|
86
|
-
def safer_abs_paths
|
87
|
-
@_safer_abs_paths ||= begin
|
88
|
-
pwd = ENV['PWD']
|
89
|
-
if pwd
|
90
|
-
tmp = CS__SAFER_REL_PATHS.map { |r| "#{ pwd }/#{ r }" }
|
91
|
-
gems = ENV['GEM_PATH']
|
92
|
-
tmp += gems.split(Contrast::Utils::ObjectShare::COLON) if gems
|
93
|
-
tmp
|
94
|
-
else
|
95
|
-
[]
|
96
|
-
end
|
97
|
-
end
|
98
|
-
end
|
99
|
-
|
100
|
-
def applies_to? path, possible_write = false
|
101
|
-
# any possible write is a potential risk
|
102
|
-
return true if possible_write
|
103
|
-
|
104
|
-
# any path that moves 'up' is a potential risk
|
105
|
-
return true if path.index(Contrast::Utils::ObjectShare::PARENT_PATH)
|
106
|
-
|
107
|
-
path = path.downcase
|
108
|
-
if path.start_with?(Contrast::Utils::ObjectShare::SLASH)
|
109
|
-
safer_abs_paths.each do |prefix|
|
110
|
-
return false if path.start_with?(prefix)
|
111
|
-
end
|
112
|
-
else
|
113
|
-
CS__SAFER_REL_PATHS.each do |prefix|
|
114
|
-
return false if path.start_with?(prefix)
|
115
|
-
end
|
116
|
-
end
|
117
|
-
true
|
118
|
-
end
|
119
|
-
end
|
120
|
-
end
|
121
|
-
end
|
122
|
-
end
|
123
|
-
end
|
@@ -1,65 +0,0 @@
|
|
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/utils/data_store_util'
|
6
|
-
|
7
|
-
module Contrast
|
8
|
-
module CoreExtensions
|
9
|
-
module Protect
|
10
|
-
# This Module is how we apply the SQL Injection rule. It is called from
|
11
|
-
# our patches of the targeted methods in which the execution of String
|
12
|
-
# based SQL queries occur. It is responsible for deciding if the infilter
|
13
|
-
# methods of the rule should be invoked.
|
14
|
-
module AppliesSqliRule
|
15
|
-
DATABASE_MYSQL = 'MySQL'
|
16
|
-
DATABASE_SQLITE = 'SQLite3'
|
17
|
-
DATABASE_PG = 'PostgreSQL'
|
18
|
-
|
19
|
-
class << self
|
20
|
-
include Contrast::Components::Interface
|
21
|
-
|
22
|
-
access_component :logging, :analysis
|
23
|
-
|
24
|
-
def apply_sql_rule method, _exception, properties, object, args
|
25
|
-
database = properties['database']
|
26
|
-
return unless database
|
27
|
-
|
28
|
-
index = properties[Contrast::Utils::ObjectShare::INDEX]
|
29
|
-
return unless valid_input?(index, args)
|
30
|
-
return if skip_analysis?
|
31
|
-
|
32
|
-
sql = args[index]
|
33
|
-
logger.debug(nil, "applying sqli rule on #{ object } for #{ method }")
|
34
|
-
rule.infilter(Contrast::Agent::REQUEST_TRACKER.current, database, sql)
|
35
|
-
rescue Contrast::SecurityException => e
|
36
|
-
raise e
|
37
|
-
rescue StandardError => e
|
38
|
-
logger.error(e, "Error running SQLi rule in #{ object }")
|
39
|
-
end
|
40
|
-
|
41
|
-
private
|
42
|
-
|
43
|
-
def rule
|
44
|
-
PROTECT.rule Contrast::Agent::Protect::Rule::Sqli::NAME
|
45
|
-
end
|
46
|
-
|
47
|
-
def valid_input? index, args
|
48
|
-
return false unless args && args.length > index
|
49
|
-
|
50
|
-
sql = args[index]
|
51
|
-
sql && !sql.empty?
|
52
|
-
end
|
53
|
-
|
54
|
-
def skip_analysis?
|
55
|
-
context = Contrast::Agent::REQUEST_TRACKER.current
|
56
|
-
return true unless context&.app_loaded?
|
57
|
-
return true unless rule&.enabled?
|
58
|
-
|
59
|
-
false
|
60
|
-
end
|
61
|
-
end
|
62
|
-
end
|
63
|
-
end
|
64
|
-
end
|
65
|
-
end
|