contrast-agent 3.11.0 → 3.13.1
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 +1 -1
- data/Rakefile +31 -0
- data/ext/build_funchook.rb +0 -2
- data/ext/cs__assess_active_record_named/cs__active_record_named.c +7 -2
- data/ext/cs__assess_active_record_named/cs__active_record_named.h +1 -0
- data/ext/cs__assess_array/cs__assess_array.c +2 -1
- data/ext/cs__assess_array/cs__assess_array.h +1 -0
- data/ext/cs__assess_basic_object/cs__assess_basic_object.c +3 -7
- data/ext/cs__assess_basic_object/cs__assess_basic_object.h +2 -1
- data/ext/cs__assess_fiber_track/cs__assess_fiber_track.c +2 -8
- data/ext/cs__assess_fiber_track/cs__assess_fiber_track.h +0 -1
- data/ext/cs__assess_kernel/cs__assess_kernel.c +1 -1
- data/ext/cs__assess_module/cs__assess_module.c +5 -7
- data/ext/cs__assess_module/cs__assess_module.h +3 -0
- data/ext/cs__assess_string_interpolation26/cs__assess_string_interpolation26.c +1 -6
- data/ext/cs__assess_yield_track/cs__assess_yield_track.c +1 -5
- data/ext/cs__assess_yield_track/cs__assess_yield_track.h +0 -1
- data/ext/cs__common/cs__common.c +25 -1
- data/ext/cs__common/cs__common.h +3 -0
- data/ext/cs__common/extconf.rb +0 -14
- data/ext/cs__protect_kernel/cs__protect_kernel.c +4 -2
- data/ext/cs__protect_kernel/cs__protect_kernel.h +1 -0
- data/ext/extconf_common.rb +0 -28
- data/lib/contrast.rb +3 -2
- data/lib/contrast/agent.rb +33 -24
- data/lib/contrast/agent/assess.rb +0 -9
- data/lib/contrast/agent/assess/contrast_event.rb +28 -167
- data/lib/contrast/agent/assess/events/source_event.rb +3 -7
- data/lib/contrast/agent/assess/policy/dynamic_source_factory.rb +1 -1
- data/lib/contrast/agent/assess/policy/patcher.rb +1 -0
- data/lib/contrast/agent/assess/policy/policy_node.rb +5 -99
- data/lib/contrast/agent/assess/policy/policy_scanner.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagation_method.rb +4 -2
- data/lib/contrast/agent/assess/policy/propagation_node.rb +5 -1
- 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 +9 -1
- data/lib/contrast/agent/assess/policy/propagator/remove.rb +6 -11
- data/lib/contrast/agent/assess/policy/propagator/select.rb +4 -4
- data/lib/contrast/agent/assess/policy/propagator/split.rb +2 -2
- data/lib/contrast/agent/assess/policy/propagator/substitution.rb +4 -4
- data/lib/contrast/agent/assess/policy/propagator/trim.rb +6 -10
- data/lib/contrast/agent/assess/policy/source_method.rb +1 -2
- 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 +2 -14
- data/lib/contrast/agent/assess/policy/trigger_node.rb +20 -5
- data/lib/contrast/agent/assess/properties.rb +4 -382
- 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 +0 -15
- data/lib/contrast/agent/assess/rule/provider/hardcoded_value_rule.rb +5 -6
- data/lib/contrast/agent/assess/rule/redos.rb +0 -1
- data/lib/contrast/agent/assess/tag.rb +27 -12
- data/lib/contrast/agent/at_exit_hook.rb +4 -2
- data/lib/contrast/agent/class_reopener.rb +9 -4
- data/lib/contrast/agent/exclusion_matcher.rb +2 -3
- 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 +36 -44
- data/lib/contrast/agent/patching/policy/after_load_patch.rb +11 -2
- data/lib/contrast/agent/patching/policy/after_load_patcher.rb +51 -56
- data/lib/contrast/agent/patching/policy/patch.rb +3 -2
- data/lib/contrast/agent/patching/policy/patcher.rb +10 -12
- data/lib/contrast/agent/patching/policy/policy.rb +3 -3
- data/lib/contrast/agent/patching/policy/policy_node.rb +3 -3
- data/lib/contrast/agent/patching/policy/trigger_node.rb +1 -1
- 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 +25 -36
- data/lib/contrast/agent/protect/rule/base_service.rb +1 -1
- data/lib/contrast/agent/protect/rule/cmd_injection.rb +3 -3
- data/lib/contrast/agent/protect/rule/http_method_tampering.rb +2 -7
- data/lib/contrast/agent/protect/rule/path_traversal.rb +2 -7
- data/lib/contrast/agent/protect/rule/sqli.rb +4 -4
- data/lib/contrast/agent/protect/rule/xxe.rb +1 -0
- data/lib/contrast/agent/railtie.rb +1 -0
- data/lib/contrast/agent/reaction_processor.rb +3 -3
- data/lib/contrast/agent/request.rb +91 -334
- data/lib/contrast/agent/request_context.rb +17 -18
- data/lib/contrast/agent/request_handler.rb +2 -2
- data/lib/contrast/agent/response.rb +2 -83
- data/lib/contrast/agent/scope.rb +1 -1
- data/lib/contrast/agent/service_heartbeat.rb +8 -10
- data/lib/contrast/agent/static_analysis.rb +2 -3
- data/lib/contrast/agent/thread_watcher.rb +49 -0
- data/lib/contrast/agent/version.rb +1 -1
- data/lib/contrast/agent/worker_thread.rb +24 -0
- data/lib/contrast/api.rb +3 -5
- 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/{utils/service_response_util.rb → api/communication/response_processor.rb} +15 -22
- 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 +10 -0
- data/lib/contrast/api/decorators/address.rb +60 -0
- data/lib/contrast/api/decorators/application_settings.rb +7 -3
- data/lib/contrast/api/decorators/application_update.rb +0 -9
- data/lib/contrast/api/decorators/http_request.rb +139 -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/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 +17 -12
- data/lib/contrast/components/app_context.rb +27 -2
- data/lib/contrast/components/assess.rb +25 -15
- data/lib/contrast/components/config.rb +4 -9
- data/lib/contrast/components/contrast_service.rb +23 -67
- data/lib/contrast/components/interface.rb +5 -13
- data/lib/contrast/components/inventory.rb +5 -1
- data/lib/contrast/components/logger.rb +2 -2
- data/lib/contrast/components/protect.rb +40 -4
- data/lib/contrast/components/scope.rb +2 -52
- data/lib/contrast/components/settings.rb +18 -18
- 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 +3 -4
- data/lib/contrast/{extensions/ruby_core → extension}/assess/erb.rb +0 -0
- data/lib/contrast/extension/assess/eval_trigger.rb +78 -0
- data/lib/contrast/{extensions/ruby_core → extension}/assess/exec_trigger.rb +1 -1
- data/lib/contrast/{extensions/ruby_core → extension}/assess/fiber.rb +7 -6
- data/lib/contrast/{extensions/ruby_core → extension}/assess/hash.rb +2 -2
- data/lib/contrast/extension/assess/kernel.rb +110 -0
- data/lib/contrast/{extensions/ruby_core → extension}/assess/regexp.rb +4 -4
- data/lib/contrast/{extensions/ruby_core → extension}/assess/string.rb +6 -6
- 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 +22 -23
- data/lib/contrast/framework/manager.rb +31 -15
- 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/{agent/logger.rb → logger/log.rb} +39 -63
- data/lib/contrast/logger/time.rb +50 -0
- data/lib/contrast/tasks/config.rb +54 -0
- data/lib/contrast/tasks/service.rb +1 -5
- data/lib/contrast/utils/assess/tracking_util.rb +45 -20
- data/lib/contrast/utils/class_util.rb +4 -2
- data/lib/contrast/utils/gemfile_reader.rb +2 -2
- data/lib/contrast/utils/hash_digest.rb +13 -9
- data/lib/contrast/utils/invalid_configuration_util.rb +2 -18
- data/lib/contrast/utils/inventory_util.rb +2 -7
- data/lib/contrast/utils/job_servers_running.rb +4 -2
- data/lib/contrast/utils/object_share.rb +0 -2
- data/lib/contrast/utils/os.rb +16 -4
- data/lib/contrast/utils/stack_trace_utils.rb +0 -1
- data/lib/contrast/utils/tag_util.rb +1 -1
- data/lib/contrast/utils/thread_tracker.rb +1 -14
- data/lib/contrast/utils/timer.rb +1 -17
- data/resources/assess/policy.json +9 -50
- data/resources/inventory/policy.json +2 -2
- data/resources/protect/policy.json +6 -6
- data/ruby-agent.gemspec +9 -5
- data/service_executables/VERSION +1 -1
- data/service_executables/linux/contrast-service +0 -0
- data/service_executables/mac/contrast-service +0 -0
- metadata +103 -139
- data/funchook/Makefile +0 -29
- data/funchook/autom4te.cache/output.0 +0 -4964
- data/funchook/autom4te.cache/requests +0 -77
- data/funchook/autom4te.cache/traces.0 +0 -361
- data/funchook/config.log +0 -651
- data/funchook/config.status +0 -1015
- data/funchook/configure +0 -4964
- 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.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 +0 -43
- 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 +0 -20
- 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/agent/assess/adjusted_span.rb +0 -27
- 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 -53
- data/lib/contrast/agent/assess/rule/csrf/csrf_watcher.rb +0 -136
- 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 -346
- data/lib/contrast/agent/protect/rule/csrf.rb +0 -119
- data/lib/contrast/agent/protect/rule/csrf/csrf_evaluator.rb +0 -100
- data/lib/contrast/agent/protect/rule/csrf/csrf_token_injector.rb +0 -85
- data/lib/contrast/agent/settings_state.rb +0 -88
- data/lib/contrast/agent/socket_client.rb +0 -134
- data/lib/contrast/api/connection_status.rb +0 -49
- data/lib/contrast/api/decorators/exclusion.rb +0 -20
- data/lib/contrast/api/socket.rb +0 -43
- data/lib/contrast/api/speedracer.rb +0 -188
- data/lib/contrast/api/tcp_socket.rb +0 -29
- data/lib/contrast/api/unix_socket.rb +0 -25
- 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_inheritance.rb +0 -39
- 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 -58
- 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/kernel.rb +0 -96
- data/lib/contrast/extensions/ruby_core/assess/module.rb +0 -14
- data/lib/contrast/extensions/ruby_core/assess/tilt_template_trigger.rb +0 -78
- data/lib/contrast/extensions/ruby_core/assess/xpath_library_trigger.rb +0 -40
- data/lib/contrast/extensions/ruby_core/eval_trigger.rb +0 -51
- data/lib/contrast/extensions/ruby_core/inventory/datastores.rb +0 -37
- data/lib/contrast/extensions/ruby_core/protect/applies_command_injection_rule.rb +0 -61
- data/lib/contrast/extensions/ruby_core/protect/applies_deserialization_rule.rb +0 -50
- data/lib/contrast/extensions/ruby_core/protect/applies_no_sqli_rule.rb +0 -66
- data/lib/contrast/extensions/ruby_core/protect/applies_path_traversal_rule.rb +0 -115
- data/lib/contrast/extensions/ruby_core/protect/applies_sqli_rule.rb +0 -53
- data/lib/contrast/extensions/ruby_core/protect/applies_xxe_rule.rb +0 -127
- data/lib/contrast/extensions/ruby_core/protect/kernel.rb +0 -30
- data/lib/contrast/extensions/ruby_core/protect/rule_applicator.rb +0 -50
- data/lib/contrast/framework/rails_support.rb +0 -104
- data/lib/contrast/framework/sinatra_application_helper.rb +0 -49
- data/lib/contrast/framework/sinatra_support.rb +0 -104
- data/lib/contrast/framework/view_technologies_descriptor.rb +0 -21
- data/lib/contrast/internal_exception.rb +0 -8
- data/lib/contrast/utils/cache.rb +0 -58
- data/lib/contrast/utils/data_store_util.rb +0 -23
- 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_sender_util.rb +0 -110
- data/lib/contrast/utils/sinatra_helper.rb +0 -49
- data/resources/csrf/inject.js +0 -44
@@ -0,0 +1,24 @@
|
|
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/patching/policy/after_load_patch'
|
5
|
+
|
6
|
+
module Contrast
|
7
|
+
module Framework
|
8
|
+
module Rack
|
9
|
+
module Patch
|
10
|
+
# Extension point allowing for the registration of Patches required to
|
11
|
+
# support the Rack framework.
|
12
|
+
module Support
|
13
|
+
# (See BaseSupport#after_load_patches)
|
14
|
+
def after_load_patches
|
15
|
+
Set.new([Contrast::Agent::Patching::Policy::AfterLoadPatch.new(
|
16
|
+
'Rack::Session::Cookie',
|
17
|
+
'contrast/framework/rack/patch/session_cookie',
|
18
|
+
instrumenting_module: 'Contrast::Framework::Rack::Patch::SessionCookie')])
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,22 @@
|
|
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/framework/base_support'
|
5
|
+
cs__scoped_require 'contrast/framework/rack/patch/support'
|
6
|
+
|
7
|
+
module Contrast
|
8
|
+
module Framework
|
9
|
+
module Rack
|
10
|
+
# Used when Rack is present to define framework specific behavior. For
|
11
|
+
# now, the only part of this implemented is the Patch Support.
|
12
|
+
class Support < BaseSupport
|
13
|
+
extend Contrast::Framework::Rack::Patch::Support
|
14
|
+
class << self
|
15
|
+
def detection_class
|
16
|
+
'don\'t let me be detected'
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,41 @@
|
|
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 Framework
|
6
|
+
module Rails
|
7
|
+
module Patch
|
8
|
+
# This class acts as our patch into the ActionController::Live::Buffer
|
9
|
+
# class, allowing us to track the close event on streamed responses.
|
10
|
+
class ActionControllerLiveBuffer
|
11
|
+
class << self
|
12
|
+
def send_messages
|
13
|
+
return unless (context = Contrast::Agent::REQUEST_TRACKER.current)
|
14
|
+
|
15
|
+
[context.server_activity, context.activity, context.observed_route].each do |msg|
|
16
|
+
Contrast::Agent.messaging_queue.send_event_immediately(msg)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
def instrument
|
21
|
+
@_instrument ||= begin
|
22
|
+
::ActionController::Live::Buffer.class_eval do
|
23
|
+
# normally pre->in->post filters are applied however, in a streamed response
|
24
|
+
# we can run into a case where it's pre -> in -> post -> more infilters
|
25
|
+
# in order to submit anything found during the infilters after the response has
|
26
|
+
# been written we need to explicitly send them
|
27
|
+
alias_method :cs__close, :close
|
28
|
+
def close
|
29
|
+
Contrast::Framework::Rails::Patch::ActionControllerLiveBuffer.send_messages
|
30
|
+
cs__close
|
31
|
+
end
|
32
|
+
end
|
33
|
+
true
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
@@ -0,0 +1,102 @@
|
|
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/invalid_configuration_util'
|
6
|
+
|
7
|
+
module Contrast
|
8
|
+
module Framework
|
9
|
+
module Rails
|
10
|
+
module Patch
|
11
|
+
# This module is used to analyze rails session storage configuration for assess vulnerabilities
|
12
|
+
module AssessConfiguration
|
13
|
+
include Contrast::Components::Interface
|
14
|
+
|
15
|
+
access_component :agent, :analysis, :logging, :scope
|
16
|
+
|
17
|
+
CS__SESSION_TIMEOUT_NAME = 'session-timeout'
|
18
|
+
SAFE_SESSION_TIMEOUT = (30 * 60 * 1000)
|
19
|
+
CS__SECURE_RULE_NAME = 'secure-flag-missing'
|
20
|
+
CS__HTTPONLY_RULE_NAME = 'rails-http-only-disabled'
|
21
|
+
|
22
|
+
class << self
|
23
|
+
include Contrast::Utils::InvalidConfigurationUtil
|
24
|
+
|
25
|
+
def analyze_session_store *args
|
26
|
+
return if PROTECT.enabled?
|
27
|
+
|
28
|
+
apply_httponly_disabled(*args)
|
29
|
+
apply_secure_cookie_disabled(*args)
|
30
|
+
apply_session_timeout(*args)
|
31
|
+
end
|
32
|
+
|
33
|
+
private
|
34
|
+
|
35
|
+
def vulnerable_setting? setting_key, safe_settings_value, original_args, safe_default: true, comparison_type: nil
|
36
|
+
# In most cases, Rails is pretty nice and the default value is safe
|
37
|
+
return !safe_default unless original_args && original_args.length > 1
|
38
|
+
|
39
|
+
# If the user overrode some args, but not ours, fall back on the default
|
40
|
+
rails_session_settings = original_args[1]
|
41
|
+
return !safe_default unless rails_session_settings&.key?(setting_key)
|
42
|
+
|
43
|
+
value = rails_session_settings[setting_key]
|
44
|
+
|
45
|
+
return value.to_i > safe_settings_value.to_i if comparison_type&.to_sym == :greater_than
|
46
|
+
|
47
|
+
value != safe_settings_value
|
48
|
+
end
|
49
|
+
|
50
|
+
def apply_session_timeout *args
|
51
|
+
return if ASSESS.rule_disabled? CS__SESSION_TIMEOUT_NAME
|
52
|
+
return unless vulnerable_setting?(:expire_after, SAFE_SESSION_TIMEOUT, args, comparison_type: :greater_than, safe_default: false)
|
53
|
+
|
54
|
+
rails_session_settings = args[1]
|
55
|
+
with_contrast_scope do
|
56
|
+
cs__report_finding(CS__SESSION_TIMEOUT_NAME, rails_session_settings, caller_locations(6, 5)[0])
|
57
|
+
end
|
58
|
+
rescue StandardError => e
|
59
|
+
begin
|
60
|
+
logger.error('Unable to track call to set session timeout', e)
|
61
|
+
rescue StandardError
|
62
|
+
nil
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
def apply_secure_cookie_disabled *args
|
67
|
+
return if ASSESS.rule_disabled? CS__SECURE_RULE_NAME
|
68
|
+
return unless vulnerable_setting?(:secure, true, args)
|
69
|
+
|
70
|
+
rails_session_settings = args[1]
|
71
|
+
with_contrast_scope do
|
72
|
+
cs__report_finding(CS__SECURE_RULE_NAME, rails_session_settings, caller_locations(6, 5)[0])
|
73
|
+
end
|
74
|
+
rescue StandardError => e
|
75
|
+
begin
|
76
|
+
logger.error('Unable to track call to disable secure cookies', e)
|
77
|
+
rescue StandardError
|
78
|
+
nil
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
def apply_httponly_disabled *args
|
83
|
+
return if ASSESS.rule_disabled? CS__HTTPONLY_RULE_NAME
|
84
|
+
return unless vulnerable_setting?(:httponly, true, args)
|
85
|
+
|
86
|
+
rails_session_settings = args[1]
|
87
|
+
with_contrast_scope do
|
88
|
+
cs__report_finding(CS__HTTPONLY_RULE_NAME, rails_session_settings, caller_locations(6, 5)[0])
|
89
|
+
end
|
90
|
+
rescue StandardError => e
|
91
|
+
begin
|
92
|
+
logger.error('Unable to track call to disable httponly in session cookie', e)
|
93
|
+
rescue StandardError
|
94
|
+
nil
|
95
|
+
end
|
96
|
+
end
|
97
|
+
end
|
98
|
+
end
|
99
|
+
end
|
100
|
+
end
|
101
|
+
end
|
102
|
+
end
|
@@ -0,0 +1,31 @@
|
|
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/framework/rails/patch/assess_configuration'
|
5
|
+
module Contrast
|
6
|
+
module Framework
|
7
|
+
module Rails
|
8
|
+
module Patch
|
9
|
+
# Our patch into the Rails::Application::Configuration Class, allowing
|
10
|
+
# for the runtime detection of insecure configurations on individual
|
11
|
+
# ActionDispatch::Session::AbstractStore instances within the
|
12
|
+
# application.
|
13
|
+
class RailsApplicationConfiguration
|
14
|
+
def self.instrument
|
15
|
+
@_instrument ||= begin
|
16
|
+
::Rails::Application::Configuration.class_eval do
|
17
|
+
alias_method :cs__patched_session_store, :session_store
|
18
|
+
def session_store *args
|
19
|
+
ret = cs__patched_session_store(*args)
|
20
|
+
Contrast::Framework::Rails::Patch::AssessConfiguration.analyze_session_store(*args)
|
21
|
+
ret
|
22
|
+
end
|
23
|
+
end
|
24
|
+
true
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,67 @@
|
|
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/framework/rails/patch/rails_application_configuration'
|
5
|
+
cs__scoped_require 'contrast/agent/patching/policy/after_load_patch'
|
6
|
+
|
7
|
+
module Contrast
|
8
|
+
module Framework
|
9
|
+
module Rails
|
10
|
+
module Patch
|
11
|
+
# Extension point allowing for the registration of Patches required to
|
12
|
+
# support the Rails framework.
|
13
|
+
module Support
|
14
|
+
# (See BaseSupport#before_load_patches)
|
15
|
+
def before_load_patches!
|
16
|
+
return unless defined?(::Rails)
|
17
|
+
|
18
|
+
# In Rails, session configuration occurs extremely early & only once.
|
19
|
+
# If we defer our patching of the rails session configuration too long
|
20
|
+
# (i.e., where we normally patch) we will miss the configuration
|
21
|
+
# and will never be able to report session misconfiguration rules.
|
22
|
+
Contrast::Framework::Rails::Patch::RailsApplicationConfiguration.instrument
|
23
|
+
cs__scoped_require 'contrast/agent/railtie' if ::Rails::VERSION::MAJOR.to_i >= 3
|
24
|
+
end
|
25
|
+
|
26
|
+
# (See BaseSupport#after_load_patches)
|
27
|
+
def after_load_patches
|
28
|
+
Set.new([
|
29
|
+
Contrast::Agent::Patching::Policy::AfterLoadPatch.new(
|
30
|
+
'ActionController::Live::Buffer',
|
31
|
+
'contrast/framework/rails/patch/action_controller_live_buffer',
|
32
|
+
instrumenting_module: 'Contrast::Framework::Rails::Patch::ActionControllerLiveBuffer'),
|
33
|
+
Contrast::Agent::Patching::Policy::AfterLoadPatch.new(
|
34
|
+
'Rails::Application::Configuration',
|
35
|
+
'contrast/framework/rails/patch/rails_application_configuration',
|
36
|
+
method_to_instrument: :session_store,
|
37
|
+
instrumenting_module: 'Contrast::Framework::Rails::Patch::RailsApplicationConfiguration'),
|
38
|
+
|
39
|
+
# TODO: RUBY-714 remove w/ EOL of 2.5
|
40
|
+
#
|
41
|
+
# @deprecated Everything past here is used for Rewriting and can
|
42
|
+
# be removed once we no longer support 2.5.
|
43
|
+
Contrast::Agent::Patching::Policy::AfterLoadPatch.new(
|
44
|
+
'ActionController::Railties::Helper::ClassMethods',
|
45
|
+
'contrast/framework/rails/rewrite/action_controller_railties_helper_inherited',
|
46
|
+
method_to_instrument: :inherited,
|
47
|
+
instrumenting_module: 'Contrast::Framework::Rails::Rewrite::ActionControllerRailtiesHelperInherited'),
|
48
|
+
Contrast::Agent::Patching::Policy::AfterLoadPatch.new(
|
49
|
+
'ActiveRecord::AttributeMethods::Read::ClassMethods',
|
50
|
+
'contrast/framework/rails/rewrite/active_record_attribute_methods_read',
|
51
|
+
instrumenting_module: 'Contrast::Framework::Rails::Rewrite::ActiveRecordAttributeMethodsRead'),
|
52
|
+
Contrast::Agent::Patching::Policy::AfterLoadPatch.new(
|
53
|
+
'ActiveRecord::Scoping::Named::ClassMethods',
|
54
|
+
'contrast/framework/rails/rewrite/active_record_named',
|
55
|
+
instrumenting_module: 'Contrast::Framework::Rails::Rewrite::ActiveRecordNamed'),
|
56
|
+
Contrast::Agent::Patching::Policy::AfterLoadPatch.new(
|
57
|
+
'ActiveRecord::AttributeMethods::TimeZoneConversion::ClassMethods',
|
58
|
+
'contrast/framework/rails/rewrite/active_record_time_zone_inherited',
|
59
|
+
method_to_instrument: :inherited,
|
60
|
+
instrumenting_module: 'Contrast::Framework::Rails::Rewrite::ActiveRecordTimeZoneInherited')
|
61
|
+
])
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
@@ -0,0 +1,34 @@
|
|
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 Framework
|
6
|
+
module Rails
|
7
|
+
module Rewrite
|
8
|
+
# Used to monkey patch all the inherited calls in action_pack
|
9
|
+
#
|
10
|
+
# This is the usual entry point for Rails inheritance work, so it should
|
11
|
+
# catch most of the calls to inherited.
|
12
|
+
# TODO: RUBY-714 remove w/ EOL of 2.5
|
13
|
+
# @deprecated Changes to this class are discouraged as this approach is
|
14
|
+
# being phased out with support for those language versions.
|
15
|
+
class ActionControllerRailtiesHelperInherited
|
16
|
+
def self.instrument
|
17
|
+
@_instrument ||= begin
|
18
|
+
::ActionController::Railties::Helpers.class_eval do
|
19
|
+
alias_method :cs__patched_helper_inherited, :inherited
|
20
|
+
def inherited klass
|
21
|
+
klass&.instance_variable_set(:@cs__defining_class, true)
|
22
|
+
cs__patched_helper_inherited(klass)
|
23
|
+
ensure
|
24
|
+
klass&.instance_variable_set(:@cs__defining_class, false)
|
25
|
+
end
|
26
|
+
end
|
27
|
+
true
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
@@ -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
|
+
module Contrast
|
5
|
+
module Framework
|
6
|
+
module Rails
|
7
|
+
module Rewrite
|
8
|
+
# Rails / ActiveRecord are sneaky. They define attributes of a class in
|
9
|
+
# one method, then monkey patch allocate in another and finally invoke
|
10
|
+
# module_eval in this method... but of course they use a '_tmp_' header
|
11
|
+
# for the method name and then alias it in this module to name it what
|
12
|
+
# we expect
|
13
|
+
#
|
14
|
+
# TODO: RUBY-714 remove w/ EOL of 2.5
|
15
|
+
# @deprecated Changes to this class are discouraged as this approach is
|
16
|
+
# being phased out with support for those language versions.
|
17
|
+
class ActiveRecordAttributeMethodsRead
|
18
|
+
def self.instrument
|
19
|
+
@_instrument ||= begin
|
20
|
+
::ActiveRecord::AttributeMethods::Read::ClassMethods.class_eval do
|
21
|
+
alias_method :cs__patched_define_method_attribute, :define_method_attribute
|
22
|
+
|
23
|
+
def define_method_attribute *args, &block
|
24
|
+
ret = cs__patched_define_method_attribute(*args, &block)
|
25
|
+
method_name = args[0]
|
26
|
+
Contrast::Agent::Assess::Policy::Patcher.patch_assess_method(self, method_name)
|
27
|
+
ret
|
28
|
+
end
|
29
|
+
|
30
|
+
protected :cs__patched_define_method_attribute, :define_method_attribute
|
31
|
+
end
|
32
|
+
true
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
@@ -0,0 +1,73 @@
|
|
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 Framework
|
8
|
+
module Rails
|
9
|
+
module Rewrite
|
10
|
+
# Our patch into the ActiveRecord::Scoping::Named::ClassMethods Module,
|
11
|
+
# allowing for the runtime rewrite of interpolation calls defined in
|
12
|
+
# methods defined dynamically during application execution.
|
13
|
+
#
|
14
|
+
# TODO: RUBY-714 remove w/ EOL of 2.5
|
15
|
+
# @deprecated Changes to this class are discouraged as this approach is
|
16
|
+
# being phased out with support for those language versions.
|
17
|
+
class ActiveRecordNamed
|
18
|
+
include Contrast::Components::Interface
|
19
|
+
access_component :agent, :logging
|
20
|
+
|
21
|
+
class << self
|
22
|
+
def rewrite mod, method_name, body
|
23
|
+
return body unless AGENT.rewrite_interpolation?
|
24
|
+
return body unless body.is_a?(Proc)
|
25
|
+
|
26
|
+
location = body.source_location
|
27
|
+
return body unless location_available?(location)
|
28
|
+
|
29
|
+
opener = Contrast::Agent::ClassReopener.new(Contrast::Agent::ModuleData.new(mod))
|
30
|
+
original_source_code = opener.source_code(location, method_name)
|
31
|
+
return body unless original_source_code
|
32
|
+
return body if Contrast::Agent::Rewriter.send(:unrepeatable?, original_source_code)
|
33
|
+
return body unless Contrast::Agent::Rewriter.send(:interpolations?, original_source_code)
|
34
|
+
|
35
|
+
# the code looks like 'source :some_method_name, ->lambda_literal'
|
36
|
+
# we just need the lambda
|
37
|
+
body_start = original_source_code.index(',') + 1
|
38
|
+
original_source_code = original_source_code[body_start..-1]
|
39
|
+
|
40
|
+
new_method_source = Contrast::Agent::Rewriter.send(:rewrite_method, original_source_code)
|
41
|
+
return body unless Contrast::Agent::Rewriter.send(:valid_code?, new_method_source)
|
42
|
+
|
43
|
+
unbound_eval(cs__name, new_method_source)
|
44
|
+
rescue SyntaxError, StandardError => e
|
45
|
+
logger.debug('Can\'t parse method source in scoped method', e, method: method_name)
|
46
|
+
body
|
47
|
+
end
|
48
|
+
|
49
|
+
# Good news, once we patch the body once, the source location
|
50
|
+
# becomes eval. We may need to fix this later though (so it may
|
51
|
+
# be bad news)
|
52
|
+
def location_available? location
|
53
|
+
return false if location.nil?
|
54
|
+
return false if location.empty? || location[0].empty? || location[0].include?('eval')
|
55
|
+
|
56
|
+
true
|
57
|
+
end
|
58
|
+
|
59
|
+
def instrument
|
60
|
+
@_instrument_named_track ||= begin
|
61
|
+
cs__scoped_require 'cs__assess_active_record_named/cs__assess_active_record_named'
|
62
|
+
true
|
63
|
+
end
|
64
|
+
rescue StandardError, LoadError => e
|
65
|
+
logger.error('Error loading active record named track patch', e)
|
66
|
+
false
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
@@ -0,0 +1,33 @@
|
|
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 Framework
|
6
|
+
module Rails
|
7
|
+
module Rewrite
|
8
|
+
# Used to monkey patch all the inherited calls in action_pack
|
9
|
+
# TODO: RUBY-714 remove w/ EOL of 2.5
|
10
|
+
# @deprecated Changes to this class are discouraged as this approach is
|
11
|
+
# being phased out with support for those language versions.
|
12
|
+
class ActiveRecordTimeZoneInherited
|
13
|
+
def self.instrument
|
14
|
+
@_instrument ||= begin
|
15
|
+
::ActiveRecord::AttributeMethods::TimeZoneConversion::ClassMethods.class_eval do
|
16
|
+
private
|
17
|
+
|
18
|
+
alias_method :cs__patched_inherited, :inherited
|
19
|
+
def inherited klass
|
20
|
+
klass&.instance_variable_set(:@cs__defining_class, true)
|
21
|
+
cs__patched_inherited(klass)
|
22
|
+
ensure
|
23
|
+
klass&.instance_variable_set(:@cs__defining_class, false)
|
24
|
+
end
|
25
|
+
end
|
26
|
+
true
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|