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 'monitor'
|
|
5
5
|
cs__scoped_require 'contrast/components/interface'
|
6
6
|
|
7
7
|
cs__scoped_require 'contrast/agent'
|
8
|
-
cs__scoped_require 'contrast/
|
8
|
+
cs__scoped_require 'contrast/logger/log'
|
9
9
|
cs__scoped_require 'contrast/agent/patching/policy/method_policy'
|
10
10
|
cs__scoped_require 'contrast/agent/patching/policy/patch_status'
|
11
11
|
cs__scoped_require 'contrast/agent/patching/policy/trigger_node'
|
@@ -127,6 +127,7 @@ module Contrast
|
|
127
127
|
# @param args [Array<Object>] The arguments passed to the method
|
128
128
|
# being invoked.
|
129
129
|
def apply_protect method_policy, method, exception, object, args
|
130
|
+
return unless AGENT.enabled?
|
130
131
|
return unless PROTECT.enabled?
|
131
132
|
|
132
133
|
apply_trigger_only(method_policy&.protect_node,
|
@@ -352,7 +353,7 @@ module Contrast
|
|
352
353
|
elsif target_module.public_instance_methods(false).include?(method_name)
|
353
354
|
:public
|
354
355
|
else
|
355
|
-
raise
|
356
|
+
raise NoMethodError,
|
356
357
|
<<~ERR
|
357
358
|
Tried to register a C-defined #{ impl } patch for \
|
358
359
|
#{ target_module_name }##{ method_name }, but can't find :#{ method_name }.
|
@@ -51,11 +51,9 @@ module Contrast
|
|
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
|
@@ -222,13 +220,13 @@ module Contrast
|
|
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'
|
@@ -22,17 +22,17 @@ module Contrast
|
|
22
22
|
|
23
23
|
# Indicates the folder in `resources` where this policy lives.
|
24
24
|
def self.policy_folder
|
25
|
-
raise(
|
25
|
+
raise(NoMethodError, 'specify policy_folder for patching')
|
26
26
|
end
|
27
27
|
|
28
28
|
# Indicates is this feature has been disabled by the configuration,
|
29
29
|
# read at startup, and therefore can never be enabled.
|
30
30
|
def disabled_globally?
|
31
|
-
raise(
|
31
|
+
raise(NoMethodError, 'specify disabled_globally? conditions for patching')
|
32
32
|
end
|
33
33
|
|
34
34
|
def node_type
|
35
|
-
raise(
|
35
|
+
raise(NoMethodError, 'specify the concrete node type for this poilcy')
|
36
36
|
end
|
37
37
|
|
38
38
|
access_component :analysis, :logging
|
@@ -13,17 +13,17 @@ 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
18
|
attr_accessor :class_name, :instance_method, :method_name, :method_visibility
|
19
19
|
attr_reader :properties, :method_scope
|
20
20
|
|
21
21
|
def node_class
|
22
|
-
raise
|
22
|
+
raise NoMethodError, 'specify the type of the feature for which this node patches'
|
23
23
|
end
|
24
24
|
|
25
25
|
def feature
|
26
|
-
raise
|
26
|
+
raise NoMethodError, 'specify the name of the feature for which this node patches'
|
27
27
|
end
|
28
28
|
|
29
29
|
def initialize policy_hash = {}
|
@@ -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
|
@@ -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
|
@@ -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/agent/protect/rule/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 SQL Injection rule. It is called from
|
12
|
+
# our patches of the targeted methods in which the execution of String
|
13
|
+
# based SQL queries occur. It is responsible for deciding if the infilter
|
14
|
+
# methods of the rule should be invoked.
|
15
|
+
class AppliesSqliRule
|
16
|
+
extend Contrast::Agent::Protect::Policy::RuleApplicator
|
17
|
+
|
18
|
+
DATABASE_MYSQL = 'MySQL'
|
19
|
+
DATABASE_SQLITE = 'SQLite3'
|
20
|
+
DATABASE_PG = 'PostgreSQL'
|
21
|
+
|
22
|
+
class << self
|
23
|
+
def invoke _method, _exception, properties, _object, args
|
24
|
+
database = properties['database']
|
25
|
+
return unless database
|
26
|
+
|
27
|
+
index = properties[Contrast::Utils::ObjectShare::INDEX]
|
28
|
+
return unless valid_input?(index, args)
|
29
|
+
return if skip_analysis?
|
30
|
+
|
31
|
+
sql = args[index]
|
32
|
+
rule.infilter(Contrast::Agent::REQUEST_TRACKER.current, database, sql)
|
33
|
+
end
|
34
|
+
|
35
|
+
protected
|
36
|
+
|
37
|
+
def name
|
38
|
+
Contrast::Agent::Protect::Rule::Sqli::NAME
|
39
|
+
end
|
40
|
+
|
41
|
+
private
|
42
|
+
|
43
|
+
def valid_input? index, args
|
44
|
+
return false unless args && args.length > index
|
45
|
+
|
46
|
+
sql = args[index]
|
47
|
+
sql && !sql.empty?
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|