contrast-agent 3.10.2 → 3.13.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.dockerignore +0 -1
- data/.flayignore +1 -0
- data/.gitignore +1 -1
- data/.simplecov +5 -2
- data/Rakefile +31 -0
- data/ext/build_funchook.rb +13 -19
- 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 +6 -11
- data/ext/cs__assess_fiber_track/cs__assess_fiber_track.h +3 -4
- 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 +3 -8
- 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.c +1 -5
- data/ext/cs__assess_yield_track/cs__assess_yield_track.h +1 -2
- data/ext/cs__assess_yield_track/extconf.rb +3 -0
- data/ext/cs__common/cs__common.c +104 -1
- data/ext/cs__common/cs__common.h +37 -0
- data/ext/cs__common/extconf.rb +3 -16
- 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 +3 -29
- data/lib/contrast.rb +4 -2
- data/lib/contrast/agent.rb +46 -31
- data/lib/contrast/agent/assess.rb +1 -11
- data/lib/contrast/agent/assess/contrast_event.rb +39 -224
- data/lib/contrast/agent/assess/events/event_factory.rb +25 -0
- data/lib/contrast/agent/assess/events/source_event.rb +79 -0
- data/lib/contrast/agent/assess/insulator.rb +0 -4
- data/lib/contrast/agent/assess/policy/dynamic_source_factory.rb +1 -1
- data/lib/contrast/agent/assess/policy/patcher.rb +6 -2
- data/lib/contrast/agent/assess/policy/policy_node.rb +5 -106
- 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 +69 -35
- data/lib/contrast/agent/assess/policy/propagation_node.rb +7 -2
- data/lib/contrast/agent/assess/policy/propagator.rb +1 -0
- data/lib/contrast/agent/assess/policy/propagator/base.rb +1 -1
- 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/insert.rb +1 -4
- data/lib/contrast/agent/assess/policy/propagator/match_data.rb +88 -0
- data/lib/contrast/agent/assess/policy/propagator/remove.rb +6 -11
- data/lib/contrast/agent/assess/policy/propagator/select.rb +35 -22
- data/lib/contrast/agent/assess/policy/propagator/split.rb +28 -8
- data/lib/contrast/agent/assess/policy/propagator/substitution.rb +6 -4
- data/lib/contrast/agent/assess/policy/propagator/trim.rb +6 -10
- data/lib/contrast/agent/assess/policy/rewriter_patch.rb +37 -26
- data/lib/contrast/agent/assess/policy/source_method.rb +21 -22
- 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 +29 -52
- data/lib/contrast/agent/assess/policy/trigger_node.rb +23 -11
- data/lib/contrast/agent/assess/policy/trigger_validation/ssrf_validator.rb +2 -31
- data/lib/contrast/agent/assess/properties.rb +4 -380
- data/lib/contrast/agent/assess/property/evented.rb +78 -0
- data/lib/contrast/agent/assess/property/tagged.rb +339 -0
- data/lib/contrast/agent/assess/rule/base.rb +1 -20
- data/lib/contrast/agent/assess/rule/provider/hardcoded_value_rule.rb +6 -7
- data/lib/contrast/agent/assess/rule/redos.rb +4 -5
- data/lib/contrast/agent/assess/tag.rb +51 -26
- data/lib/contrast/agent/at_exit_hook.rb +18 -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 +9 -50
- data/lib/contrast/agent/inventory/policy/datastores.rb +53 -0
- data/lib/contrast/agent/inventory/policy/policy.rb +1 -1
- data/lib/contrast/agent/middleware.rb +95 -266
- 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 +10 -10
- data/lib/contrast/agent/patching/policy/policy_node.rb +5 -13
- 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 +38 -68
- data/lib/contrast/agent/protect/rule/base_service.rb +4 -2
- 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 +4 -9
- 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 +11 -4
- data/lib/contrast/agent/railtie.rb +3 -8
- data/lib/contrast/agent/reaction_processor.rb +7 -7
- data/lib/contrast/agent/request.rb +93 -339
- data/lib/contrast/agent/request_context.rb +27 -30
- data/lib/contrast/agent/request_handler.rb +35 -0
- data/lib/contrast/agent/response.rb +22 -100
- data/lib/contrast/agent/rewriter.rb +22 -10
- data/lib/contrast/agent/rule_set.rb +49 -0
- data/lib/contrast/agent/scope.rb +1 -7
- data/lib/contrast/agent/service_heartbeat.rb +9 -12
- data/lib/contrast/agent/static_analysis.rb +41 -0
- data/lib/contrast/agent/thread.rb +1 -1
- data/lib/contrast/agent/thread_watcher.rb +49 -0
- data/lib/contrast/agent/tracepoint_hook.rb +1 -5
- data/lib/contrast/agent/version.rb +1 -1
- data/lib/contrast/agent/worker_thread.rb +24 -0
- data/lib/contrast/api.rb +4 -6
- data/lib/contrast/api/communication.rb +20 -0
- data/lib/contrast/api/communication/connection_status.rb +41 -0
- data/lib/contrast/api/communication/messaging_queue.rb +79 -0
- data/lib/contrast/api/communication/response_processor.rb +77 -0
- data/lib/contrast/api/communication/service_lifecycle.rb +61 -0
- data/lib/contrast/api/communication/socket.rb +45 -0
- data/lib/contrast/api/communication/socket_client.rb +76 -0
- data/lib/contrast/api/communication/speedracer.rb +111 -0
- data/lib/contrast/api/communication/tcp_socket.rb +31 -0
- data/lib/contrast/api/communication/unix_socket.rb +27 -0
- data/lib/contrast/api/decorators.rb +24 -0
- data/lib/contrast/api/decorators/address.rb +60 -0
- data/lib/contrast/api/decorators/application_settings.rb +41 -0
- data/lib/contrast/api/decorators/application_update.rb +57 -0
- data/lib/contrast/api/decorators/http_request.rb +139 -0
- data/lib/contrast/api/decorators/input_analysis.rb +17 -0
- data/lib/contrast/api/decorators/message.rb +75 -0
- data/lib/contrast/api/decorators/rasp_rule_sample.rb +28 -0
- data/lib/contrast/api/decorators/route_coverage.rb +57 -0
- data/lib/contrast/api/decorators/server_features.rb +24 -0
- data/lib/contrast/api/decorators/trace_event.rb +99 -0
- data/lib/contrast/api/decorators/trace_event_object.rb +57 -0
- data/lib/contrast/api/decorators/trace_event_signature.rb +46 -0
- data/lib/contrast/api/decorators/trace_taint_range.rb +51 -0
- data/lib/contrast/api/decorators/trace_taint_range_tags.rb +109 -0
- data/lib/contrast/api/decorators/user_input.rb +40 -0
- data/lib/contrast/components/agent.rb +34 -24
- data/lib/contrast/components/app_context.rb +39 -39
- data/lib/contrast/components/assess.rb +25 -15
- data/lib/contrast/components/config.rb +11 -14
- data/lib/contrast/components/contrast_service.rb +23 -71
- data/lib/contrast/components/heap_dump.rb +12 -8
- data/lib/contrast/components/interface.rb +16 -23
- 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 +36 -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 -16
- data/lib/contrast/extension/assess/array.rb +77 -0
- data/lib/contrast/{extensions/ruby_core → extension}/assess/assess_extension.rb +28 -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 +19 -11
- data/lib/contrast/{extensions/ruby_core → extension}/delegator.rb +0 -0
- data/lib/contrast/{extensions/ruby_core → extension}/inventory.rb +2 -3
- 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 +28 -19
- data/lib/contrast/framework/manager.rb +57 -15
- 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 +41 -0
- data/lib/contrast/framework/rails/patch/assess_configuration.rb +102 -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 +86 -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 +98 -0
- data/lib/contrast/funchook/funchook.rb +45 -0
- data/lib/contrast/logger/application.rb +80 -0
- data/lib/contrast/logger/format.rb +51 -0
- data/lib/contrast/logger/log.rb +149 -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 +51 -20
- data/lib/contrast/utils/boolean_util.rb +2 -2
- 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 +13 -13
- data/lib/contrast/utils/heap_dump_util.rb +12 -11
- data/lib/contrast/utils/invalid_configuration_util.rb +3 -19
- data/lib/contrast/utils/inventory_util.rb +4 -9
- 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 -29
- data/lib/contrast/utils/os.rb +16 -28
- data/lib/contrast/utils/stack_trace_utils.rb +85 -182
- data/lib/contrast/utils/string_utils.rb +18 -2
- data/lib/contrast/utils/tag_util.rb +12 -2
- data/lib/contrast/utils/thread_tracker.rb +1 -14
- data/lib/contrast/utils/timer.rb +1 -57
- 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 +14 -7
- data/service_executables/VERSION +1 -1
- data/service_executables/linux/contrast-service +0 -0
- data/service_executables/mac/contrast-service +0 -0
- metadata +153 -164
- 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/Makefile +0 -29
- data/funchook/autom4te.cache/output.0 +0 -4976
- data/funchook/autom4te.cache/requests +0 -78
- data/funchook/autom4te.cache/traces.0 +0 -364
- data/funchook/config.log +0 -490
- data/funchook/config.status +0 -1016
- data/funchook/configure +0 -4976
- data/funchook/src/Makefile +0 -70
- data/funchook/src/config.h +0 -101
- data/funchook/src/config.h.in +0 -100
- 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.so +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 +0 -43
- data/funchook/test/funchook_test +0 -0
- data/funchook/test/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/agent/assess/adjusted_span.rb +0 -25
- 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/agent/socket_client.rb +0 -128
- data/lib/contrast/api/connection_status.rb +0 -49
- data/lib/contrast/api/socket.rb +0 -43
- data/lib/contrast/api/speedracer.rb +0 -184
- data/lib/contrast/api/tcp_socket.rb +0 -31
- data/lib/contrast/api/unix_socket.rb +0 -25
- 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/framework/view_technologies_descriptor.rb +0 -20
- data/lib/contrast/internal_exception.rb +0 -8
- data/lib/contrast/utils/cache.rb +0 -69
- 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/lib/contrast/utils/service_response_util.rb +0 -110
- data/lib/contrast/utils/service_sender_util.rb +0 -106
- data/lib/contrast/utils/sinatra_helper.rb +0 -55
- 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,35 +1,66 @@
|
|
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/components/interface'
|
5
|
+
|
4
6
|
module Contrast
|
5
7
|
module Utils
|
6
8
|
module Assess
|
7
9
|
# TrackingUtil has methods for determining if a object is being tracked
|
8
10
|
class TrackingUtil
|
9
|
-
|
10
|
-
return false if obj.nil?
|
11
|
+
include Contrast::Components::Interface
|
11
12
|
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
13
|
+
access_component :logging
|
14
|
+
|
15
|
+
class << self
|
16
|
+
# Public interface to our tracking check, isolating the internals
|
17
|
+
# required for recursion.
|
18
|
+
#
|
19
|
+
# @param obj [Object] the thing to check if tracked
|
20
|
+
# @return [Boolean] if the obj, or something in it if a collection, is
|
21
|
+
# tracked.
|
22
|
+
def tracked? obj
|
23
|
+
_tracked?(obj, 0)
|
24
|
+
end
|
25
|
+
|
26
|
+
private
|
27
|
+
|
28
|
+
# Sometimes things are nested inside of each other, such as an Array
|
29
|
+
# holding a Hash, holding that Array. In those cases, rather than
|
30
|
+
# entering an infinite loop, we'll break out.
|
31
|
+
# Right now, that level of nesting has been arbitrarily set to 10.
|
32
|
+
#
|
33
|
+
# @param obj [Object] the thing to check if tracked
|
34
|
+
# @param idx [Integer] the number of levels nested we've gone
|
35
|
+
# @return [Boolean] if the obj, or something in it if a collection, is
|
36
|
+
# tracked.
|
37
|
+
def _tracked? obj, idx
|
38
|
+
return false if obj.nil?
|
39
|
+
return false if idx > 10
|
40
|
+
|
41
|
+
idx += 1
|
42
|
+
if Contrast::Utils::DuckUtils.iterable_hash?(obj)
|
43
|
+
obj.each_pair do |k, v|
|
44
|
+
return true if _tracked?(k, idx)
|
45
|
+
return true if _tracked?(v, idx)
|
46
|
+
end
|
47
|
+
false
|
48
|
+
elsif Contrast::Utils::DuckUtils.iterable_enumerable?(obj)
|
49
|
+
obj.any? do |ele|
|
50
|
+
_tracked?(ele, idx) unless obj == ele
|
51
|
+
end
|
52
|
+
elsif Contrast::Utils::DuckUtils.quacks_to?(obj, :cs__tracked?)
|
53
|
+
obj.cs__tracked?
|
54
|
+
else
|
55
|
+
false
|
21
56
|
end
|
22
|
-
|
23
|
-
|
24
|
-
|
57
|
+
rescue StandardError => e
|
58
|
+
# This is used to ask if a ton of objects are tracked. They may not
|
59
|
+
# all be iterable. Bad things could happen in some cases, like when
|
60
|
+
# checking a closed statement for SQL injection trigger events
|
61
|
+
logger.warn('Failed to determine tracking', e, module: obj.cs__class)
|
25
62
|
false
|
26
63
|
end
|
27
|
-
rescue StandardError => e
|
28
|
-
# This is used to ask if a ton of objects are tracked. They may not
|
29
|
-
# all be iterable. Bad things could happen in some cases, like when
|
30
|
-
# checking a closed statement for SQL injection trigger events
|
31
|
-
logger.warn("#{ e } trying to TrackingUtil.tracked? on object of class #{ obj.cs__class }.")
|
32
|
-
false
|
33
64
|
end
|
34
65
|
end
|
35
66
|
end
|
@@ -10,17 +10,17 @@ module Contrast
|
|
10
10
|
class BooleanUtil
|
11
11
|
class << self
|
12
12
|
def false? config
|
13
|
-
return false unless config
|
14
13
|
return false if config == true
|
15
14
|
return true if config == false
|
15
|
+
return false unless config.cs__is_a?(String)
|
16
16
|
|
17
17
|
Contrast::Utils::ObjectShare::FALSE.casecmp?(config)
|
18
18
|
end
|
19
19
|
|
20
20
|
def true? config
|
21
|
-
return false unless config
|
22
21
|
return false if config == false
|
23
22
|
return true if config == true
|
23
|
+
return false unless config.cs__is_a?(String)
|
24
24
|
|
25
25
|
Contrast::Utils::ObjectShare::TRUE.casecmp?(config)
|
26
26
|
end
|
@@ -1,7 +1,8 @@
|
|
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/
|
4
|
+
cs__scoped_require 'contrast/extension/module'
|
5
|
+
cs__scoped_require 'contrast/utils/object_share'
|
5
6
|
|
6
7
|
module Contrast
|
7
8
|
module Utils
|
@@ -55,8 +56,11 @@ module Contrast
|
|
55
56
|
# @return [String] the human readable form of the String, as defined by
|
56
57
|
# https://bitbucket.org/contrastsecurity/assess-specifications/src/master/vulnerability/capture-snapshot.md
|
57
58
|
def to_contrast_string object
|
58
|
-
if
|
59
|
-
|
59
|
+
# Only treat object like a string if it actually is a string
|
60
|
+
# some subclasses of String override string methods we depend on
|
61
|
+
if object.cs__class == String
|
62
|
+
cached = to_cached_string(object)
|
63
|
+
return cached if cached
|
60
64
|
|
61
65
|
object.dup
|
62
66
|
elsif object.cs__is_a?(Symbol)
|
@@ -65,6 +69,8 @@ module Contrast
|
|
65
69
|
object.to_s
|
66
70
|
elsif object.cs__is_a?(Module) || object.cs__is_a?(Class)
|
67
71
|
"#{ object.cs__name }@#{ object.__id__ }"
|
72
|
+
elsif object.cs__is_a?(Regexp)
|
73
|
+
object.source
|
68
74
|
else
|
69
75
|
"#{ object.cs__class.cs__name }@#{ object.__id__ }"
|
70
76
|
end
|
@@ -107,6 +113,21 @@ module Contrast
|
|
107
113
|
|
108
114
|
mod
|
109
115
|
end
|
116
|
+
|
117
|
+
# If the String matches a common String in our ObjectShare, return that
|
118
|
+
# rather that for use as the representation of the String rather than
|
119
|
+
# forcing a duplication of the String.
|
120
|
+
#
|
121
|
+
# @param string [String] some string of which we want a Contrast
|
122
|
+
# representation.
|
123
|
+
# @return [String,nil] the ObjectShare version of the String or nil
|
124
|
+
def to_cached_string string
|
125
|
+
return Contrast::Utils::ObjectShare::EMPTY_STRING if string.empty?
|
126
|
+
return Contrast::Utils::ObjectShare::SLASH if string == Contrast::Utils::ObjectShare::SLASH
|
127
|
+
return Contrast::Utils::ObjectShare::EQUALS if string == Contrast::Utils::ObjectShare::EQUALS
|
128
|
+
|
129
|
+
nil
|
130
|
+
end
|
110
131
|
end
|
111
132
|
end
|
112
133
|
end
|
@@ -15,7 +15,7 @@ module Contrast
|
|
15
15
|
include Singleton
|
16
16
|
include Contrast::Components::Interface
|
17
17
|
|
18
|
-
access_component :logging
|
18
|
+
access_component :config, :logging
|
19
19
|
|
20
20
|
CONTRAST_AGENT = 'contrast-agent'
|
21
21
|
|
@@ -55,9 +55,10 @@ module Contrast
|
|
55
55
|
paths = get_by_digest(digest)
|
56
56
|
path = spec.full_gem_path
|
57
57
|
$LOADED_FEATURES.each do |line|
|
58
|
-
next unless line.
|
58
|
+
next unless line.cs__is_a?(String)
|
59
|
+
next unless line.start_with?(path)
|
59
60
|
|
60
|
-
|
61
|
+
logger.trace('Recording loaded gem for inventory analysis', line: line)
|
61
62
|
updated!
|
62
63
|
paths << adjust_lib(line)
|
63
64
|
end
|
@@ -91,11 +92,11 @@ module Contrast
|
|
91
92
|
usage = Contrast::Api::Dtm::LibraryUsageUpdate.new
|
92
93
|
usage.hash_code = Contrast::Utils::StringUtils.force_utf8(digest)
|
93
94
|
activity.library_usages[usage.hash_code] = usage if activity
|
94
|
-
# TODO:
|
95
|
+
# TODO: RUBY-882 once TS switches to take filenames, remove the count setter and
|
95
96
|
# send the class names in usage.class_names
|
96
97
|
usage.count = files.size
|
97
98
|
end
|
98
|
-
# TODO:
|
99
|
+
# TODO: RUBY-882 once TS switches to take filenames, clear this and remove the
|
99
100
|
# @updated variable
|
100
101
|
|
101
102
|
# @spec_to_files.clear
|
@@ -137,6 +138,7 @@ module Contrast
|
|
137
138
|
lib.external_ms = date_to_ms(spec.date)
|
138
139
|
lib.internal_ms = lib.external_ms
|
139
140
|
lib.url = Contrast::Utils::StringUtils.force_utf8(spec.homepage)
|
141
|
+
# Library tags are appended in the ApplicationUpdate delegator
|
140
142
|
update_class_counts(lib, digest, spec)
|
141
143
|
lib
|
142
144
|
end
|
@@ -32,8 +32,8 @@ module Contrast
|
|
32
32
|
request.parameters.each_key do |name|
|
33
33
|
hash.update(name)
|
34
34
|
end
|
35
|
-
cl = request.
|
36
|
-
hash.
|
35
|
+
cl = request.headers[CONTENT_LENGTH_HEADER]
|
36
|
+
hash.update_on_content_length(cl) if cl
|
37
37
|
hash.finish
|
38
38
|
end
|
39
39
|
|
@@ -69,6 +69,8 @@ module Contrast
|
|
69
69
|
hash.finish
|
70
70
|
end
|
71
71
|
|
72
|
+
private
|
73
|
+
|
72
74
|
def generate_crypto_hash finding, algorithm
|
73
75
|
hash = new
|
74
76
|
hash.update(finding.rule_id)
|
@@ -85,13 +87,6 @@ module Contrast
|
|
85
87
|
hash.finish
|
86
88
|
end
|
87
89
|
|
88
|
-
def generate_response_hash finding
|
89
|
-
hash = new
|
90
|
-
hash.update(finding.rule_id)
|
91
|
-
hash.update_on_request
|
92
|
-
hash.finish
|
93
|
-
end
|
94
|
-
|
95
90
|
def generate_trigger_hash finding
|
96
91
|
hash = new
|
97
92
|
hash.update(finding.rule_id)
|
@@ -126,6 +121,15 @@ module Contrast
|
|
126
121
|
end
|
127
122
|
end
|
128
123
|
|
124
|
+
CHARS = %w[a b c d e f g].cs__freeze
|
125
|
+
# This method converts and integer value for length into a string value
|
126
|
+
# that we can hash on, based on the logarithmic value of the length, and
|
127
|
+
# updates the current hash with that value.
|
128
|
+
# @param chr [Numeric] the length to translate
|
129
|
+
def update_on_content_length chr
|
130
|
+
update(CHARS[Math.log10(chr.to_s.length).to_i] || CHARS[-1])
|
131
|
+
end
|
132
|
+
|
129
133
|
def initialize
|
130
134
|
@crc32 = 0
|
131
135
|
end
|
@@ -136,10 +140,6 @@ module Contrast
|
|
136
140
|
@crc32 = Zlib.crc32(str, @crc32)
|
137
141
|
end
|
138
142
|
|
139
|
-
def reset
|
140
|
-
@crc32 = 0
|
141
|
-
end
|
142
|
-
|
143
143
|
def finish
|
144
144
|
@crc32.to_s
|
145
145
|
end
|
@@ -9,7 +9,7 @@ module Contrast
|
|
9
9
|
# Implementation of a heap dump util to automate generation
|
10
10
|
class HeapDumpUtil
|
11
11
|
include Contrast::Components::Interface
|
12
|
-
access_component :
|
12
|
+
access_component :heap_dump, :logging
|
13
13
|
|
14
14
|
LOG_ERROR_DUMPS = 'Unable to generate heap dumps'
|
15
15
|
FILE_WRITE_FLAGS = 'w'
|
@@ -25,12 +25,13 @@ module Contrast
|
|
25
25
|
|
26
26
|
delay = heap_dump_control[:delay]
|
27
27
|
Contrast::Agent::Thread.new do
|
28
|
-
logger.info("HEAP DUMP THREAD INITIALIZED.
|
28
|
+
logger.info("HEAP DUMP THREAD INITIALIZED. WAITING #{ delay } SECONDS TO BEGIN.")
|
29
29
|
sleep(delay)
|
30
30
|
capture_heap_dump
|
31
31
|
end
|
32
32
|
rescue StandardError => e
|
33
33
|
logger.info(LOG_ERROR_DUMPS, e)
|
34
|
+
nil
|
34
35
|
end
|
35
36
|
|
36
37
|
def log_enabled_warning
|
@@ -79,21 +80,21 @@ module Contrast
|
|
79
80
|
window = heap_dump_control[:window]
|
80
81
|
count = heap_dump_control[:count]
|
81
82
|
clean = heap_dump_control[:clean]
|
82
|
-
logger.info(
|
83
|
+
logger.info('HEAP DUMP MAIN LOOP')
|
83
84
|
ObjectSpace.trace_object_allocations_start
|
84
85
|
count.times do |i|
|
85
|
-
logger.info(
|
86
|
+
logger.info('STARTING HEAP DUMP PASS', current_pass: i + 1, max: count)
|
86
87
|
output = "#{ Time.now.to_f }-heap.dump"
|
87
88
|
output = File.join(dir, output)
|
88
89
|
begin
|
89
|
-
logger.info(
|
90
|
+
logger.info('OPENING HEADUMP FILE', dir: dir, file: output)
|
90
91
|
file = File.new(output, FILE_WRITE_FLAGS)
|
91
92
|
if clean
|
92
|
-
logger.info(
|
93
|
+
logger.info('PERFORMING GARBAGE COLLECTION BEFORE HEAP DUMP')
|
93
94
|
GC.start
|
94
95
|
end
|
95
96
|
ObjectSpace.dump_all(output: file)
|
96
|
-
logger.info(
|
97
|
+
logger.info('FINISHING HEAP DUMP PASS', current_pass: i + 1, max: count)
|
97
98
|
ensure
|
98
99
|
file.close
|
99
100
|
end
|
@@ -101,10 +102,10 @@ module Contrast
|
|
101
102
|
end
|
102
103
|
ensure
|
103
104
|
ObjectSpace.trace_object_allocations_stop
|
104
|
-
logger.info(
|
105
|
-
logger.info(
|
106
|
-
logger.info(
|
107
|
-
logger.info(
|
105
|
+
logger.info('*****************************************************')
|
106
|
+
logger.info('******** HEAP DUMP HAS CONCLUDED ********')
|
107
|
+
logger.info('*** APPLICATION PROCESS WILL EXIT SHORTLY ***')
|
108
|
+
logger.info('*****************************************************')
|
108
109
|
exit # We weren't kidding!
|
109
110
|
end
|
110
111
|
end
|
@@ -9,7 +9,7 @@ module Contrast
|
|
9
9
|
# customer applications, as determined by Configuration Rules at runtime.
|
10
10
|
module InvalidConfigurationUtil
|
11
11
|
include Contrast::Components::Interface
|
12
|
-
access_component :
|
12
|
+
access_component :analysis, :app_context, :logging
|
13
13
|
|
14
14
|
CS__PATH = 'path'
|
15
15
|
CS__SESSION_ID = 'sessionId'
|
@@ -44,29 +44,13 @@ module Contrast
|
|
44
44
|
activity = Contrast::Api::Dtm::Activity.new
|
45
45
|
activity.findings << finding
|
46
46
|
|
47
|
-
|
48
|
-
if ASSESS.enabled?
|
49
|
-
build_tags(activity)
|
50
|
-
CONTRAST_SERVICE.queue_message activity
|
51
|
-
# Otherwise, if the Agent isn't ready, we have to queue the messages
|
52
|
-
# until we know the starting state.
|
53
|
-
else
|
54
|
-
Contrast::Utils::ServiceSenderUtil.add_to_assess_messages activity
|
55
|
-
end
|
47
|
+
Contrast::Agent.messaging_queue.send_event_eventually(activity)
|
56
48
|
rescue StandardError => e
|
57
|
-
logger.error(
|
49
|
+
logger.error('Unable to build a finding', e, rule: rule_id)
|
58
50
|
end
|
59
51
|
|
60
52
|
private
|
61
53
|
|
62
|
-
# This seems silly to pull out, but we can ONLY call this in the case
|
63
|
-
# where we have a configuration. Doing otherwise results in a bad error
|
64
|
-
# case where we try to do other things, like logging, which behave
|
65
|
-
# strangely without a config
|
66
|
-
def build_tags activity
|
67
|
-
activity.finding_tags = Contrast::Utils::StringUtils.force_utf8(ASSESS.tags)
|
68
|
-
end
|
69
|
-
|
70
54
|
def file_snippet file_path, call_location
|
71
55
|
idx = call_location&.lineno
|
72
56
|
if file_path && idx && File.exist?(file_path)
|
@@ -18,18 +18,17 @@ module Contrast
|
|
18
18
|
AC_TYPE_DB = 'db'
|
19
19
|
# TeamServer only accepts certain values for FlowMap Services.
|
20
20
|
# DO NOT CHANGE THIS
|
21
|
-
DATABASE = 'Database'
|
22
21
|
ADAPTER = 'adapter'
|
23
22
|
HOST = 'host'
|
24
23
|
PORT = 'port'
|
25
|
-
|
24
|
+
DATABASE = 'database'
|
26
25
|
DEFAULT = 'default'
|
27
26
|
LOCALHOST = 'localhost'
|
28
27
|
|
29
28
|
def self.inventory_class class_path
|
30
29
|
Contrast::Utils::GemfileReader.instance.map_class(class_path)
|
31
30
|
rescue StandardError => e
|
32
|
-
logger.error(
|
31
|
+
logger.error('Unable to inventory module', e, path: class_path)
|
33
32
|
end
|
34
33
|
|
35
34
|
def self.active_record_config
|
@@ -42,7 +41,6 @@ module Contrast
|
|
42
41
|
arr = build_from_db_config(hash_or_str)
|
43
42
|
return unless arr&.any?
|
44
43
|
|
45
|
-
activity_or_update.technologies[DATABASE] = true
|
46
44
|
arr.each do |a|
|
47
45
|
next unless a
|
48
46
|
|
@@ -51,12 +49,9 @@ module Contrast
|
|
51
49
|
else
|
52
50
|
activity_or_update.components << a
|
53
51
|
end
|
54
|
-
next if a.vendor.empty?
|
55
|
-
|
56
|
-
activity_or_update.technologies[a.vendor] = true
|
57
52
|
end
|
58
53
|
rescue StandardError => e
|
59
|
-
logger.error(
|
54
|
+
logger.error('Unable to append db config', e)
|
60
55
|
nil
|
61
56
|
end
|
62
57
|
|
@@ -76,7 +71,7 @@ module Contrast
|
|
76
71
|
ac.remote_host = host_from_hash(hash)
|
77
72
|
ac.remote_port = port_from_hash(hash)
|
78
73
|
ac.type = AC_TYPE_DB
|
79
|
-
ac.url = hash[:database] || hash[
|
74
|
+
ac.url = hash[:database] || hash[DATABASE] || DEFAULT
|
80
75
|
[ac]
|
81
76
|
end
|
82
77
|
|
@@ -11,16 +11,6 @@ module Contrast
|
|
11
11
|
|
12
12
|
access_component :logging
|
13
13
|
|
14
|
-
# StringIO is a valid path because it logs directly to a string buffer
|
15
|
-
def self.write_permission? path
|
16
|
-
return false if path.nil?
|
17
|
-
return true if path.is_a?(StringIO)
|
18
|
-
return File.writable?(path) if File.exist?(path)
|
19
|
-
|
20
|
-
dir_name = File.dirname(File.absolute_path(path))
|
21
|
-
File.writable?(dir_name)
|
22
|
-
end
|
23
|
-
|
24
14
|
# We're only going to call rewind on things that we believe are safe to
|
25
15
|
# call it on. This method white lists those cases and returns false in
|
26
16
|
# all others.
|
@@ -30,7 +20,7 @@ module Contrast
|
|
30
20
|
|
31
21
|
should_rewind_io?(potential_io)
|
32
22
|
rescue StandardError => e
|
33
|
-
logger.debug(
|
23
|
+
logger.debug('Encountered an issue determining if rewindable', e, module: potential_io.cs__class.name)
|
34
24
|
false
|
35
25
|
end
|
36
26
|
|
@@ -7,17 +7,19 @@ module Contrast
|
|
7
7
|
# the application are running
|
8
8
|
module JobServersRunning
|
9
9
|
include Contrast::Components::Interface
|
10
|
-
access_component :logging
|
10
|
+
access_component :app_context, :logging
|
11
11
|
|
12
12
|
class << self
|
13
13
|
def job_servers_running?
|
14
14
|
sidekiq_running? || rake_running?
|
15
15
|
end
|
16
16
|
|
17
|
+
private
|
18
|
+
|
17
19
|
def sidekiq_running?
|
18
20
|
return unless defined?(Sidekiq) && Sidekiq.cs__respond_to?(:server?) && Sidekiq.server?
|
19
21
|
|
20
|
-
logger.
|
22
|
+
logger.trace('Detected the spawn of a Sidekiq process')
|
21
23
|
true
|
22
24
|
end
|
23
25
|
|
@@ -26,11 +28,11 @@ module Contrast
|
|
26
28
|
Rake.cs__respond_to?(:application) &&
|
27
29
|
Rake.application.cs__respond_to?(:top_level_tasks)
|
28
30
|
|
29
|
-
disabled_rake_tasks =
|
31
|
+
disabled_rake_tasks = APP_CONTEXT.disabled_agent_rake_tasks
|
30
32
|
has_disabled_task = Rake.application.top_level_tasks.any? { |top_level_task| disabled_rake_tasks.include?(top_level_task) }
|
31
33
|
return false unless has_disabled_task
|
32
34
|
|
33
|
-
logger.
|
35
|
+
logger.trace('Detected startup within Rake task')
|
34
36
|
true
|
35
37
|
end
|
36
38
|
end
|