contrast-agent 3.13.1 → 4.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/exe/contrast_service +1 -7
- data/ext/cs__assess_active_record_named/cs__active_record_named.c +8 -7
- data/ext/cs__assess_array/cs__assess_array.c +6 -5
- data/ext/cs__assess_basic_object/cs__assess_basic_object.c +5 -5
- data/ext/cs__assess_fiber_track/cs__assess_fiber_track.c +2 -1
- data/ext/cs__assess_hash/cs__assess_hash.c +18 -17
- data/ext/cs__assess_hash/cs__assess_hash.h +2 -1
- data/ext/cs__assess_kernel/cs__assess_kernel.c +7 -8
- data/ext/cs__assess_marshal_module/cs__assess_marshal_module.c +18 -16
- data/ext/cs__assess_marshal_module/cs__assess_marshal_module.h +1 -0
- data/ext/cs__assess_module/cs__assess_module.c +6 -6
- data/ext/cs__assess_regexp/cs__assess_regexp.c +4 -4
- data/ext/cs__assess_string/cs__assess_string.c +31 -16
- data/ext/cs__assess_string/cs__assess_string.h +6 -1
- data/ext/cs__assess_string_interpolation26/cs__assess_string_interpolation26.c +4 -2
- data/ext/cs__assess_yield_track/cs__assess_yield_track.c +2 -2
- data/ext/cs__common/cs__common.c +48 -39
- data/ext/cs__common/cs__common.h +16 -21
- data/ext/cs__contrast_patch/cs__contrast_patch.c +27 -25
- data/ext/cs__contrast_patch/cs__contrast_patch.h +5 -7
- data/ext/cs__protect_kernel/cs__protect_kernel.c +11 -12
- data/ext/cs__protect_kernel/cs__protect_kernel.h +2 -2
- data/lib/contrast-agent.rb +1 -1
- data/lib/contrast.rb +13 -23
- data/lib/contrast/agent.rb +39 -47
- data/lib/contrast/agent/assess.rb +12 -12
- data/lib/contrast/agent/assess/contrast_event.rb +151 -85
- data/lib/contrast/agent/assess/events/event_factory.rb +2 -2
- data/lib/contrast/agent/assess/events/source_event.rb +3 -3
- data/lib/contrast/agent/assess/finalizers/freeze.rb +15 -0
- data/lib/contrast/agent/assess/finalizers/hash.rb +97 -0
- data/lib/contrast/agent/assess/policy/dynamic_source_factory.rb +11 -4
- data/lib/contrast/agent/assess/policy/patcher.rb +6 -6
- data/lib/contrast/agent/assess/policy/policy.rb +9 -11
- data/lib/contrast/agent/assess/policy/policy_node.rb +17 -12
- data/lib/contrast/agent/assess/policy/policy_scanner.rb +21 -5
- data/lib/contrast/agent/assess/policy/preshift.rb +13 -7
- data/lib/contrast/agent/assess/policy/propagation_method.rb +64 -44
- data/lib/contrast/agent/assess/policy/propagation_node.rb +2 -2
- data/lib/contrast/agent/assess/policy/propagator.rb +18 -18
- data/lib/contrast/agent/assess/policy/propagator/append.rb +8 -5
- data/lib/contrast/agent/assess/policy/propagator/base.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/center.rb +9 -5
- data/lib/contrast/agent/assess/policy/propagator/custom.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/database_write.rb +6 -4
- data/lib/contrast/agent/assess/policy/propagator/insert.rb +7 -4
- data/lib/contrast/agent/assess/policy/propagator/keep.rb +4 -1
- data/lib/contrast/agent/assess/policy/propagator/match_data.rb +7 -9
- data/lib/contrast/agent/assess/policy/propagator/next.rb +7 -5
- data/lib/contrast/agent/assess/policy/propagator/prepend.rb +13 -5
- data/lib/contrast/agent/assess/policy/propagator/remove.rb +8 -4
- data/lib/contrast/agent/assess/policy/propagator/replace.rb +5 -2
- data/lib/contrast/agent/assess/policy/propagator/reverse.rb +7 -5
- data/lib/contrast/agent/assess/policy/propagator/select.rb +13 -7
- data/lib/contrast/agent/assess/policy/propagator/splat.rb +10 -9
- data/lib/contrast/agent/assess/policy/propagator/split.rb +27 -22
- data/lib/contrast/agent/assess/policy/propagator/substitution.rb +52 -35
- data/lib/contrast/agent/assess/policy/propagator/trim.rb +11 -5
- data/lib/contrast/agent/assess/policy/rewriter_patch.rb +5 -5
- data/lib/contrast/agent/assess/policy/source_method.rb +90 -72
- data/lib/contrast/agent/assess/policy/source_validation/cross_site_validator.rb +1 -1
- data/lib/contrast/agent/assess/policy/source_validation/source_validation.rb +1 -1
- data/lib/contrast/agent/assess/policy/trigger/reflected_xss.rb +16 -12
- data/lib/contrast/agent/assess/policy/trigger/xpath.rb +2 -2
- data/lib/contrast/agent/assess/policy/trigger_method.rb +81 -33
- data/lib/contrast/agent/assess/policy/trigger_node.rb +41 -46
- data/lib/contrast/agent/assess/policy/trigger_validation/ssrf_validator.rb +2 -1
- data/lib/contrast/agent/assess/policy/trigger_validation/trigger_validation.rb +2 -2
- data/lib/contrast/agent/assess/properties.rb +15 -5
- data/lib/contrast/agent/assess/property/evented.rb +7 -20
- data/lib/contrast/agent/assess/property/tagged.rb +13 -7
- data/lib/contrast/agent/assess/property/updated.rb +131 -0
- data/lib/contrast/agent/assess/rule.rb +2 -2
- data/lib/contrast/agent/assess/rule/base.rb +3 -4
- data/lib/contrast/agent/assess/rule/provider.rb +3 -3
- data/lib/contrast/agent/assess/rule/provider/hardcoded_key.rb +58 -5
- data/lib/contrast/agent/assess/rule/provider/hardcoded_password.rb +24 -9
- data/lib/contrast/agent/assess/rule/provider/hardcoded_value_rule.rb +85 -16
- data/lib/contrast/agent/assess/tag.rb +1 -1
- data/lib/contrast/agent/assess/tracker.rb +66 -0
- data/lib/contrast/agent/at_exit_hook.rb +6 -6
- data/lib/contrast/agent/class_reopener.rb +14 -11
- data/lib/contrast/agent/deadzone/policy/deadzone_node.rb +1 -1
- data/lib/contrast/agent/deadzone/policy/policy.rb +2 -2
- data/lib/contrast/agent/disable_reaction.rb +1 -1
- data/lib/contrast/agent/exclusion_matcher.rb +1 -1
- data/lib/contrast/agent/inventory.rb +15 -0
- data/lib/contrast/agent/inventory/dependencies.rb +50 -0
- data/lib/contrast/agent/inventory/dependency_analysis.rb +37 -0
- data/lib/contrast/agent/inventory/dependency_usage_analysis.rb +104 -0
- data/lib/contrast/agent/inventory/gemfile_digest_cache.rb +38 -0
- data/lib/contrast/agent/inventory/policy/datastores.rb +2 -2
- data/lib/contrast/agent/inventory/policy/policy.rb +3 -3
- data/lib/contrast/agent/inventory/policy/trigger_node.rb +1 -1
- data/lib/contrast/agent/middleware.rb +33 -34
- data/lib/contrast/agent/patching/policy/after_load_patch.rb +9 -9
- data/lib/contrast/agent/patching/policy/after_load_patcher.rb +23 -22
- data/lib/contrast/agent/patching/policy/module_policy.rb +11 -11
- data/lib/contrast/agent/patching/policy/patch.rb +15 -15
- data/lib/contrast/agent/patching/policy/patcher.rb +43 -44
- data/lib/contrast/agent/patching/policy/policy.rb +23 -12
- data/lib/contrast/agent/patching/policy/policy_node.rb +1 -1
- data/lib/contrast/agent/patching/policy/trigger_node.rb +2 -2
- data/lib/contrast/agent/protect/policy/applies_command_injection_rule.rb +6 -8
- data/lib/contrast/agent/protect/policy/applies_deserialization_rule.rb +2 -2
- data/lib/contrast/agent/protect/policy/applies_no_sqli_rule.rb +2 -2
- data/lib/contrast/agent/protect/policy/applies_path_traversal_rule.rb +7 -6
- data/lib/contrast/agent/protect/policy/applies_sqli_rule.rb +2 -2
- data/lib/contrast/agent/protect/policy/applies_xxe_rule.rb +4 -4
- data/lib/contrast/agent/protect/policy/policy.rb +8 -8
- data/lib/contrast/agent/protect/policy/rule_applicator.rb +1 -1
- data/lib/contrast/agent/protect/policy/trigger_node.rb +1 -1
- data/lib/contrast/agent/protect/rule.rb +18 -18
- data/lib/contrast/agent/protect/rule/base.rb +4 -3
- data/lib/contrast/agent/protect/rule/base_service.rb +1 -1
- data/lib/contrast/agent/protect/rule/cmd_injection.rb +5 -5
- data/lib/contrast/agent/protect/rule/deserialization.rb +1 -1
- data/lib/contrast/agent/protect/rule/http_method_tampering.rb +1 -1
- data/lib/contrast/agent/protect/rule/no_sqli.rb +1 -1
- data/lib/contrast/agent/protect/rule/no_sqli/mongo_no_sql_scanner.rb +1 -0
- data/lib/contrast/agent/protect/rule/path_traversal.rb +4 -5
- data/lib/contrast/agent/protect/rule/sqli.rb +2 -2
- data/lib/contrast/agent/protect/rule/unsafe_file_upload.rb +1 -1
- data/lib/contrast/agent/protect/rule/xss.rb +1 -1
- data/lib/contrast/agent/protect/rule/xxe.rb +3 -5
- data/lib/contrast/agent/protect/rule/xxe/entity_wrapper.rb +2 -2
- data/lib/contrast/agent/railtie.rb +1 -1
- data/lib/contrast/agent/reaction_processor.rb +2 -2
- data/lib/contrast/agent/request.rb +45 -43
- data/lib/contrast/agent/request_context.rb +10 -6
- data/lib/contrast/agent/request_handler.rb +1 -1
- data/lib/contrast/agent/response.rb +23 -12
- data/lib/contrast/agent/rewriter.rb +6 -9
- data/lib/contrast/agent/service_heartbeat.rb +2 -2
- data/lib/contrast/agent/static_analysis.rb +9 -9
- data/lib/contrast/agent/thread.rb +1 -1
- data/lib/contrast/agent/thread_watcher.rb +2 -2
- data/lib/contrast/agent/tracepoint_hook.rb +2 -2
- data/lib/contrast/agent/version.rb +1 -1
- data/lib/contrast/api.rb +4 -4
- data/lib/contrast/api/communication.rb +9 -9
- data/lib/contrast/api/communication/messaging_queue.rb +3 -6
- data/lib/contrast/api/communication/response_processor.rb +1 -1
- data/lib/contrast/api/communication/socket_client.rb +41 -6
- data/lib/contrast/api/communication/speedracer.rb +1 -1
- data/lib/contrast/api/communication/tcp_socket.rb +1 -1
- data/lib/contrast/api/communication/unix_socket.rb +1 -1
- data/lib/contrast/api/decorators.rb +17 -14
- data/lib/contrast/api/decorators/address.rb +20 -20
- data/lib/contrast/api/decorators/application_settings.rb +3 -2
- data/lib/contrast/api/decorators/application_update.rb +7 -8
- data/lib/contrast/api/decorators/http_request.rb +13 -12
- data/lib/contrast/api/decorators/input_analysis.rb +3 -2
- data/lib/contrast/api/decorators/library.rb +53 -0
- data/lib/contrast/api/decorators/library_usage_update.rb +30 -0
- data/lib/contrast/api/decorators/message.rb +4 -2
- data/lib/contrast/api/decorators/rasp_rule_sample.rb +2 -1
- data/lib/contrast/api/decorators/route_coverage.rb +3 -2
- data/lib/contrast/api/decorators/server_features.rb +3 -2
- data/lib/contrast/api/decorators/trace_event.rb +28 -25
- data/lib/contrast/api/decorators/trace_event_object.rb +6 -5
- data/lib/contrast/api/decorators/trace_event_signature.rb +5 -4
- data/lib/contrast/api/decorators/trace_taint_range.rb +4 -3
- data/lib/contrast/api/decorators/user_input.rb +4 -4
- data/lib/contrast/common_agent_configuration.rb +2 -2
- data/lib/contrast/components/agent.rb +8 -7
- data/lib/contrast/components/app_context.rb +50 -39
- data/lib/contrast/components/config.rb +32 -50
- data/lib/contrast/components/contrast_service.rb +10 -10
- data/lib/contrast/components/interface.rb +39 -17
- data/lib/contrast/components/inventory.rb +6 -1
- data/lib/contrast/components/logger.rb +1 -1
- data/lib/contrast/components/scope.rb +3 -3
- data/lib/contrast/components/settings.rb +20 -23
- data/lib/contrast/config.rb +18 -18
- data/lib/contrast/config/application_configuration.rb +5 -2
- data/lib/contrast/config/base_configuration.rb +2 -2
- data/lib/contrast/config/inventory_configuration.rb +2 -2
- data/lib/contrast/config/protect_rule_configuration.rb +1 -1
- data/lib/contrast/config/service_configuration.rb +8 -0
- data/lib/contrast/configuration.rb +93 -52
- data/lib/contrast/extension/assess.rb +21 -22
- data/lib/contrast/extension/assess/array.rb +18 -11
- data/lib/contrast/extension/assess/erb.rb +11 -3
- data/lib/contrast/extension/assess/eval_trigger.rb +7 -7
- data/lib/contrast/extension/assess/exec_trigger.rb +2 -2
- data/lib/contrast/extension/assess/fiber.rb +14 -14
- data/lib/contrast/extension/assess/hash.rb +7 -6
- data/lib/contrast/extension/assess/kernel.rb +34 -28
- data/lib/contrast/extension/assess/marshal.rb +67 -0
- data/lib/contrast/extension/assess/regexp.rb +10 -9
- data/lib/contrast/extension/assess/string.rb +23 -23
- data/lib/contrast/extension/inventory.rb +4 -4
- data/lib/contrast/extension/kernel.rb +1 -1
- data/lib/contrast/extension/module.rb +1 -1
- data/lib/contrast/extension/protect.rb +3 -3
- data/lib/contrast/extension/protect/kernel.rb +4 -4
- data/lib/contrast/extension/protect/psych.rb +2 -2
- data/lib/contrast/framework/base_support.rb +1 -1
- data/lib/contrast/framework/manager.rb +10 -11
- data/lib/contrast/framework/rack/patch/session_cookie.rb +22 -28
- data/lib/contrast/framework/rack/patch/support.rb +1 -1
- data/lib/contrast/framework/rack/support.rb +2 -2
- data/lib/contrast/framework/rails/patch/action_controller_live_buffer.rb +13 -13
- data/lib/contrast/framework/rails/patch/assess_configuration.rb +6 -12
- data/lib/contrast/framework/rails/patch/rails_application_configuration.rb +11 -11
- data/lib/contrast/framework/rails/patch/support.rb +4 -4
- data/lib/contrast/framework/rails/rewrite/action_controller_railties_helper_inherited.rb +11 -11
- data/lib/contrast/framework/rails/rewrite/active_record_attribute_methods_read.rb +12 -12
- data/lib/contrast/framework/rails/rewrite/active_record_named.rb +4 -4
- data/lib/contrast/framework/rails/rewrite/active_record_time_zone_inherited.rb +12 -12
- data/lib/contrast/framework/rails/support.rb +67 -14
- data/lib/contrast/framework/sinatra/patch/base.rb +12 -12
- data/lib/contrast/framework/sinatra/patch/support.rb +1 -1
- data/lib/contrast/framework/sinatra/support.rb +6 -6
- data/lib/contrast/funchook/funchook.rb +1 -1
- data/lib/contrast/logger/application.rb +13 -5
- data/lib/contrast/logger/format.rb +22 -9
- data/lib/contrast/logger/log.rb +17 -10
- data/lib/contrast/logger/request.rb +30 -0
- data/lib/contrast/tasks/config.rb +1 -1
- data/lib/contrast/tasks/service.rb +2 -2
- data/lib/contrast/utils/assess/sampling_util.rb +2 -2
- data/lib/contrast/utils/assess/tracking_util.rb +49 -4
- data/lib/contrast/utils/class_util.rb +2 -2
- data/lib/contrast/utils/duck_utils.rb +0 -10
- data/lib/contrast/utils/env_configuration_item.rb +2 -1
- data/lib/contrast/utils/hash_digest.rb +2 -1
- data/lib/contrast/utils/heap_dump_util.rb +2 -2
- data/lib/contrast/utils/invalid_configuration_util.rb +21 -22
- data/lib/contrast/utils/inventory_util.rb +3 -10
- data/lib/contrast/utils/io_util.rb +1 -1
- data/lib/contrast/utils/os.rb +1 -1
- data/lib/contrast/utils/ruby_ast_rewriter.rb +1 -1
- data/lib/contrast/utils/sha256_builder.rb +2 -14
- data/lib/contrast/utils/stack_trace_utils.rb +2 -2
- data/lib/contrast/utils/string_utils.rb +11 -6
- data/resources/assess/policy.json +31 -22
- data/resources/deadzone/policy.json +5 -0
- data/ruby-agent.gemspec +21 -19
- data/service_executables/VERSION +1 -1
- data/service_executables/linux/contrast-service +0 -0
- data/service_executables/mac/contrast-service +0 -0
- metadata +73 -30
- data/lib/contrast/agent/assess/insulator.rb +0 -49
- data/lib/contrast/agent/require_state.rb +0 -61
- data/lib/contrast/extension/assess/assess_extension.rb +0 -147
- data/lib/contrast/utils/boolean_util.rb +0 -30
- data/lib/contrast/utils/freeze_util.rb +0 -32
- data/lib/contrast/utils/gemfile_reader.rb +0 -193
@@ -1,36 +1,36 @@
|
|
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
|
-
|
4
|
+
require 'monitor'
|
5
5
|
|
6
6
|
# base
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
7
|
+
require 'contrast/agent/patching/policy/patch_status'
|
8
|
+
require 'contrast/agent/patching/policy/method_policy'
|
9
|
+
require 'contrast/agent/patching/policy/module_policy'
|
10
|
+
require 'contrast/components/interface'
|
11
|
+
require 'contrast/utils/class_util'
|
12
12
|
|
13
13
|
# assess
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
14
|
+
require 'contrast/agent/assess/policy/policy'
|
15
|
+
require 'contrast/agent/assess/policy/policy_scanner'
|
16
|
+
require 'contrast/agent/assess/policy/rewriter_patch'
|
17
|
+
require 'contrast/agent/assess/policy/source_method'
|
18
|
+
require 'contrast/agent/assess/policy/trigger_method'
|
19
19
|
|
20
20
|
# deadzone
|
21
|
-
|
21
|
+
require 'contrast/agent/deadzone/policy/policy'
|
22
22
|
|
23
23
|
# inventory
|
24
|
-
|
24
|
+
require 'contrast/agent/inventory/policy/policy'
|
25
25
|
|
26
26
|
# protect
|
27
|
-
|
27
|
+
require 'contrast/agent/protect/policy/policy'
|
28
28
|
|
29
29
|
# patch
|
30
|
-
|
30
|
+
require 'contrast/agent/patching/policy/patch'
|
31
31
|
|
32
32
|
# after load patched
|
33
|
-
|
33
|
+
require 'contrast/agent/patching/policy/after_load_patcher'
|
34
34
|
|
35
35
|
module Contrast
|
36
36
|
module Agent
|
@@ -77,19 +77,21 @@ module Contrast
|
|
77
77
|
# This method is called by TracePointHook to instrument a specific class during a require
|
78
78
|
# or eval of dynamic class definition
|
79
79
|
def patch_specific_module mod
|
80
|
-
|
81
|
-
|
82
|
-
|
80
|
+
with_contrast_scope do
|
81
|
+
mod_name = mod.cs__name
|
82
|
+
return unless Contrast::Utils::ClassUtil.truly_defined?(mod_name)
|
83
|
+
return if AGENT.skip_instrumentation?(mod_name)
|
83
84
|
|
84
|
-
|
85
|
+
load_patches_for_module(mod_name)
|
85
86
|
|
86
|
-
|
87
|
+
return unless all_module_names.any? { |name| name == mod_name }
|
87
88
|
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
89
|
+
module_data = Contrast::Agent::ModuleData.new(mod, mod_name)
|
90
|
+
patch_into_module(module_data)
|
91
|
+
all_module_names.delete(mod_name) if status_type.get_status(mod).patched?
|
92
|
+
rescue StandardError => e
|
93
|
+
logger.error('Unable to patch module', e, module: mod_name)
|
94
|
+
end
|
93
95
|
end
|
94
96
|
|
95
97
|
# We did it, team. We found a patcher(s) that applies to the given
|
@@ -186,7 +188,7 @@ module Contrast
|
|
186
188
|
clazz = module_data.mod
|
187
189
|
|
188
190
|
status.patching!
|
189
|
-
patched =
|
191
|
+
patched = false
|
190
192
|
|
191
193
|
counts = 0
|
192
194
|
# Monkey patch any methods in this class that have matching nodes in the policy
|
@@ -219,17 +221,6 @@ module Contrast
|
|
219
221
|
module_data.mod).patch_status)
|
220
222
|
end
|
221
223
|
|
222
|
-
# Includes the given module with the
|
223
|
-
# Contrast::Extension::Assess::AssessExtension
|
224
|
-
# @param module_data [Contrast::Agent::ModuleData] the module, and
|
225
|
-
# its name, that's being patched into
|
226
|
-
def include_module module_data
|
227
|
-
return false unless Contrast::Agent::Assess::Policy::Policy.instance.tracked_classes.include?(module_data.name)
|
228
|
-
|
229
|
-
module_data.mod.send(:include, Contrast::Extension::Assess::AssessExtension)
|
230
|
-
true
|
231
|
-
end
|
232
|
-
|
233
224
|
# Get all of the instance methods on the given module, excluding
|
234
225
|
# those from super classes. this list will always include the
|
235
226
|
# initialize method
|
@@ -247,6 +238,14 @@ module Contrast
|
|
247
238
|
instance_methods.concat(mod.private_instance_methods(false)) if private
|
248
239
|
# initialize is an exception to the inheritance rule.
|
249
240
|
instance_methods << :initialize unless instance_methods.include?(:initialize)
|
241
|
+
# Object owns these, but we don't want to patch every :dup or
|
242
|
+
# :clone, just the ones on String, so we'll special case this.
|
243
|
+
# This breaks the norm, where we usually instrument the lowest
|
244
|
+
# method possible.
|
245
|
+
if mod == String
|
246
|
+
instance_methods << :clone
|
247
|
+
instance_methods << :dup
|
248
|
+
end
|
250
249
|
instance_methods
|
251
250
|
end
|
252
251
|
|
@@ -298,10 +297,10 @@ module Contrast
|
|
298
297
|
end
|
299
298
|
|
300
299
|
# core extensions
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
300
|
+
require 'contrast/extension/module'
|
301
|
+
require 'contrast/extension/assess'
|
302
|
+
require 'contrast/extension/inventory'
|
303
|
+
require 'contrast/extension/protect'
|
304
|
+
require 'contrast/extension/protect/kernel'
|
306
305
|
|
307
|
-
|
306
|
+
require 'cs__contrast_patch/cs__contrast_patch'
|
@@ -1,13 +1,13 @@
|
|
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
|
-
|
5
|
-
|
4
|
+
require 'json'
|
5
|
+
require 'singleton'
|
6
6
|
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
7
|
+
require 'contrast'
|
8
|
+
require 'contrast/components/interface'
|
9
|
+
require 'contrast/agent/patching/policy/module_policy'
|
10
|
+
require 'contrast/agent/patching/policy/method_policy'
|
11
11
|
|
12
12
|
module Contrast
|
13
13
|
module Agent
|
@@ -37,13 +37,12 @@ module Contrast
|
|
37
37
|
|
38
38
|
access_component :analysis, :logging
|
39
39
|
|
40
|
-
attr_reader :sources, :propagators, :triggers, :providers
|
40
|
+
attr_reader :sources, :propagators, :triggers, :providers
|
41
41
|
|
42
42
|
SOURCES_KEY = 'sources'
|
43
43
|
PROPAGATION_KEY = 'propagators'
|
44
44
|
RULES_KEY = 'rules'
|
45
45
|
TRIGGERS_KEY = 'triggers'
|
46
|
-
TRACKED_CLASSES_KEY = 'tracked_classes'
|
47
46
|
|
48
47
|
def self.policy_json
|
49
48
|
File.join(policy_folder, 'policy.json').cs__freeze
|
@@ -54,7 +53,6 @@ module Contrast
|
|
54
53
|
@propagators = []
|
55
54
|
@triggers = []
|
56
55
|
@providers = {}
|
57
|
-
@tracked_classes = []
|
58
56
|
|
59
57
|
json = Contrast::Utils::ResourceLoader.load(cs__class.policy_json)
|
60
58
|
from_hash_string(json)
|
@@ -114,7 +112,6 @@ module Contrast
|
|
114
112
|
def module_names
|
115
113
|
@_module_names ||= begin
|
116
114
|
m = Set.new
|
117
|
-
tracked_classes.each { |tracked| m << tracked }
|
118
115
|
sources.each { |source| m << source.class_name }
|
119
116
|
propagators.each { |propagator| m << propagator.class_name }
|
120
117
|
triggers.each { |trigger| m << trigger.class_name }
|
@@ -127,12 +124,26 @@ module Contrast
|
|
127
124
|
end
|
128
125
|
|
129
126
|
def find_source_node class_name, method_name, instance_method
|
130
|
-
sources.find
|
127
|
+
sources.find do |source|
|
128
|
+
source.class_name == class_name &&
|
129
|
+
source.method_name == method_name &&
|
130
|
+
source.instance_method == instance_method
|
131
|
+
end
|
132
|
+
end
|
133
|
+
|
134
|
+
def find_propagator_node class_name, method_name, instance_method
|
135
|
+
propagators.find do |propagator|
|
136
|
+
propagator.class_name == class_name &&
|
137
|
+
propagator.method_name == method_name &&
|
138
|
+
propagator.instance_method == instance_method
|
139
|
+
end
|
131
140
|
end
|
132
141
|
|
133
142
|
def find_node rule_id, class_name, method_name, instance_method
|
134
143
|
find_triggers_by_rule(rule_id).find do |node|
|
135
|
-
node.class_name == class_name &&
|
144
|
+
node.class_name == class_name &&
|
145
|
+
node.method_name == method_name &&
|
146
|
+
node.instance_method == instance_method
|
136
147
|
end
|
137
148
|
end
|
138
149
|
end
|
@@ -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
|
-
|
4
|
+
require 'contrast/components/interface'
|
5
5
|
|
6
6
|
module Contrast
|
7
7
|
module Agent
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
|
5
|
-
|
4
|
+
require 'contrast/extension/module'
|
5
|
+
require 'contrast/agent/patching/policy/policy_node'
|
6
6
|
|
7
7
|
module Contrast
|
8
8
|
module Agent
|
@@ -1,9 +1,9 @@
|
|
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
|
-
|
5
|
-
|
6
|
-
|
4
|
+
require 'contrast/agent/protect/rule/cmd_injection'
|
5
|
+
require 'contrast/agent/protect/policy/applies_deserialization_rule'
|
6
|
+
require 'contrast/agent/protect/policy/rule_applicator'
|
7
7
|
|
8
8
|
module Contrast
|
9
9
|
module Agent
|
@@ -30,11 +30,9 @@ module Contrast
|
|
30
30
|
Contrast::Agent::Protect::Policy::AppliesDeserializationRule.apply_deserialization_command_check(command)
|
31
31
|
return if skip_analysis?
|
32
32
|
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
rule.infilter(Contrast::Agent::REQUEST_TRACKER.current, class_name, method, command)
|
37
|
-
end
|
33
|
+
clazz = object.is_a?(Module) ? object : object.cs__class
|
34
|
+
class_name = clazz.cs__name
|
35
|
+
rule.infilter(Contrast::Agent::REQUEST_TRACKER.current, class_name, method, command)
|
38
36
|
end
|
39
37
|
|
40
38
|
protected
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
|
5
|
-
|
4
|
+
require 'contrast/agent/protect/rule/deserialization'
|
5
|
+
require 'contrast/agent/protect/policy/rule_applicator'
|
6
6
|
|
7
7
|
module Contrast
|
8
8
|
module Agent
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
|
5
|
-
|
4
|
+
require 'contrast/agent/protect/rule/no_sqli'
|
5
|
+
require 'contrast/agent/protect/policy/rule_applicator'
|
6
6
|
|
7
7
|
module Contrast
|
8
8
|
module Agent
|
@@ -1,9 +1,9 @@
|
|
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
|
-
|
5
|
-
|
6
|
-
|
4
|
+
require 'contrast/agent/protect/rule/path_traversal'
|
5
|
+
require 'contrast/agent/protect/policy/rule_applicator'
|
6
|
+
require 'contrast/utils/object_share'
|
7
7
|
|
8
8
|
module Contrast
|
9
9
|
module Agent
|
@@ -26,7 +26,7 @@ module Contrast
|
|
26
26
|
|
27
27
|
action = properties['action']
|
28
28
|
write_marker = write?(action, *args)
|
29
|
-
possible_write = write_marker && possible_write(write_marker)
|
29
|
+
possible_write = write_marker && possible_write?(write_marker)
|
30
30
|
path_traversal_rule(path, possible_write, object, method)
|
31
31
|
|
32
32
|
# If the action was copy, we need to handle the write half of it.
|
@@ -48,7 +48,7 @@ module Contrast
|
|
48
48
|
|
49
49
|
private
|
50
50
|
|
51
|
-
def possible_write input
|
51
|
+
def possible_write? input
|
52
52
|
input.cs__respond_to?(:to_s) &&
|
53
53
|
input.to_s.include?(Contrast::Utils::ObjectShare::WRITE_FLAG)
|
54
54
|
end
|
@@ -62,7 +62,7 @@ module Contrast
|
|
62
62
|
return true if action == WRITE
|
63
63
|
|
64
64
|
write_marker = args.length > 1 ? args[1] : nil
|
65
|
-
write_marker && possible_write(write_marker)
|
65
|
+
write_marker && possible_write?(write_marker)
|
66
66
|
end
|
67
67
|
|
68
68
|
def path_traversal_rule path, possible_write, object, method
|
@@ -83,6 +83,7 @@ module Contrast
|
|
83
83
|
tmp = CS__SAFER_REL_PATHS.map { |r| "#{ pwd }/#{ r }" }
|
84
84
|
gems = ENV['GEM_PATH']
|
85
85
|
tmp += gems.split(Contrast::Utils::ObjectShare::COLON) if gems
|
86
|
+
tmp.map!(&:downcase)
|
86
87
|
tmp
|
87
88
|
else
|
88
89
|
[]
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
|
5
|
-
|
4
|
+
require 'contrast/agent/protect/rule/sqli'
|
5
|
+
require 'contrast/agent/protect/policy/rule_applicator'
|
6
6
|
|
7
7
|
module Contrast
|
8
8
|
module Agent
|
@@ -1,9 +1,9 @@
|
|
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
|
-
|
5
|
-
|
6
|
-
|
4
|
+
require 'contrast/agent/protect/rule/xxe'
|
5
|
+
require 'contrast/agent/protect/policy/rule_applicator'
|
6
|
+
require 'contrast/utils/object_share'
|
7
7
|
|
8
8
|
module Contrast
|
9
9
|
module Agent
|
@@ -27,7 +27,7 @@ module Contrast
|
|
27
27
|
def apply_rule__io method, _exception, _properties, object, args
|
28
28
|
need_rewind = false
|
29
29
|
potential_xml = args[0]
|
30
|
-
return unless potential_xml
|
30
|
+
return unless potential_xml.cs__respond_to?(:rewind)
|
31
31
|
|
32
32
|
xml = potential_xml.read
|
33
33
|
need_rewind = true
|
@@ -1,16 +1,16 @@
|
|
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
|
-
|
4
|
+
require 'contrast/agent/patching/policy/policy'
|
5
5
|
|
6
6
|
# classes required by patches in the policy
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
7
|
+
require 'contrast/agent/protect/policy/applies_command_injection_rule'
|
8
|
+
require 'contrast/agent/protect/policy/applies_deserialization_rule'
|
9
|
+
require 'contrast/agent/protect/policy/applies_no_sqli_rule'
|
10
|
+
require 'contrast/agent/protect/policy/applies_path_traversal_rule'
|
11
|
+
require 'contrast/agent/protect/policy/applies_sqli_rule'
|
12
|
+
require 'contrast/agent/protect/policy/applies_xxe_rule'
|
13
|
+
require 'contrast/agent/protect/policy/trigger_node'
|
14
14
|
|
15
15
|
module Contrast
|
16
16
|
module Agent
|
@@ -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
|
-
|
4
|
+
require 'contrast/components/interface'
|
5
5
|
|
6
6
|
module Contrast
|
7
7
|
module Agent
|
@@ -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
|
-
|
4
|
+
require 'contrast/agent/patching/policy/trigger_node'
|
5
5
|
|
6
6
|
module Contrast
|
7
7
|
module Agent
|
@@ -15,39 +15,39 @@ module Contrast
|
|
15
15
|
end
|
16
16
|
|
17
17
|
# The classes required for All Rasp Rules
|
18
|
-
|
19
|
-
|
18
|
+
require 'contrast/agent/protect/rule/base'
|
19
|
+
require 'contrast/agent/protect/rule/base_service'
|
20
20
|
|
21
21
|
# The classes required for the XSS Rasp Rule
|
22
|
-
|
22
|
+
require 'contrast/agent/protect/rule/xss'
|
23
23
|
|
24
24
|
# The classes required for the SQLI
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
25
|
+
require 'contrast/agent/protect/rule/default_scanner'
|
26
|
+
require 'contrast/agent/protect/rule/sqli'
|
27
|
+
require 'contrast/agent/protect/rule/sqli/default_sql_scanner'
|
28
|
+
require 'contrast/agent/protect/rule/sqli/mysql_sql_scanner'
|
29
|
+
require 'contrast/agent/protect/rule/sqli/postgres_sql_scanner'
|
30
|
+
require 'contrast/agent/protect/rule/sqli/sqlite_sql_scanner'
|
31
31
|
|
32
32
|
# The classes required for Path Traversal
|
33
|
-
|
33
|
+
require 'contrast/agent/protect/rule/path_traversal'
|
34
34
|
|
35
35
|
# The classes required for Command Injection
|
36
|
-
|
36
|
+
require 'contrast/agent/protect/rule/cmd_injection'
|
37
37
|
|
38
38
|
# The classes required for XXE
|
39
|
-
|
40
|
-
|
39
|
+
require 'contrast/agent/protect/rule/xxe'
|
40
|
+
require 'contrast/agent/protect/rule/xxe/entity_wrapper'
|
41
41
|
|
42
42
|
# The classes required for Untrusted Deserialization
|
43
|
-
|
43
|
+
require 'contrast/agent/protect/rule/deserialization'
|
44
44
|
|
45
45
|
# The classes required for the NoSQLi
|
46
|
-
|
47
|
-
|
46
|
+
require 'contrast/agent/protect/rule/no_sqli'
|
47
|
+
require 'contrast/agent/protect/rule/no_sqli/mongo_no_sql_scanner'
|
48
48
|
|
49
49
|
# The classes required for Http Method Tampering
|
50
|
-
|
50
|
+
require 'contrast/agent/protect/rule/http_method_tampering'
|
51
51
|
|
52
52
|
# The classes required for Unsafe File Upload
|
53
|
-
|
53
|
+
require 'contrast/agent/protect/rule/unsafe_file_upload'
|