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
@@ -5,7 +5,7 @@ cs__scoped_require 'contrast/agent/assess/policy/propagation_node'
|
|
5
5
|
cs__scoped_require 'contrast/components/interface'
|
6
6
|
|
7
7
|
module Contrast
|
8
|
-
module
|
8
|
+
module Extension
|
9
9
|
module Assess
|
10
10
|
# This Class provides us with a way to invoke Regexp propagation for those
|
11
11
|
# methods which are too complex to fit into one of the standard
|
@@ -25,7 +25,7 @@ module Contrast
|
|
25
25
|
'action' => 'CUSTOM',
|
26
26
|
'source' => 'P0',
|
27
27
|
'target' => 'R',
|
28
|
-
'patch_class' => 'Contrast::
|
28
|
+
'patch_class' => 'Contrast::Extension::Assess::RegexpPropagator',
|
29
29
|
'patch_method' => 'track_equal_squiggle'
|
30
30
|
}.cs__freeze
|
31
31
|
REGEXP_EQUAL_SQUIGGLE_NODE = Contrast::Agent::Assess::Policy::PropagationNode.new(REGEXP_EQUAL_SQUIGGLE_HASH)
|
@@ -43,7 +43,7 @@ module Contrast
|
|
43
43
|
# As such, a scope of 1 here indicates that,
|
44
44
|
# so we know that we're in the top level call for this method.
|
45
45
|
# normal patch [-alias-]> special case patch [-alias-]> original method
|
46
|
-
# TODO:
|
46
|
+
# TODO: RUBY-686
|
47
47
|
return if scope_for_current_ec.instance_variable_get(:@contrast_scope) > 1
|
48
48
|
|
49
49
|
target = info_hash[:back_ref]
|
@@ -73,7 +73,7 @@ module Contrast
|
|
73
73
|
cs__scoped_require 'cs__assess_regexp/cs__assess_regexp'
|
74
74
|
true
|
75
75
|
end
|
76
|
-
rescue StandardError => e
|
76
|
+
rescue StandardError, LoadError => e
|
77
77
|
logger.error('Error loading regexp track patch', e)
|
78
78
|
false
|
79
79
|
end
|
@@ -3,16 +3,16 @@
|
|
3
3
|
|
4
4
|
cs__scoped_require 'contrast/agent/assess/policy/propagation_node'
|
5
5
|
cs__scoped_require 'contrast/components/interface'
|
6
|
-
cs__scoped_require 'contrast/
|
6
|
+
cs__scoped_require 'contrast/extension/assess/assess_extension'
|
7
7
|
|
8
8
|
# This patch installs our extension as early as possible. The alternative is to
|
9
9
|
# litter our code with Contrast::Utils::DuckUtils.trackable? checks.
|
10
10
|
class String
|
11
|
-
include Contrast::
|
11
|
+
include Contrast::Extension::Assess::AssessExtension
|
12
12
|
end
|
13
13
|
|
14
14
|
module Contrast
|
15
|
-
module
|
15
|
+
module Extension
|
16
16
|
module Assess
|
17
17
|
# This Class provides us with a way to invoke String propagation for those
|
18
18
|
# methods which are too complex to fit into one of the standard
|
@@ -57,7 +57,7 @@ module Contrast
|
|
57
57
|
cs__scoped_require 'cs__assess_string/cs__assess_string'
|
58
58
|
true
|
59
59
|
end
|
60
|
-
rescue StandardError => e
|
60
|
+
rescue StandardError, LoadError => e
|
61
61
|
logger.error('Error loading hash track patch', e)
|
62
62
|
false
|
63
63
|
end
|
@@ -65,11 +65,11 @@ module Contrast
|
|
65
65
|
def instrument_string_interpolation
|
66
66
|
if @_instrument_string_interpolation.nil?
|
67
67
|
@_instrument_string_interpolation = begin
|
68
|
-
if AGENT.patch_interpolation?
|
68
|
+
if AGENT.patch_interpolation? && Funchook.available?
|
69
69
|
cs__scoped_require 'cs__assess_string_interpolation26/cs__assess_string_interpolation26'
|
70
70
|
end
|
71
71
|
true
|
72
|
-
rescue StandardError => e
|
72
|
+
rescue StandardError, LoadError => e
|
73
73
|
logger.error('Error loading interpolation patch', e)
|
74
74
|
false
|
75
75
|
end
|
File without changes
|
@@ -2,8 +2,8 @@
|
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
module Contrast
|
5
|
-
module
|
6
|
-
# Our top level Inventory namespace in the Core
|
5
|
+
module Extension
|
6
|
+
# Our top level Inventory namespace in the Core Extension section of our
|
7
7
|
# code. These patches are those that are invoked directly from a patched
|
8
8
|
# Class.
|
9
9
|
#
|
@@ -11,7 +11,6 @@ module Contrast
|
|
11
11
|
# relevant given the move to C based patching and the lessons learned
|
12
12
|
# therein.
|
13
13
|
module Inventory
|
14
|
-
cs__scoped_require 'contrast/internal_exception'
|
15
14
|
cs__scoped_require 'contrast/security_exception'
|
16
15
|
# patching
|
17
16
|
cs__scoped_require 'contrast/agent/inventory/policy/trigger_node'
|
@@ -0,0 +1,54 @@
|
|
1
|
+
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
cs__scoped_require 'contrast/components/scope'
|
5
|
+
|
6
|
+
# This is a reasonable place for the Kernel#catch hook to live.
|
7
|
+
# No current plans for component re-design, but if we had some kind of
|
8
|
+
# "do this when a component is hooked in" thing, this would live there.
|
9
|
+
# For now, it's over-engineering to live anywhere else. -ajm
|
10
|
+
module Kernel # :nodoc:
|
11
|
+
alias_method :cs__catch, :catch
|
12
|
+
|
13
|
+
# In the event of a `throw`, we need to override `catch`
|
14
|
+
# to save & restore scope state:
|
15
|
+
#
|
16
|
+
# scope_level == 0
|
17
|
+
#
|
18
|
+
# catch(:abc) do
|
19
|
+
# with_contrast_scope do
|
20
|
+
# throw :abc # will leak
|
21
|
+
# end
|
22
|
+
# end
|
23
|
+
#
|
24
|
+
# scope_level == 1
|
25
|
+
#
|
26
|
+
# Frankly, this isn't how scope should be used. This is in place of
|
27
|
+
# proper `ensure` blocks within the instrumentation call stack.
|
28
|
+
# This will actually /create/ scope leaks if you're doing something like:
|
29
|
+
#
|
30
|
+
# catch(:ohno) do
|
31
|
+
# enter scope
|
32
|
+
# end
|
33
|
+
#
|
34
|
+
# abc()
|
35
|
+
#
|
36
|
+
# exit scope
|
37
|
+
#
|
38
|
+
# i.e. if you intend to change net scope across a catch block boundary.
|
39
|
+
|
40
|
+
private
|
41
|
+
|
42
|
+
def catch *args, &block
|
43
|
+
# Save current scope level
|
44
|
+
scope_level = Contrast::Components::Scope::COMPONENT_INTERFACE.scope_for_current_ec.instance_variable_get(:@contrast_scope)
|
45
|
+
|
46
|
+
# Run original catch with block.
|
47
|
+
retval = cs__catch(*args, &block)
|
48
|
+
|
49
|
+
# Restore scope.
|
50
|
+
Contrast::Components::Scope::COMPONENT_INTERFACE.scope_for_current_ec.instance_variable_set(:@contrast_scope, scope_level)
|
51
|
+
|
52
|
+
retval
|
53
|
+
end
|
54
|
+
end
|
File without changes
|
@@ -2,8 +2,8 @@
|
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
module Contrast
|
5
|
-
module
|
6
|
-
# Our top level Protect namespace in the Core
|
5
|
+
module Extension
|
6
|
+
# Our top level Protect namespace in the Core Extension section of our
|
7
7
|
# code. These patches are those that are invoked directly from a patched
|
8
8
|
# Class.
|
9
9
|
#
|
@@ -0,0 +1,44 @@
|
|
1
|
+
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
cs__scoped_require 'contrast/components/interface'
|
5
|
+
|
6
|
+
module Contrast
|
7
|
+
module Extension
|
8
|
+
module Protect
|
9
|
+
# This Module functions as our patch into the Kernel class for Protect,
|
10
|
+
# allowing us to track activity as it crosses spawned processes.
|
11
|
+
module Kernel
|
12
|
+
class << self
|
13
|
+
include Contrast::Components::Interface
|
14
|
+
access_component :contrast_service
|
15
|
+
|
16
|
+
def build_wrapper
|
17
|
+
lambda {
|
18
|
+
proc_start
|
19
|
+
yield
|
20
|
+
# AtExitHook handles sending any messages generated in the new forked process
|
21
|
+
}
|
22
|
+
end
|
23
|
+
|
24
|
+
def proc_start
|
25
|
+
context = Contrast::Agent::REQUEST_TRACKER.current
|
26
|
+
return unless context
|
27
|
+
|
28
|
+
context.reset_activity
|
29
|
+
end
|
30
|
+
|
31
|
+
def instrument
|
32
|
+
@_instrument ||= begin
|
33
|
+
cs__scoped_require 'cs__protect_kernel/cs__protect_kernel'
|
34
|
+
true
|
35
|
+
end
|
36
|
+
rescue StandardError, LoadError => e
|
37
|
+
logger.error('Error loading kernel protect patch', e)
|
38
|
+
false
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
@@ -2,6 +2,6 @@
|
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
if defined?(Psych)
|
5
|
-
cs__scoped_require 'contrast/
|
5
|
+
cs__scoped_require 'contrast/agent/protect/policy/applies_deserialization_rule'
|
6
6
|
cs__scoped_require 'cs__patched_psych/cs__patched_psych'
|
7
7
|
end
|
File without changes
|
@@ -23,13 +23,6 @@ module Contrast
|
|
23
23
|
raise NoMethodError, 'Subclasses of BaseSupport should implement this method'
|
24
24
|
end
|
25
25
|
|
26
|
-
# Iterate through known locations, looking for files
|
27
|
-
# that represent view or template files. If found, for each file in the directory
|
28
|
-
# append the technology and the view object to the application update instance
|
29
|
-
def scan_views
|
30
|
-
raise NoMethodError, 'Subclasses of BaseSupport should implement this method'
|
31
|
-
end
|
32
|
-
|
33
26
|
# Find all the predefined routes for this application and append them to the
|
34
27
|
# provided inventory message
|
35
28
|
# msg should be a Contrast::Api::Dtm::ApplicationUpdate or some other msg
|
@@ -46,27 +39,33 @@ module Contrast
|
|
46
39
|
raise NoMethodError, 'Subclasses of BaseSupport should implement this method'
|
47
40
|
end
|
48
41
|
|
42
|
+
# Some Frameworks require specific patching for their classes to handle
|
43
|
+
# functionality like configuration scanning. To accommodate this, this
|
44
|
+
# method provides a place to register those patches for invocation on
|
45
|
+
# Agent load.
|
46
|
+
#
|
47
|
+
# By default, and hopefully in all cases, we won't need these patches,
|
48
|
+
# so we're allowing nil here rather than raising an exception.
|
49
|
+
def before_load_patches; end
|
50
|
+
|
51
|
+
# Some Frameworks require specific patching for their classes to handle
|
52
|
+
# functionality like routing. To accommodate this, this method provides
|
53
|
+
# a place to register those patches for invocation in our
|
54
|
+
# AfterLoadPatcher flow.
|
55
|
+
#
|
56
|
+
# By default, and hopefully in all cases, we won't need these patches,
|
57
|
+
# so we're allowing nil here rather than raising an exception.
|
58
|
+
#
|
59
|
+
# @return [Set<Contrast::Agent::Patching::Policy::AfterLoadPatch>,nil]
|
60
|
+
# those patches required for a Framework which can only be installed
|
61
|
+
# once a specific module has been loaded.
|
62
|
+
def after_load_patches; end
|
63
|
+
|
49
64
|
# We only support websockets in rails right now, so we won't detect streaming in
|
50
65
|
# any other framework
|
51
66
|
def streaming? _env
|
52
67
|
false
|
53
68
|
end
|
54
|
-
|
55
|
-
protected
|
56
|
-
|
57
|
-
def source_or_string obj
|
58
|
-
if obj.cs__is_a?(Regexp)
|
59
|
-
obj.source
|
60
|
-
elsif obj.cs__respond_to?(:safe_string)
|
61
|
-
obj.safe_string
|
62
|
-
else
|
63
|
-
obj.to_s
|
64
|
-
end
|
65
|
-
end
|
66
|
-
|
67
|
-
def scan_view_directories view_technology_descriptors
|
68
|
-
view_technology_descriptors.reject(&:empty?)
|
69
|
-
end
|
70
69
|
end
|
71
70
|
end
|
72
71
|
end
|
@@ -1,11 +1,10 @@
|
|
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/framework/view_technologies_descriptor'
|
5
4
|
cs__scoped_require 'contrast/framework/platform_version'
|
6
|
-
cs__scoped_require 'contrast/framework/
|
7
|
-
cs__scoped_require 'contrast/framework/
|
8
|
-
cs__scoped_require 'contrast/framework/
|
5
|
+
cs__scoped_require 'contrast/framework/rack/support'
|
6
|
+
cs__scoped_require 'contrast/framework/rails/support'
|
7
|
+
cs__scoped_require 'contrast/framework/sinatra/support'
|
9
8
|
cs__scoped_require 'contrast/components/interface'
|
10
9
|
cs__scoped_require 'contrast/utils/class_util'
|
11
10
|
|
@@ -20,8 +19,9 @@ module Contrast
|
|
20
19
|
# Rack will be a special case that may involve updating some logic to handle only applying Rack if Rails/Sinatra
|
21
20
|
# do not exist
|
22
21
|
SUPPORTED_FRAMEWORKS = [
|
23
|
-
Contrast::Framework::
|
24
|
-
Contrast::Framework::
|
22
|
+
Contrast::Framework::Rails::Support,
|
23
|
+
Contrast::Framework::Sinatra::Support,
|
24
|
+
Contrast::Framework::Rack::Support
|
25
25
|
].cs__freeze
|
26
26
|
|
27
27
|
def initialize
|
@@ -34,8 +34,28 @@ module Contrast
|
|
34
34
|
@_frameworks.compact!
|
35
35
|
end
|
36
36
|
|
37
|
-
|
38
|
-
|
37
|
+
# Patches that have to be applied as early as possible to catch calls
|
38
|
+
# that happen prior to the first Request, typically those around
|
39
|
+
# configuration.
|
40
|
+
def before_load_patches!
|
41
|
+
@_before_load_patches ||= begin
|
42
|
+
SUPPORTED_FRAMEWORKS.each(&:before_load_patches)
|
43
|
+
true
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
# Return all the After Load Patches for all the Frameworks we know, even
|
48
|
+
# if that Framework hasn't been detected.
|
49
|
+
#
|
50
|
+
# @return [Set<Contrast::Agent::Patching::Policy::AfterLoadPatch>] the
|
51
|
+
# AfterLoadPatches of each framework
|
52
|
+
def find_after_load_patches
|
53
|
+
patches = Set.new
|
54
|
+
SUPPORTED_FRAMEWORKS.each do |framework|
|
55
|
+
framework_patches = framework.after_load_patches
|
56
|
+
patches.merge(framework_patches) if framework_patches && !framework_patches.empty?
|
57
|
+
end
|
58
|
+
patches
|
39
59
|
end
|
40
60
|
|
41
61
|
def find_route_discovery_data
|
@@ -58,7 +78,7 @@ module Contrast
|
|
58
78
|
|
59
79
|
def app_root
|
60
80
|
found = first_framework_result :application_root, nil
|
61
|
-
found || Rack::Directory.new('').root
|
81
|
+
found || ::Rack::Directory.new('').root
|
62
82
|
end
|
63
83
|
|
64
84
|
# If we have 0 or n > 1 frameworks, we need to use the default rack request
|
@@ -67,7 +87,7 @@ module Contrast
|
|
67
87
|
def retrieve_request env
|
68
88
|
return @_frameworks[0].retrieve_request(env) if @_frameworks.length == 1
|
69
89
|
|
70
|
-
Rack::Request.new(env)
|
90
|
+
::Rack::Request.new(env)
|
71
91
|
end
|
72
92
|
|
73
93
|
# @param env [Hash] the various variables stored by this and other Middlewares to know the state
|
@@ -86,7 +106,7 @@ module Contrast
|
|
86
106
|
result = nil
|
87
107
|
@_frameworks.find do |framework_klass|
|
88
108
|
# TODO: RUBY-763 Sinatra::Base#call patch adds the Route report
|
89
|
-
next if framework_klass == Contrast::Framework::
|
109
|
+
next if framework_klass == Contrast::Framework::Sinatra::Support
|
90
110
|
|
91
111
|
result = framework_klass.current_route(request)
|
92
112
|
end
|
@@ -99,10 +119,6 @@ module Contrast
|
|
99
119
|
Contrast::Utils::ClassUtil.truly_defined?(klass)
|
100
120
|
end
|
101
121
|
|
102
|
-
def scan_views_for_all_frameworks
|
103
|
-
data_for_all_frameworks :scan_views
|
104
|
-
end
|
105
|
-
|
106
122
|
def routes_for_all_frameworks
|
107
123
|
data_for_all_frameworks :collect_routes
|
108
124
|
end
|
@@ -0,0 +1,126 @@
|
|
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 Rack
|
9
|
+
module Patch
|
10
|
+
# Our patch into the Rack::Session::Cookie Class, allowing for the
|
11
|
+
# runtime detection of insecure configurations on individual cookies
|
12
|
+
# within the application
|
13
|
+
class SessionCookie
|
14
|
+
include Contrast::Components::Interface
|
15
|
+
|
16
|
+
access_component :agent, :analysis, :logging, :scope
|
17
|
+
|
18
|
+
CS__SECURE_RULE_NAME = 'secure-flag-missing'
|
19
|
+
CS__HTTPONLY_NAME = 'rails-http-only-disabled'
|
20
|
+
CS__SESSION_TIMEOUT_NAME = 'session-timeout'
|
21
|
+
SAFE_SESSION_TIMEOUT = (30 * 60 * 60)
|
22
|
+
class << self
|
23
|
+
include Contrast::Utils::InvalidConfigurationUtil
|
24
|
+
|
25
|
+
def instrument
|
26
|
+
@_instrument ||= begin
|
27
|
+
::Rack::Session::Cookie.class_eval do
|
28
|
+
alias_method :cs__patched_initialize, :initialize
|
29
|
+
def initialize app, options = {}
|
30
|
+
Contrast::Framework::Rack::Patch::SessionCookie.analyze(options)
|
31
|
+
cs__patched_initialize(app, options)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
true
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
def analyze options
|
39
|
+
return unless AGENT.enabled?
|
40
|
+
return if PROTECT.enabled?
|
41
|
+
|
42
|
+
apply_session_timeout(options)
|
43
|
+
apply_httponly(options)
|
44
|
+
apply_secure_session(options)
|
45
|
+
end
|
46
|
+
|
47
|
+
private
|
48
|
+
|
49
|
+
def vulnerable_setting?(setting_key,
|
50
|
+
safe_settings_value,
|
51
|
+
options, safe_default: true,
|
52
|
+
comparison_type: nil)
|
53
|
+
# In most cases, Rack is pretty nice and the default value is safe
|
54
|
+
return !safe_default unless options&.key?(setting_key)
|
55
|
+
|
56
|
+
value = options[setting_key]
|
57
|
+
|
58
|
+
return value.to_i > safe_settings_value.to_i if comparison_type&.to_sym == :greater_than
|
59
|
+
|
60
|
+
value != safe_settings_value
|
61
|
+
end
|
62
|
+
|
63
|
+
def apply_secure_session options
|
64
|
+
return unless vulnerable_setting?(
|
65
|
+
:secure,
|
66
|
+
true,
|
67
|
+
options,
|
68
|
+
safe_default: false)
|
69
|
+
|
70
|
+
with_contrast_scope do
|
71
|
+
cs__report_finding(
|
72
|
+
CS__SECURE_RULE_NAME,
|
73
|
+
options,
|
74
|
+
caller_locations(10, 9)[0])
|
75
|
+
end
|
76
|
+
rescue StandardError => e
|
77
|
+
begin
|
78
|
+
logger.error('Unable to track call to secure session', e)
|
79
|
+
rescue StandardError
|
80
|
+
nil
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
def apply_session_timeout options
|
85
|
+
return unless vulnerable_setting?(:expire_after,
|
86
|
+
SAFE_SESSION_TIMEOUT,
|
87
|
+
options,
|
88
|
+
safe_default: false,
|
89
|
+
comparison_type: :greater_than)
|
90
|
+
|
91
|
+
with_contrast_scope do
|
92
|
+
cs__report_finding(
|
93
|
+
CS__SESSION_TIMEOUT_NAME,
|
94
|
+
options,
|
95
|
+
caller_locations(10, 9)[0])
|
96
|
+
end
|
97
|
+
rescue StandardError => e
|
98
|
+
begin
|
99
|
+
logger.error('Unable to track call to set session timeout', e)
|
100
|
+
rescue StandardError
|
101
|
+
nil
|
102
|
+
end
|
103
|
+
end
|
104
|
+
|
105
|
+
def apply_httponly options
|
106
|
+
return unless vulnerable_setting?(:httponly, true, options)
|
107
|
+
|
108
|
+
with_contrast_scope do
|
109
|
+
cs__report_finding(
|
110
|
+
CS__HTTPONLY_NAME,
|
111
|
+
options,
|
112
|
+
caller_locations(10, 9)[0])
|
113
|
+
end
|
114
|
+
rescue StandardError => e
|
115
|
+
begin
|
116
|
+
logger.error('Unable to track call to httponly', e)
|
117
|
+
rescue StandardError
|
118
|
+
nil
|
119
|
+
end
|
120
|
+
end
|
121
|
+
end
|
122
|
+
end
|
123
|
+
end
|
124
|
+
end
|
125
|
+
end
|
126
|
+
end
|