contrast-agent 3.10.0 → 3.12.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.flayignore +1 -0
- data/.simplecov +5 -2
- data/ext/build_funchook.rb +12 -7
- data/ext/cs__assess_active_record_named/cs__active_record_named.c +12 -14
- data/ext/cs__assess_active_record_named/cs__active_record_named.h +1 -0
- data/ext/cs__assess_active_record_named/extconf.rb +3 -0
- data/ext/cs__assess_array/cs__assess_array.c +5 -6
- data/ext/cs__assess_array/cs__assess_array.h +1 -0
- data/ext/cs__assess_array/extconf.rb +3 -0
- data/ext/cs__assess_basic_object/cs__assess_basic_object.c +13 -11
- data/ext/cs__assess_basic_object/cs__assess_basic_object.h +2 -1
- data/ext/cs__assess_basic_object/extconf.rb +3 -0
- data/ext/cs__assess_fiber_track/cs__assess_fiber_track.c +4 -3
- data/ext/cs__assess_fiber_track/cs__assess_fiber_track.h +3 -3
- data/ext/cs__assess_fiber_track/extconf.rb +3 -0
- data/ext/cs__assess_hash/cs__assess_hash.c +40 -17
- data/ext/cs__assess_hash/cs__assess_hash.h +4 -6
- data/ext/cs__assess_hash/extconf.rb +3 -0
- data/ext/cs__assess_kernel/cs__assess_kernel.c +11 -9
- data/ext/cs__assess_kernel/cs__assess_kernel.h +1 -0
- data/ext/cs__assess_kernel/extconf.rb +3 -0
- data/ext/cs__assess_marshal_module/cs__assess_marshal_module.c +3 -6
- data/ext/cs__assess_marshal_module/extconf.rb +3 -0
- data/ext/cs__assess_module/cs__assess_module.c +16 -14
- data/ext/cs__assess_module/cs__assess_module.h +3 -0
- data/ext/cs__assess_module/extconf.rb +3 -0
- data/ext/cs__assess_regexp/cs__assess_regexp.c +13 -9
- data/ext/cs__assess_regexp/cs__assess_regexp.h +1 -0
- data/ext/cs__assess_regexp/extconf.rb +3 -0
- data/ext/cs__assess_string/cs__assess_string.c +5 -8
- data/ext/cs__assess_string/cs__assess_string.h +2 -1
- data/ext/cs__assess_string/extconf.rb +3 -0
- data/ext/cs__assess_string_interpolation26/cs__assess_string_interpolation26.c +2 -2
- data/ext/cs__assess_string_interpolation26/cs__assess_string_interpolation26.h +3 -3
- data/ext/cs__assess_string_interpolation26/extconf.rb +3 -0
- data/ext/cs__assess_yield_track/cs__assess_yield_track.h +1 -1
- data/ext/cs__assess_yield_track/extconf.rb +3 -0
- data/ext/cs__common/cs__common.c +80 -1
- data/ext/cs__common/cs__common.h +34 -0
- data/ext/cs__common/extconf.rb +9 -8
- data/ext/cs__contrast_patch/cs__contrast_patch.h +1 -6
- data/ext/cs__contrast_patch/extconf.rb +3 -0
- data/ext/cs__protect_kernel/cs__protect_kernel.c +23 -12
- data/ext/cs__protect_kernel/cs__protect_kernel.h +1 -0
- data/ext/cs__protect_kernel/extconf.rb +3 -0
- data/ext/extconf_common.rb +10 -8
- data/funchook/autom4te.cache/requests +45 -45
- data/funchook/config.log +4 -4
- data/lib/contrast.rb +1 -1
- data/lib/contrast/agent.rb +32 -29
- data/lib/contrast/agent/assess.rb +1 -11
- data/lib/contrast/agent/assess/adjusted_span.rb +3 -1
- data/lib/contrast/agent/assess/contrast_event.rb +16 -62
- data/lib/contrast/agent/assess/events/event_factory.rb +25 -0
- data/lib/contrast/agent/assess/events/source_event.rb +83 -0
- data/lib/contrast/agent/assess/insulator.rb +0 -4
- data/lib/contrast/agent/assess/policy/patcher.rb +6 -2
- data/lib/contrast/agent/assess/policy/policy_node.rb +1 -8
- data/lib/contrast/agent/assess/policy/policy_scanner.rb +2 -2
- data/lib/contrast/agent/assess/policy/preshift.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagation_method.rb +68 -33
- data/lib/contrast/agent/assess/policy/propagation_node.rb +2 -1
- data/lib/contrast/agent/assess/policy/propagator.rb +1 -0
- data/lib/contrast/agent/assess/policy/propagator/custom.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/database_write.rb +1 -3
- data/lib/contrast/agent/assess/policy/propagator/match_data.rb +80 -0
- data/lib/contrast/agent/assess/policy/propagator/select.rb +35 -22
- data/lib/contrast/agent/assess/policy/propagator/split.rb +26 -6
- data/lib/contrast/agent/assess/policy/propagator/substitution.rb +2 -0
- data/lib/contrast/agent/assess/policy/rewriter_patch.rb +37 -26
- data/lib/contrast/agent/assess/policy/source_method.rb +20 -20
- data/lib/contrast/agent/assess/policy/source_node.rb +0 -15
- data/lib/contrast/agent/assess/policy/trigger/reflected_xss.rb +90 -0
- data/lib/contrast/agent/assess/policy/trigger/xpath.rb +57 -0
- data/lib/contrast/agent/assess/policy/trigger_method.rb +30 -45
- data/lib/contrast/agent/assess/policy/trigger_node.rb +7 -7
- data/lib/contrast/agent/assess/policy/trigger_validation/ssrf_validator.rb +2 -31
- data/lib/contrast/agent/assess/properties.rb +5 -3
- data/lib/contrast/agent/assess/rule/base.rb +1 -20
- data/lib/contrast/agent/assess/rule/provider/hardcoded_value_rule.rb +23 -6
- data/lib/contrast/agent/assess/rule/redos.rb +4 -5
- data/lib/contrast/agent/assess/tag.rb +24 -14
- data/lib/contrast/agent/at_exit_hook.rb +16 -13
- data/lib/contrast/agent/class_reopener.rb +23 -8
- data/lib/contrast/agent/deadzone/policy/policy.rb +2 -2
- data/lib/contrast/agent/disable_reaction.rb +3 -4
- data/lib/contrast/agent/exclusion_matcher.rb +7 -48
- data/lib/contrast/agent/inventory/policy/datastores.rb +54 -0
- data/lib/contrast/agent/inventory/policy/policy.rb +1 -1
- data/lib/contrast/agent/middleware.rb +101 -260
- data/lib/contrast/agent/module_data.rb +2 -1
- data/lib/contrast/agent/patching/policy/after_load_patch.rb +13 -3
- data/lib/contrast/agent/patching/policy/after_load_patcher.rb +59 -47
- data/lib/contrast/agent/patching/policy/method_policy.rb +3 -3
- data/lib/contrast/agent/patching/policy/module_policy.rb +0 -25
- data/lib/contrast/agent/patching/policy/patch.rb +97 -23
- data/lib/contrast/agent/patching/policy/patcher.rb +28 -30
- data/lib/contrast/agent/patching/policy/policy.rb +7 -7
- data/lib/contrast/agent/patching/policy/policy_node.rb +3 -11
- data/lib/contrast/agent/patching/policy/trigger_node.rb +2 -5
- data/lib/contrast/agent/protect/policy/applies_command_injection_rule.rb +63 -0
- data/lib/contrast/agent/protect/policy/applies_deserialization_rule.rb +52 -0
- data/lib/contrast/agent/protect/policy/applies_no_sqli_rule.rb +68 -0
- data/lib/contrast/agent/protect/policy/applies_path_traversal_rule.rb +117 -0
- data/lib/contrast/agent/protect/policy/applies_sqli_rule.rb +54 -0
- data/lib/contrast/agent/protect/policy/applies_xxe_rule.rb +129 -0
- data/lib/contrast/agent/protect/policy/policy.rb +6 -6
- data/lib/contrast/agent/protect/policy/rule_applicator.rb +51 -0
- data/lib/contrast/agent/protect/rule.rb +0 -5
- data/lib/contrast/agent/protect/rule/base.rb +19 -37
- data/lib/contrast/agent/protect/rule/base_service.rb +3 -1
- data/lib/contrast/agent/protect/rule/cmd_injection.rb +12 -15
- data/lib/contrast/agent/protect/rule/default_scanner.rb +0 -13
- data/lib/contrast/agent/protect/rule/deserialization.rb +2 -0
- data/lib/contrast/agent/protect/rule/http_method_tampering.rb +2 -2
- data/lib/contrast/agent/protect/rule/no_sqli.rb +4 -4
- data/lib/contrast/agent/protect/rule/path_traversal.rb +6 -10
- data/lib/contrast/agent/protect/rule/sqli.rb +5 -4
- data/lib/contrast/agent/protect/rule/unsafe_file_upload.rb +2 -0
- data/lib/contrast/agent/protect/rule/xss.rb +2 -0
- data/lib/contrast/agent/protect/rule/xxe.rb +10 -4
- data/lib/contrast/agent/railtie.rb +3 -8
- data/lib/contrast/agent/reaction_processor.rb +5 -5
- data/lib/contrast/agent/request.rb +11 -18
- data/lib/contrast/agent/request_context.rb +16 -19
- data/lib/contrast/agent/request_handler.rb +35 -0
- data/lib/contrast/agent/response.rb +39 -86
- data/lib/contrast/agent/rewriter.rb +22 -10
- data/lib/contrast/agent/rule_set.rb +49 -0
- data/lib/contrast/agent/scope.rb +0 -6
- data/lib/contrast/agent/service_heartbeat.rb +3 -4
- data/lib/contrast/agent/socket_client.rb +25 -19
- data/lib/contrast/agent/static_analysis.rb +41 -0
- data/lib/contrast/agent/thread.rb +1 -1
- data/lib/contrast/agent/tracepoint_hook.rb +1 -5
- data/lib/contrast/agent/version.rb +1 -1
- data/lib/contrast/api.rb +1 -1
- data/lib/contrast/api/decorators.rb +14 -0
- data/lib/contrast/api/decorators/application_settings.rb +37 -0
- data/lib/contrast/api/decorators/application_update.rb +66 -0
- data/lib/contrast/api/decorators/input_analysis.rb +17 -0
- data/lib/contrast/api/decorators/server_features.rb +24 -0
- data/lib/contrast/api/speedracer.rb +28 -24
- data/lib/contrast/api/tcp_socket.rb +0 -2
- data/lib/contrast/components/agent.rb +34 -24
- data/lib/contrast/components/app_context.rb +45 -38
- data/lib/contrast/components/assess.rb +25 -15
- data/lib/contrast/components/config.rb +7 -5
- data/lib/contrast/components/contrast_service.rb +23 -71
- data/lib/contrast/components/heap_dump.rb +12 -8
- data/lib/contrast/components/interface.rb +15 -22
- data/lib/contrast/components/inventory.rb +5 -1
- data/lib/contrast/components/logger.rb +3 -68
- data/lib/contrast/components/protect.rb +40 -4
- data/lib/contrast/components/sampling.rb +22 -11
- data/lib/contrast/components/scope.rb +2 -52
- data/lib/contrast/components/settings.rb +42 -23
- data/lib/contrast/config/base_configuration.rb +1 -0
- data/lib/contrast/config/default_value.rb +1 -0
- data/lib/contrast/config/protect_rule_configuration.rb +0 -14
- data/lib/contrast/config/protect_rules_configuration.rb +0 -1
- data/lib/contrast/configuration.rb +2 -2
- data/lib/contrast/{extensions/ruby_core → extension}/assess.rb +12 -15
- data/lib/contrast/extension/assess/array.rb +77 -0
- data/lib/contrast/{extensions/ruby_core → extension}/assess/assess_extension.rb +29 -24
- data/lib/contrast/{extensions/ruby_core → extension}/assess/erb.rb +0 -8
- data/lib/contrast/extension/assess/eval_trigger.rb +78 -0
- data/lib/contrast/{extensions/ruby_core → extension}/assess/exec_trigger.rb +7 -9
- data/lib/contrast/extension/assess/fiber.rb +113 -0
- data/lib/contrast/extension/assess/hash.rb +39 -0
- data/lib/contrast/extension/assess/kernel.rb +110 -0
- data/lib/contrast/extension/assess/regexp.rb +84 -0
- data/lib/contrast/{extensions/ruby_core → extension}/assess/string.rb +18 -10
- data/lib/contrast/{extensions/ruby_core → extension}/delegator.rb +0 -0
- data/lib/contrast/{extensions/ruby_core → extension}/inventory.rb +2 -2
- data/lib/contrast/extension/kernel.rb +54 -0
- data/lib/contrast/{extensions/ruby_core → extension}/module.rb +0 -0
- data/lib/contrast/{extensions/ruby_core → extension}/protect.rb +2 -2
- data/lib/contrast/extension/protect/kernel.rb +44 -0
- data/lib/contrast/{extensions/ruby_core → extension}/protect/psych.rb +1 -1
- data/lib/contrast/{extensions/ruby_core → extension}/thread.rb +0 -0
- data/lib/contrast/framework/base_support.rb +32 -0
- data/lib/contrast/framework/manager.rb +59 -8
- data/lib/contrast/framework/platform_version.rb +1 -0
- data/lib/contrast/framework/rack/patch/session_cookie.rb +126 -0
- data/lib/contrast/framework/rack/patch/support.rb +24 -0
- data/lib/contrast/framework/rack/support.rb +22 -0
- data/lib/contrast/framework/rails/patch/action_controller_live_buffer.rb +43 -0
- data/lib/contrast/framework/rails/patch/assess_configuration.rb +103 -0
- data/lib/contrast/framework/rails/patch/rails_application_configuration.rb +31 -0
- data/lib/contrast/framework/rails/patch/support.rb +67 -0
- data/lib/contrast/framework/rails/rewrite/action_controller_railties_helper_inherited.rb +34 -0
- data/lib/contrast/framework/rails/rewrite/active_record_attribute_methods_read.rb +39 -0
- data/lib/contrast/framework/rails/rewrite/active_record_named.rb +73 -0
- data/lib/contrast/framework/rails/rewrite/active_record_time_zone_inherited.rb +33 -0
- data/lib/contrast/framework/rails/support.rb +115 -0
- data/lib/contrast/framework/sinatra/application_helper.rb +51 -0
- data/lib/contrast/framework/sinatra/patch/base.rb +83 -0
- data/lib/contrast/framework/sinatra/patch/support.rb +27 -0
- data/lib/contrast/framework/sinatra/support.rb +109 -0
- data/lib/contrast/framework/view_technologies_descriptor.rb +1 -0
- data/lib/contrast/logger/application.rb +80 -0
- data/lib/contrast/logger/log.rb +143 -0
- data/lib/contrast/logger/time.rb +50 -0
- data/lib/contrast/tasks/config.rb +54 -0
- data/lib/contrast/tasks/service.rb +3 -13
- data/lib/contrast/utils/assess/sampling_util.rb +4 -9
- data/lib/contrast/utils/assess/tracking_util.rb +7 -1
- data/lib/contrast/utils/boolean_util.rb +2 -2
- data/lib/contrast/utils/cache.rb +0 -11
- data/lib/contrast/utils/class_util.rb +21 -2
- data/lib/contrast/utils/gemfile_reader.rb +7 -5
- data/lib/contrast/utils/hash_digest.rb +2 -11
- data/lib/contrast/utils/heap_dump_util.rb +12 -11
- data/lib/contrast/utils/invalid_configuration_util.rb +4 -4
- data/lib/contrast/utils/inventory_util.rb +2 -2
- data/lib/contrast/utils/io_util.rb +1 -11
- data/lib/contrast/utils/job_servers_running.rb +6 -4
- data/lib/contrast/utils/object_share.rb +1 -28
- data/lib/contrast/utils/os.rb +1 -25
- data/lib/contrast/utils/service_response_util.rb +36 -60
- data/lib/contrast/utils/service_sender_util.rb +84 -23
- data/lib/contrast/utils/sinatra_helper.rb +0 -6
- data/lib/contrast/utils/stack_trace_utils.rb +86 -182
- data/lib/contrast/utils/string_utils.rb +18 -2
- data/lib/contrast/utils/tag_util.rb +11 -1
- data/lib/contrast/utils/thread_tracker.rb +2 -2
- data/lib/contrast/utils/timer.rb +0 -40
- data/resources/assess/policy.json +42 -71
- data/resources/inventory/policy.json +2 -2
- data/resources/protect/policy.json +15 -15
- data/ruby-agent.gemspec +11 -4
- data/service_executables/VERSION +1 -1
- data/service_executables/linux/contrast-service +0 -0
- data/service_executables/mac/contrast-service +0 -0
- metadata +122 -111
- 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/lib/contrast/agent/assess/frozen_properties.rb +0 -41
- data/lib/contrast/agent/assess/rule/csrf.rb +0 -66
- data/lib/contrast/agent/assess/rule/csrf/csrf_action.rb +0 -28
- data/lib/contrast/agent/assess/rule/csrf/csrf_applicator.rb +0 -73
- data/lib/contrast/agent/assess/rule/csrf/csrf_watcher.rb +0 -132
- data/lib/contrast/agent/assess/rule/response_scanning_rule.rb +0 -47
- data/lib/contrast/agent/assess/rule/response_watcher.rb +0 -36
- data/lib/contrast/agent/assess/rule/watcher.rb +0 -36
- data/lib/contrast/agent/feature_state.rb +0 -376
- data/lib/contrast/agent/logger_manager.rb +0 -116
- data/lib/contrast/agent/protect/rule/csrf.rb +0 -118
- data/lib/contrast/agent/protect/rule/csrf/csrf_evaluator.rb +0 -103
- data/lib/contrast/agent/protect/rule/csrf/csrf_token_injector.rb +0 -85
- data/lib/contrast/agent/settings_state.rb +0 -152
- data/lib/contrast/delegators.rb +0 -9
- data/lib/contrast/delegators/application_update.rb +0 -32
- data/lib/contrast/extensions/framework/rack/cookie.rb +0 -24
- data/lib/contrast/extensions/framework/rack/request.rb +0 -24
- data/lib/contrast/extensions/framework/rack/response.rb +0 -23
- data/lib/contrast/extensions/framework/rails/action_controller_railties_helper_inherited.rb +0 -20
- data/lib/contrast/extensions/framework/rails/active_record.rb +0 -26
- data/lib/contrast/extensions/framework/rails/active_record_named.rb +0 -53
- data/lib/contrast/extensions/framework/rails/active_record_time_zone_inherited.rb +0 -21
- data/lib/contrast/extensions/framework/rails/buffer.rb +0 -28
- data/lib/contrast/extensions/framework/rails/configuration.rb +0 -27
- data/lib/contrast/extensions/framework/sinatra/base.rb +0 -59
- data/lib/contrast/extensions/ruby_core/assess/array.rb +0 -59
- data/lib/contrast/extensions/ruby_core/assess/basic_object.rb +0 -15
- data/lib/contrast/extensions/ruby_core/assess/fiber.rb +0 -124
- data/lib/contrast/extensions/ruby_core/assess/hash.rb +0 -22
- data/lib/contrast/extensions/ruby_core/assess/kernel.rb +0 -95
- data/lib/contrast/extensions/ruby_core/assess/module.rb +0 -14
- data/lib/contrast/extensions/ruby_core/assess/regexp.rb +0 -206
- data/lib/contrast/extensions/ruby_core/assess/tilt_template_trigger.rb +0 -73
- data/lib/contrast/extensions/ruby_core/assess/xpath_library_trigger.rb +0 -40
- data/lib/contrast/extensions/ruby_core/eval_trigger.rb +0 -52
- data/lib/contrast/extensions/ruby_core/inventory/datastores.rb +0 -37
- data/lib/contrast/extensions/ruby_core/protect/applies_command_injection_rule.rb +0 -72
- data/lib/contrast/extensions/ruby_core/protect/applies_deserialization_rule.rb +0 -60
- data/lib/contrast/extensions/ruby_core/protect/applies_no_sqli_rule.rb +0 -83
- data/lib/contrast/extensions/ruby_core/protect/applies_path_traversal_rule.rb +0 -123
- data/lib/contrast/extensions/ruby_core/protect/applies_sqli_rule.rb +0 -65
- data/lib/contrast/extensions/ruby_core/protect/applies_xxe_rule.rb +0 -143
- data/lib/contrast/extensions/ruby_core/protect/kernel.rb +0 -30
- data/lib/contrast/framework/rails_support.rb +0 -88
- data/lib/contrast/framework/sinatra_application_helper.rb +0 -49
- data/lib/contrast/framework/sinatra_support.rb +0 -94
- data/lib/contrast/utils/comment_range.rb +0 -19
- data/lib/contrast/utils/data_store_util.rb +0 -23
- data/lib/contrast/utils/environment_util.rb +0 -81
- data/lib/contrast/utils/performs_logging.rb +0 -152
- data/lib/contrast/utils/rack_assess_session_cookie.rb +0 -104
- data/lib/contrast/utils/rails_assess_configuration.rb +0 -95
- data/lib/contrast/utils/random_util.rb +0 -22
- data/resources/csrf/inject.js +0 -44
- data/resources/factory-bot-spec/spec_helper.rb +0 -30
- data/resources/rubocops/kernel/catch_cop.rb +0 -37
- data/resources/rubocops/kernel/require_cop.rb +0 -37
- data/resources/rubocops/kernel/require_relative_cop.rb +0 -33
- data/resources/rubocops/module/autoload_cop.rb +0 -37
- data/resources/rubocops/module/const_defined_cop.rb +0 -37
- data/resources/rubocops/module/const_get_cop.rb +0 -37
- data/resources/rubocops/module/const_set_cop.rb +0 -37
- data/resources/rubocops/module/constants_cop.rb +0 -37
- data/resources/rubocops/module/name_cop.rb +0 -37
- data/resources/rubocops/object/class_cop.rb +0 -37
- data/resources/rubocops/object/freeze_cop.rb +0 -37
- data/resources/rubocops/object/frozen_cop.rb +0 -37
- data/resources/rubocops/object/is_a_cop.rb +0 -37
- data/resources/rubocops/object/method_cop.rb +0 -37
- data/resources/rubocops/object/respond_to_cop.rb +0 -37
- data/resources/rubocops/object/singleton_class_cop.rb +0 -37
- data/resources/rubocops/regexp/spelling_cop.rb +0 -44
- data/resources/rubocops/thread/new_cop.rb +0 -39
- data/resources/ruby-spec/ancestors_spec.rb +0 -70
- data/resources/ruby-spec/modulo_spec.rb +0 -831
- data/resources/ruby-spec/parameters_spec.rb +0 -261
- data/resources/ruby-spec/ruby_spec_spec_helper.rb +0 -35
@@ -44,18 +44,16 @@ module Contrast
|
|
44
44
|
extend Contrast::Agent::Patching::Policy::AfterLoadPatcher
|
45
45
|
|
46
46
|
include Contrast::Components::Interface
|
47
|
-
access_component :
|
47
|
+
access_component :agent, :analysis, :logging, :scope
|
48
48
|
|
49
49
|
class << self
|
50
50
|
# Hook to install the Contrast changes needed to allow for the
|
51
51
|
# instrumentation of the application - this only occurs once, during
|
52
52
|
# startup to catchup on everything we didn't see get loaded
|
53
53
|
def patch
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
Contrast::Agent::Assess::Policy::RewriterPatch.rewrite_interpolations
|
58
|
-
end
|
54
|
+
catchup_after_load_patches
|
55
|
+
patch_methods
|
56
|
+
Contrast::Agent::Assess::Policy::RewriterPatch.rewrite_interpolations
|
59
57
|
end
|
60
58
|
|
61
59
|
# Hook to only monkeypatch Contrast. This will not trigger any
|
@@ -91,7 +89,7 @@ module Contrast
|
|
91
89
|
patch_into_module(module_data)
|
92
90
|
all_module_names.delete(mod_name) if status_type.get_status(mod).patched?
|
93
91
|
rescue StandardError => e
|
94
|
-
logger.error(
|
92
|
+
logger.error('Unable to patch module', e, module: mod_name)
|
95
93
|
end
|
96
94
|
|
97
95
|
# We did it, team. We found a patcher(s) that applies to the given
|
@@ -150,20 +148,20 @@ module Contrast
|
|
150
148
|
# only be invoked by the patch_methods method above in order to
|
151
149
|
# ensure it is wrapped in a synchronize call
|
152
150
|
def synchronized_patch_methods
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
151
|
+
logger.trace_with_time('Running patching') do
|
152
|
+
patched = []
|
153
|
+
all_module_names.each do |patchable_name|
|
154
|
+
next if AGENT.skip_instrumentation?(patchable_name)
|
157
155
|
|
158
|
-
|
159
|
-
|
156
|
+
patchable_mod = patchable(patchable_name)
|
157
|
+
next unless patchable_mod
|
160
158
|
|
161
|
-
|
162
|
-
|
163
|
-
|
159
|
+
module_data = Contrast::Agent::ModuleData.new(patchable_mod, patchable_name)
|
160
|
+
patch_into_module(module_data)
|
161
|
+
patched << patchable_name if status_type.get_status(patchable_mod).patched?
|
162
|
+
end
|
163
|
+
all_module_names.subtract(patched)
|
164
164
|
end
|
165
|
-
all_module_names.subtract(patched)
|
166
|
-
# end
|
167
165
|
end
|
168
166
|
|
169
167
|
# Given the patchers that apply to this class that may apply, patch
|
@@ -187,9 +185,6 @@ module Contrast
|
|
187
185
|
|
188
186
|
clazz = module_data.mod
|
189
187
|
|
190
|
-
status = status_type.get_status(clazz)
|
191
|
-
return if (status.patched? || status.patching?) && !redo_patch
|
192
|
-
|
193
188
|
status.patching!
|
194
189
|
patched = include_module(module_data)
|
195
190
|
|
@@ -216,19 +211,22 @@ module Contrast
|
|
216
211
|
rescue StandardError => e
|
217
212
|
status ||= status_type.get_status(module_data.mod)
|
218
213
|
status.failed_patch!
|
219
|
-
logger.warn(e,
|
214
|
+
logger.warn('Patching failed', e, module: module_data.name)
|
220
215
|
ensure
|
221
|
-
logger.
|
216
|
+
logger.trace('Patching complete',
|
217
|
+
module: module_data.name,
|
218
|
+
result: Contrast::Agent::Patching::Policy::PatchStatus.get_status(
|
219
|
+
module_data.mod).patch_status)
|
222
220
|
end
|
223
221
|
|
224
222
|
# Includes the given module with the
|
225
|
-
# Contrast::
|
223
|
+
# Contrast::Extension::Assess::AssessExtension
|
226
224
|
# @param module_data [Contrast::Agent::ModuleData] the module, and
|
227
225
|
# its name, that's being patched into
|
228
226
|
def include_module module_data
|
229
227
|
return false unless Contrast::Agent::Assess::Policy::Policy.instance.tracked_classes.include?(module_data.name)
|
230
228
|
|
231
|
-
module_data.mod.send(:include, Contrast::
|
229
|
+
module_data.mod.send(:include, Contrast::Extension::Assess::AssessExtension)
|
232
230
|
true
|
233
231
|
end
|
234
232
|
|
@@ -300,10 +298,10 @@ module Contrast
|
|
300
298
|
end
|
301
299
|
|
302
300
|
# core extensions
|
303
|
-
cs__scoped_require 'contrast/
|
304
|
-
cs__scoped_require 'contrast/
|
305
|
-
cs__scoped_require 'contrast/
|
306
|
-
cs__scoped_require 'contrast/
|
307
|
-
cs__scoped_require 'contrast/
|
301
|
+
cs__scoped_require 'contrast/extension/module'
|
302
|
+
cs__scoped_require 'contrast/extension/assess'
|
303
|
+
cs__scoped_require 'contrast/extension/inventory'
|
304
|
+
cs__scoped_require 'contrast/extension/protect'
|
305
|
+
cs__scoped_require 'contrast/extension/protect/kernel'
|
308
306
|
|
309
307
|
cs__scoped_require 'cs__contrast_patch/cs__contrast_patch'
|
@@ -2,6 +2,8 @@
|
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
cs__scoped_require 'json'
|
5
|
+
cs__scoped_require 'singleton'
|
6
|
+
|
5
7
|
cs__scoped_require 'contrast'
|
6
8
|
cs__scoped_require 'contrast/components/interface'
|
7
9
|
cs__scoped_require 'contrast/agent/patching/policy/module_policy'
|
@@ -33,10 +35,9 @@ module Contrast
|
|
33
35
|
raise(NotImplementedError, 'specify the concrete node type for this poilcy')
|
34
36
|
end
|
35
37
|
|
36
|
-
access_component :
|
38
|
+
access_component :analysis, :logging
|
37
39
|
|
38
|
-
|
39
|
-
attr_reader :sources, :propagators, :triggers, :patched_names
|
40
|
+
attr_reader :sources, :propagators, :triggers, :providers, :tracked_classes
|
40
41
|
|
41
42
|
SOURCES_KEY = 'sources'
|
42
43
|
PROPAGATION_KEY = 'propagators'
|
@@ -54,7 +55,6 @@ module Contrast
|
|
54
55
|
@triggers = []
|
55
56
|
@providers = {}
|
56
57
|
@tracked_classes = []
|
57
|
-
@patched_names = Set.new
|
58
58
|
|
59
59
|
json = Contrast::Utils::ResourceLoader.load(cs__class.policy_json)
|
60
60
|
from_hash_string(json)
|
@@ -85,14 +85,14 @@ module Contrast
|
|
85
85
|
|
86
86
|
def add_node node, node_type = :trigger
|
87
87
|
unless node
|
88
|
-
logger.error(
|
88
|
+
logger.error('Node was nil when adding node to policy')
|
89
89
|
return
|
90
90
|
end
|
91
91
|
|
92
92
|
begin
|
93
93
|
node.validate
|
94
94
|
rescue ArgumentError => e
|
95
|
-
logger.error(
|
95
|
+
logger.error('Node failed validation', e)
|
96
96
|
return
|
97
97
|
end
|
98
98
|
|
@@ -107,7 +107,7 @@ module Contrast
|
|
107
107
|
module_names << node.class_name
|
108
108
|
@sources << node
|
109
109
|
else
|
110
|
-
logger.error(
|
110
|
+
logger.error('Invalid node_type provided when adding node to policy', node_type: node_type)
|
111
111
|
end
|
112
112
|
end
|
113
113
|
|
@@ -13,10 +13,10 @@ module Contrast
|
|
13
13
|
# @abstract
|
14
14
|
class PolicyNode
|
15
15
|
include Contrast::Components::Interface
|
16
|
-
access_component :scope
|
16
|
+
access_component :analysis, :scope
|
17
17
|
|
18
|
-
attr_accessor :class_name, :instance_method, :method_name, :
|
19
|
-
attr_reader :properties
|
18
|
+
attr_accessor :class_name, :instance_method, :method_name, :method_visibility
|
19
|
+
attr_reader :properties, :method_scope
|
20
20
|
|
21
21
|
def node_class
|
22
22
|
raise NotImplementedError, 'specify the type of the feature for which this node patches'
|
@@ -60,14 +60,6 @@ module Contrast
|
|
60
60
|
instance_method
|
61
61
|
end
|
62
62
|
|
63
|
-
def private?
|
64
|
-
@method_visibility == :private
|
65
|
-
end
|
66
|
-
|
67
|
-
def public?
|
68
|
-
@method_visibility == :public
|
69
|
-
end
|
70
|
-
|
71
63
|
private
|
72
64
|
|
73
65
|
# Convert strings to symbols here, once, to avoid doing so on every
|
@@ -1,7 +1,7 @@
|
|
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
5
|
cs__scoped_require 'contrast/agent/patching/policy/policy_node'
|
6
6
|
|
7
7
|
module Contrast
|
@@ -15,16 +15,13 @@ module Contrast
|
|
15
15
|
# input attempted to or did do damage).
|
16
16
|
class TriggerNode < PolicyNode
|
17
17
|
JSON_NAME = 'name'
|
18
|
-
JSON_NODES = 'nodes'
|
19
18
|
JSON_APPLICATOR = 'applicator'
|
20
19
|
JSON_APPLICATOR_METHOD = 'applicator_method'
|
21
20
|
JSON_REQUIRED_PROPS = 'required_properties'
|
22
21
|
JSON_OPTIONAL_PROPS = 'optional_properties'
|
23
|
-
JSON_SCOPE = 'scope'
|
24
22
|
JSON_ON_EXCEPTION = 'on_exception'
|
25
23
|
|
26
|
-
attr_reader :rule_id
|
27
|
-
attr_accessor :applicator_method, :applicator, :on_exception, :required_properties, :optional_properties
|
24
|
+
attr_reader :applicator, :applicator_method, :on_exception, :optional_properties, :required_properties, :rule_id
|
28
25
|
|
29
26
|
def initialize trigger_hash = {}, rule_hash = {}
|
30
27
|
super(trigger_hash)
|
@@ -0,0 +1,63 @@
|
|
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/protect/rule/cmd_injection'
|
5
|
+
cs__scoped_require 'contrast/agent/protect/policy/applies_deserialization_rule'
|
6
|
+
cs__scoped_require 'contrast/agent/protect/policy/rule_applicator'
|
7
|
+
|
8
|
+
module Contrast
|
9
|
+
module Agent
|
10
|
+
module Protect
|
11
|
+
module Policy
|
12
|
+
# This Module is how we apply the Command Injection rule. It is called
|
13
|
+
# from our patches of the targeted methods in which command execution
|
14
|
+
# occurs. It is responsible for deciding if the infilter methods of the
|
15
|
+
# rule should be invoked.
|
16
|
+
# In addition, b/c of the nature of Deserialization's sand boxing
|
17
|
+
# function, this Module's apply methods call through to the
|
18
|
+
# {#apply_deserialization_command_check} method of the
|
19
|
+
# Deserialization applicator.
|
20
|
+
module AppliesCommandInjectionRule
|
21
|
+
extend Contrast::Agent::Protect::Policy::RuleApplicator
|
22
|
+
|
23
|
+
CS__SEMICOLON = '; '
|
24
|
+
|
25
|
+
class << self
|
26
|
+
def invoke method, _exception, _properties, object, args
|
27
|
+
return unless valid_command?(args)
|
28
|
+
|
29
|
+
command = build_command(args)
|
30
|
+
Contrast::Agent::Protect::Policy::AppliesDeserializationRule.apply_deserialization_command_check(command)
|
31
|
+
return if skip_analysis?
|
32
|
+
|
33
|
+
begin
|
34
|
+
clazz = object.is_a?(Module) ? object : object.cs__class
|
35
|
+
class_name = clazz.cs__name
|
36
|
+
rule.infilter(Contrast::Agent::REQUEST_TRACKER.current, class_name, method, command)
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
protected
|
41
|
+
|
42
|
+
def name
|
43
|
+
Contrast::Agent::Protect::Rule::CmdInjection::NAME
|
44
|
+
end
|
45
|
+
|
46
|
+
private
|
47
|
+
|
48
|
+
def valid_command? command
|
49
|
+
command && (command.is_a?(String) || command.is_a?(Array))
|
50
|
+
end
|
51
|
+
|
52
|
+
def build_command command
|
53
|
+
return command if command.is_a?(String)
|
54
|
+
|
55
|
+
command = command.drop(1) if command.length > 1
|
56
|
+
command.join(CS__SEMICOLON)
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
@@ -0,0 +1,52 @@
|
|
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/protect/rule/deserialization'
|
5
|
+
cs__scoped_require 'contrast/agent/protect/policy/rule_applicator'
|
6
|
+
|
7
|
+
module Contrast
|
8
|
+
module Agent
|
9
|
+
module Protect
|
10
|
+
module Policy
|
11
|
+
# This Module is how we apply the Deserialization rule. It is called from
|
12
|
+
# our patches of the targeted methods in which deserialization occurs.
|
13
|
+
# It is responsible for deciding if the infilter methods of the rule
|
14
|
+
# should be invoked.
|
15
|
+
module AppliesDeserializationRule
|
16
|
+
extend Contrast::Agent::Protect::Policy::RuleApplicator
|
17
|
+
|
18
|
+
class << self
|
19
|
+
def invoke _method, _exception, _properties, _object, args
|
20
|
+
return unless valid_input?(args)
|
21
|
+
return if skip_analysis?
|
22
|
+
|
23
|
+
rule.infilter(Contrast::Agent::REQUEST_TRACKER.current, args[0])
|
24
|
+
end
|
25
|
+
|
26
|
+
def apply_deserialization_command_check command
|
27
|
+
return unless command
|
28
|
+
return if skip_analysis?
|
29
|
+
|
30
|
+
rule.check_command_scope(command)
|
31
|
+
end
|
32
|
+
|
33
|
+
protected
|
34
|
+
|
35
|
+
def name
|
36
|
+
Contrast::Agent::Protect::Rule::Deserialization::NAME
|
37
|
+
end
|
38
|
+
|
39
|
+
private
|
40
|
+
|
41
|
+
def valid_input? args
|
42
|
+
return false unless args&.any?
|
43
|
+
|
44
|
+
input = args[0]
|
45
|
+
input.is_a?(String)
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
@@ -0,0 +1,68 @@
|
|
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/protect/rule/no_sqli'
|
5
|
+
cs__scoped_require 'contrast/agent/protect/policy/rule_applicator'
|
6
|
+
|
7
|
+
module Contrast
|
8
|
+
module Agent
|
9
|
+
module Protect
|
10
|
+
module Policy
|
11
|
+
# This Module is how we apply the NoSQL Injection rule. It is called from
|
12
|
+
# our patches of the targeted methods in which the execution of String
|
13
|
+
# based NoSQL queries occur. It is responsible for deciding if the
|
14
|
+
# infilter methods of the rule should be invoked.
|
15
|
+
module AppliesNoSqliRule
|
16
|
+
extend Contrast::Agent::Protect::Policy::RuleApplicator
|
17
|
+
|
18
|
+
class << self
|
19
|
+
def invoke method, _exception, properties, _object, args
|
20
|
+
return unless valid_input?(args)
|
21
|
+
return if skip_analysis?
|
22
|
+
|
23
|
+
database = properties['database']
|
24
|
+
operations = args[0]
|
25
|
+
context = Contrast::Agent::REQUEST_TRACKER.current
|
26
|
+
if operations.is_a?(Array)
|
27
|
+
operations.each do |m|
|
28
|
+
handle_operation(context, database, method, m)
|
29
|
+
end
|
30
|
+
else
|
31
|
+
handle_operation(context, database, method, operations)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
protected
|
36
|
+
|
37
|
+
def name
|
38
|
+
Contrast::Agent::Protect::Rule::NoSqli::NAME
|
39
|
+
end
|
40
|
+
|
41
|
+
private
|
42
|
+
|
43
|
+
def valid_input? args
|
44
|
+
return false unless args&.any?
|
45
|
+
|
46
|
+
args[0]
|
47
|
+
end
|
48
|
+
|
49
|
+
def handle_operation context, database, _action, operation
|
50
|
+
data = extract_mongo_data(operation)
|
51
|
+
return unless data && !data.empty?
|
52
|
+
|
53
|
+
rule.infilter(context, database, data)
|
54
|
+
end
|
55
|
+
|
56
|
+
def extract_mongo_data operation
|
57
|
+
if operation.cs__respond_to? :selector
|
58
|
+
operation.selector
|
59
|
+
elsif operation.cs__respond_to? :documents
|
60
|
+
operation.documents
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|
@@ -0,0 +1,117 @@
|
|
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/protect/rule/path_traversal'
|
5
|
+
cs__scoped_require 'contrast/agent/protect/policy/rule_applicator'
|
6
|
+
cs__scoped_require 'contrast/utils/object_share'
|
7
|
+
|
8
|
+
module Contrast
|
9
|
+
module Agent
|
10
|
+
module Protect
|
11
|
+
module Policy
|
12
|
+
# This Module is how we apply the Path Traversal rule. It is called from
|
13
|
+
# our patches of the targeted methods in which File or IO access occur.
|
14
|
+
# It is responsible for deciding if the infilter methods of the rule
|
15
|
+
# should be invoked.
|
16
|
+
module AppliesPathTraversalRule
|
17
|
+
extend Contrast::Agent::Protect::Policy::RuleApplicator
|
18
|
+
|
19
|
+
class << self
|
20
|
+
def invoke method, _exception, properties, object, args
|
21
|
+
return unless args&.any?
|
22
|
+
|
23
|
+
path = args[0]
|
24
|
+
return unless path.is_a?(String)
|
25
|
+
return if skip_analysis?
|
26
|
+
|
27
|
+
action = properties['action']
|
28
|
+
write_marker = write?(action, *args)
|
29
|
+
possible_write = write_marker && possible_write(write_marker)
|
30
|
+
path_traversal_rule(path, possible_write, object, method)
|
31
|
+
|
32
|
+
# If the action was copy, we need to handle the write half of it.
|
33
|
+
# We handled read in line above.
|
34
|
+
return unless action == COPY
|
35
|
+
return unless args.length > 1
|
36
|
+
|
37
|
+
dst = args[1]
|
38
|
+
return unless dst.is_a?(String)
|
39
|
+
|
40
|
+
path_traversal_rule(dst, true, object, method)
|
41
|
+
end
|
42
|
+
|
43
|
+
protected
|
44
|
+
|
45
|
+
def name
|
46
|
+
Contrast::Agent::Protect::Rule::PathTraversal::NAME
|
47
|
+
end
|
48
|
+
|
49
|
+
private
|
50
|
+
|
51
|
+
def possible_write input
|
52
|
+
input.cs__respond_to?(:to_s) &&
|
53
|
+
input.to_s.include?(Contrast::Utils::ObjectShare::WRITE_FLAG)
|
54
|
+
end
|
55
|
+
|
56
|
+
READ = 'read'
|
57
|
+
WRITE = 'write'
|
58
|
+
COPY = 'copy'
|
59
|
+
def write? action, *args
|
60
|
+
return false if action == READ
|
61
|
+
return false if action == COPY
|
62
|
+
return true if action == WRITE
|
63
|
+
|
64
|
+
write_marker = args.length > 1 ? args[1] : nil
|
65
|
+
write_marker && possible_write(write_marker)
|
66
|
+
end
|
67
|
+
|
68
|
+
def path_traversal_rule path, possible_write, object, method
|
69
|
+
return unless applies_to?(path, possible_write)
|
70
|
+
|
71
|
+
rule.infilter(Contrast::Agent::REQUEST_TRACKER.current, method, path)
|
72
|
+
rescue Contrast::SecurityException => e
|
73
|
+
raise e
|
74
|
+
rescue StandardError => e
|
75
|
+
logger.error('Error applying path traversal', e, module: object.cs__class.cs__name, method: method)
|
76
|
+
end
|
77
|
+
|
78
|
+
CS__SAFER_REL_PATHS = %w[public app log tmp].cs__freeze
|
79
|
+
def safer_abs_paths
|
80
|
+
@_safer_abs_paths ||= begin
|
81
|
+
pwd = ENV['PWD']
|
82
|
+
if pwd
|
83
|
+
tmp = CS__SAFER_REL_PATHS.map { |r| "#{ pwd }/#{ r }" }
|
84
|
+
gems = ENV['GEM_PATH']
|
85
|
+
tmp += gems.split(Contrast::Utils::ObjectShare::COLON) if gems
|
86
|
+
tmp
|
87
|
+
else
|
88
|
+
[]
|
89
|
+
end
|
90
|
+
end
|
91
|
+
end
|
92
|
+
|
93
|
+
def applies_to? path, possible_write = false
|
94
|
+
# any possible write is a potential risk
|
95
|
+
return true if possible_write
|
96
|
+
|
97
|
+
# any path that moves 'up' is a potential risk
|
98
|
+
return true if path.index(Contrast::Utils::ObjectShare::PARENT_PATH)
|
99
|
+
|
100
|
+
path = path.downcase
|
101
|
+
if path.start_with?(Contrast::Utils::ObjectShare::SLASH)
|
102
|
+
safer_abs_paths.each do |prefix|
|
103
|
+
return false if path.start_with?(prefix)
|
104
|
+
end
|
105
|
+
else
|
106
|
+
CS__SAFER_REL_PATHS.each do |prefix|
|
107
|
+
return false if path.start_with?(prefix)
|
108
|
+
end
|
109
|
+
end
|
110
|
+
true
|
111
|
+
end
|
112
|
+
end
|
113
|
+
end
|
114
|
+
end
|
115
|
+
end
|
116
|
+
end
|
117
|
+
end
|