contrast-agent 4.4.1 → 4.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +6 -1
- data/.gitmodules +1 -1
- data/.simplecov +2 -1
- data/Gemfile +1 -1
- data/LICENSE.txt +1 -1
- data/Rakefile +2 -3
- data/exe/contrast_service +1 -1
- data/ext/build_funchook.rb +4 -4
- data/ext/cs__assess_active_record_named/cs__active_record_named.c +1 -1
- data/ext/cs__assess_active_record_named/extconf.rb +1 -1
- data/ext/cs__assess_array/cs__assess_array.c +1 -1
- data/ext/cs__assess_array/extconf.rb +1 -1
- data/ext/cs__assess_basic_object/cs__assess_basic_object.c +1 -1
- data/ext/cs__assess_basic_object/extconf.rb +1 -1
- data/ext/cs__assess_fiber_track/cs__assess_fiber_track.c +1 -1
- data/ext/cs__assess_fiber_track/extconf.rb +1 -1
- data/ext/cs__assess_hash/cs__assess_hash.c +4 -2
- data/ext/cs__assess_hash/extconf.rb +1 -1
- data/ext/cs__assess_kernel/cs__assess_kernel.c +1 -1
- data/ext/cs__assess_kernel/extconf.rb +1 -1
- data/ext/cs__assess_marshal_module/cs__assess_marshal_module.c +1 -1
- data/ext/cs__assess_marshal_module/extconf.rb +1 -1
- data/ext/cs__assess_module/cs__assess_module.c +1 -1
- data/ext/cs__assess_module/extconf.rb +1 -1
- data/ext/cs__assess_regexp/cs__assess_regexp.c +1 -1
- data/ext/cs__assess_regexp/extconf.rb +1 -1
- data/ext/cs__assess_string/cs__assess_string.c +1 -1
- data/ext/cs__assess_string/extconf.rb +1 -1
- data/ext/cs__assess_string_interpolation26/cs__assess_string_interpolation26.c +1 -1
- data/ext/cs__assess_string_interpolation26/extconf.rb +1 -1
- data/ext/cs__assess_yield_track/cs__assess_yield_track.c +1 -1
- data/ext/cs__assess_yield_track/extconf.rb +1 -1
- data/ext/cs__common/cs__common.c +5 -5
- data/ext/cs__common/cs__common.h +4 -4
- data/ext/cs__common/extconf.rb +1 -1
- data/ext/cs__contrast_patch/cs__contrast_patch.c +22 -25
- data/ext/cs__contrast_patch/extconf.rb +1 -1
- data/ext/cs__protect_kernel/cs__protect_kernel.c +1 -1
- data/ext/cs__protect_kernel/extconf.rb +1 -1
- data/ext/extconf_common.rb +2 -6
- data/lib/contrast-agent.rb +1 -1
- data/lib/contrast.rb +44 -15
- data/lib/contrast/agent.rb +1 -3
- data/lib/contrast/agent/assess.rb +2 -2
- data/lib/contrast/agent/assess/contrast_event.rb +54 -72
- data/lib/contrast/agent/assess/contrast_object.rb +3 -3
- data/lib/contrast/agent/assess/events/event_factory.rb +3 -2
- data/lib/contrast/agent/assess/events/source_event.rb +7 -2
- data/lib/contrast/agent/assess/finalizers/freeze.rb +1 -1
- data/lib/contrast/agent/assess/finalizers/hash.rb +28 -38
- data/lib/contrast/agent/assess/policy/dynamic_source_factory.rb +24 -20
- data/lib/contrast/agent/assess/policy/patcher.rb +17 -22
- data/lib/contrast/agent/assess/policy/policy.rb +2 -2
- data/lib/contrast/agent/assess/policy/policy_node.rb +26 -34
- data/lib/contrast/agent/assess/policy/policy_scanner.rb +4 -6
- data/lib/contrast/agent/assess/policy/preshift.rb +8 -6
- data/lib/contrast/agent/assess/policy/propagation_method.rb +12 -25
- data/lib/contrast/agent/assess/policy/propagation_node.rb +20 -9
- data/lib/contrast/agent/assess/policy/propagator.rb +2 -1
- data/lib/contrast/agent/assess/policy/propagator/append.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/base.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/center.rb +3 -2
- data/lib/contrast/agent/assess/policy/propagator/custom.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/database_write.rb +4 -7
- data/lib/contrast/agent/assess/policy/propagator/insert.rb +4 -2
- data/lib/contrast/agent/assess/policy/propagator/keep.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/match_data.rb +3 -2
- data/lib/contrast/agent/assess/policy/propagator/next.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/prepend.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/rack_protection.rb +73 -0
- data/lib/contrast/agent/assess/policy/propagator/remove.rb +23 -19
- data/lib/contrast/agent/assess/policy/propagator/replace.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/reverse.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/select.rb +3 -13
- data/lib/contrast/agent/assess/policy/propagator/splat.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/split.rb +13 -14
- data/lib/contrast/agent/assess/policy/propagator/substitution.rb +4 -11
- data/lib/contrast/agent/assess/policy/propagator/trim.rb +64 -45
- data/lib/contrast/agent/assess/policy/rewriter_patch.rb +14 -11
- data/lib/contrast/agent/assess/policy/source_method.rb +97 -86
- data/lib/contrast/agent/assess/policy/source_node.rb +1 -1
- data/lib/contrast/agent/assess/policy/source_validation/cross_site_validator.rb +8 -6
- data/lib/contrast/agent/assess/policy/source_validation/source_validation.rb +2 -4
- data/lib/contrast/agent/assess/policy/trigger/reflected_xss.rb +7 -3
- data/lib/contrast/agent/assess/policy/trigger/xpath.rb +7 -11
- data/lib/contrast/agent/assess/policy/trigger_method.rb +104 -77
- data/lib/contrast/agent/assess/policy/trigger_node.rb +6 -5
- data/lib/contrast/agent/assess/policy/trigger_validation/redos_validator.rb +5 -4
- data/lib/contrast/agent/assess/policy/trigger_validation/ssrf_validator.rb +2 -3
- data/lib/contrast/agent/assess/policy/trigger_validation/trigger_validation.rb +1 -1
- data/lib/contrast/agent/assess/policy/trigger_validation/xss_validator.rb +2 -9
- data/lib/contrast/agent/assess/properties.rb +1 -1
- data/lib/contrast/agent/assess/property/evented.rb +9 -6
- data/lib/contrast/agent/assess/property/tagged.rb +1 -1
- data/lib/contrast/agent/assess/property/updated.rb +1 -1
- data/lib/contrast/agent/assess/rule/provider.rb +1 -1
- data/lib/contrast/agent/assess/rule/provider/hardcoded_key.rb +12 -6
- data/lib/contrast/agent/assess/rule/provider/hardcoded_password.rb +5 -2
- data/lib/contrast/agent/assess/rule/provider/hardcoded_value_rule.rb +8 -10
- data/lib/contrast/agent/assess/tag.rb +1 -1
- data/lib/contrast/agent/assess/tracker.rb +1 -1
- data/lib/contrast/agent/at_exit_hook.rb +4 -4
- data/lib/contrast/agent/class_reopener.rb +10 -7
- data/lib/contrast/agent/deadzone/policy/deadzone_node.rb +1 -1
- data/lib/contrast/agent/deadzone/policy/policy.rb +7 -3
- data/lib/contrast/agent/disable_reaction.rb +5 -8
- data/lib/contrast/agent/exclusion_matcher.rb +8 -15
- data/lib/contrast/agent/inventory.rb +1 -2
- data/lib/contrast/agent/inventory/dependencies.rb +3 -1
- data/lib/contrast/agent/inventory/dependency_analysis.rb +3 -7
- data/lib/contrast/agent/inventory/dependency_usage_analysis.rb +38 -28
- data/lib/contrast/agent/inventory/policy/datastores.rb +4 -5
- data/lib/contrast/agent/inventory/policy/policy.rb +2 -2
- data/lib/contrast/agent/inventory/policy/trigger_node.rb +1 -1
- data/lib/contrast/agent/middleware.rb +52 -80
- data/lib/contrast/agent/module_data.rb +4 -4
- data/lib/contrast/agent/patching/policy/after_load_patch.rb +4 -4
- data/lib/contrast/agent/patching/policy/after_load_patcher.rb +10 -10
- data/lib/contrast/agent/patching/policy/method_policy.rb +7 -3
- data/lib/contrast/agent/patching/policy/module_policy.rb +15 -8
- data/lib/contrast/agent/patching/policy/patch.rb +32 -38
- data/lib/contrast/agent/patching/policy/patch_status.rb +7 -8
- data/lib/contrast/agent/patching/policy/patcher.rb +29 -28
- data/lib/contrast/agent/patching/policy/policy.rb +16 -25
- data/lib/contrast/agent/patching/policy/policy_node.rb +17 -8
- data/lib/contrast/agent/patching/policy/trigger_node.rb +22 -9
- data/lib/contrast/agent/protect/policy/applies_command_injection_rule.rb +2 -2
- 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 +3 -4
- data/lib/contrast/agent/protect/policy/applies_sqli_rule.rb +2 -2
- data/lib/contrast/agent/protect/policy/applies_xxe_rule.rb +6 -10
- data/lib/contrast/agent/protect/policy/policy.rb +2 -2
- data/lib/contrast/agent/protect/policy/rule_applicator.rb +8 -10
- data/lib/contrast/agent/protect/policy/trigger_node.rb +1 -1
- data/lib/contrast/agent/protect/rule.rb +1 -1
- data/lib/contrast/agent/protect/rule/base.rb +26 -40
- data/lib/contrast/agent/protect/rule/base_service.rb +10 -6
- data/lib/contrast/agent/protect/rule/cmd_injection.rb +19 -24
- data/lib/contrast/agent/protect/rule/default_scanner.rb +1 -1
- data/lib/contrast/agent/protect/rule/deserialization.rb +7 -14
- data/lib/contrast/agent/protect/rule/http_method_tampering.rb +4 -15
- data/lib/contrast/agent/protect/rule/no_sqli.rb +7 -3
- data/lib/contrast/agent/protect/rule/no_sqli/mongo_no_sql_scanner.rb +2 -4
- data/lib/contrast/agent/protect/rule/path_traversal.rb +7 -11
- data/lib/contrast/agent/protect/rule/sqli.rb +3 -3
- data/lib/contrast/agent/protect/rule/sqli/default_sql_scanner.rb +1 -1
- data/lib/contrast/agent/protect/rule/sqli/mysql_sql_scanner.rb +1 -1
- data/lib/contrast/agent/protect/rule/sqli/postgres_sql_scanner.rb +2 -2
- data/lib/contrast/agent/protect/rule/sqli/sqlite_sql_scanner.rb +1 -1
- data/lib/contrast/agent/protect/rule/unsafe_file_upload.rb +2 -2
- data/lib/contrast/agent/protect/rule/xss.rb +2 -2
- data/lib/contrast/agent/protect/rule/xxe.rb +6 -13
- data/lib/contrast/agent/protect/rule/xxe/entity_wrapper.rb +2 -3
- data/lib/contrast/agent/reaction_processor.rb +14 -14
- data/lib/contrast/agent/request.rb +29 -27
- data/lib/contrast/agent/request_context.rb +20 -30
- data/lib/contrast/agent/request_handler.rb +6 -4
- data/lib/contrast/agent/response.rb +3 -4
- data/lib/contrast/agent/rewriter.rb +10 -7
- data/lib/contrast/agent/rule_set.rb +6 -5
- data/lib/contrast/agent/scope.rb +1 -1
- data/lib/contrast/agent/service_heartbeat.rb +5 -7
- data/lib/contrast/agent/static_analysis.rb +7 -6
- data/lib/contrast/agent/thread.rb +3 -5
- data/lib/contrast/agent/thread_watcher.rb +4 -5
- data/lib/contrast/agent/tracepoint_hook.rb +6 -6
- data/lib/contrast/agent/version.rb +2 -2
- data/lib/contrast/agent/worker_thread.rb +1 -1
- data/lib/contrast/api.rb +1 -1
- data/lib/contrast/api/communication.rb +1 -1
- data/lib/contrast/api/communication/connection_status.rb +1 -1
- data/lib/contrast/api/communication/messaging_queue.rb +5 -6
- data/lib/contrast/api/communication/response_processor.rb +13 -15
- data/lib/contrast/api/communication/service_lifecycle.rb +10 -7
- data/lib/contrast/api/communication/socket.rb +1 -1
- data/lib/contrast/api/communication/socket_client.rb +23 -32
- data/lib/contrast/api/communication/speedracer.rb +10 -15
- 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 +1 -1
- data/lib/contrast/api/decorators/address.rb +3 -4
- data/lib/contrast/api/decorators/agent_startup.rb +8 -10
- data/lib/contrast/api/decorators/application_settings.rb +1 -1
- data/lib/contrast/api/decorators/application_startup.rb +14 -10
- data/lib/contrast/api/decorators/application_update.rb +1 -5
- data/lib/contrast/api/decorators/http_request.rb +4 -8
- data/lib/contrast/api/decorators/input_analysis.rb +1 -1
- data/lib/contrast/api/decorators/instrumentation_mode.rb +35 -0
- data/lib/contrast/api/decorators/library.rb +9 -7
- data/lib/contrast/api/decorators/library_usage_update.rb +1 -1
- data/lib/contrast/api/decorators/message.rb +10 -10
- data/lib/contrast/api/decorators/rasp_rule_sample.rb +1 -1
- data/lib/contrast/api/decorators/route_coverage.rb +1 -1
- data/lib/contrast/api/decorators/server_features.rb +1 -1
- data/lib/contrast/api/decorators/trace_event.rb +4 -2
- data/lib/contrast/api/decorators/trace_event_object.rb +4 -7
- data/lib/contrast/api/decorators/trace_event_signature.rb +1 -1
- data/lib/contrast/api/decorators/trace_taint_range.rb +1 -1
- data/lib/contrast/api/decorators/trace_taint_range_tags.rb +2 -7
- data/lib/contrast/api/decorators/user_input.rb +1 -1
- data/lib/contrast/components/agent.rb +20 -26
- data/lib/contrast/components/app_context.rb +12 -16
- data/lib/contrast/components/assess.rb +20 -25
- data/lib/contrast/components/base.rb +40 -0
- data/lib/contrast/components/config.rb +3 -4
- data/lib/contrast/components/contrast_service.rb +13 -19
- data/lib/contrast/components/heap_dump.rb +6 -5
- data/lib/contrast/components/inventory.rb +3 -8
- data/lib/contrast/components/logger.rb +2 -3
- data/lib/contrast/components/protect.rb +14 -20
- data/lib/contrast/components/sampling.rb +14 -8
- data/lib/contrast/components/scope.rb +2 -5
- data/lib/contrast/components/settings.rb +28 -103
- data/lib/contrast/config.rb +1 -1
- data/lib/contrast/config/agent_configuration.rb +1 -1
- data/lib/contrast/config/application_configuration.rb +1 -1
- data/lib/contrast/config/assess_configuration.rb +1 -1
- data/lib/contrast/config/assess_rules_configuration.rb +2 -4
- data/lib/contrast/config/base_configuration.rb +5 -6
- data/lib/contrast/config/default_value.rb +1 -1
- data/lib/contrast/config/exception_configuration.rb +2 -6
- data/lib/contrast/config/heap_dump_configuration.rb +13 -7
- data/lib/contrast/config/inventory_configuration.rb +1 -1
- data/lib/contrast/config/logger_configuration.rb +2 -6
- data/lib/contrast/config/protect_configuration.rb +1 -1
- data/lib/contrast/config/protect_rule_configuration.rb +23 -1
- data/lib/contrast/config/protect_rules_configuration.rb +1 -1
- data/lib/contrast/config/root_configuration.rb +1 -1
- data/lib/contrast/config/ruby_configuration.rb +1 -1
- data/lib/contrast/config/sampling_configuration.rb +1 -1
- data/lib/contrast/config/server_configuration.rb +1 -1
- data/lib/contrast/config/service_configuration.rb +1 -1
- data/lib/contrast/configuration.rb +7 -19
- data/lib/contrast/extension/assess.rb +1 -1
- data/lib/contrast/extension/assess/array.rb +4 -11
- data/lib/contrast/extension/assess/erb.rb +2 -8
- data/lib/contrast/extension/assess/eval_trigger.rb +5 -14
- data/lib/contrast/extension/assess/exec_trigger.rb +4 -14
- data/lib/contrast/extension/assess/fiber.rb +9 -18
- data/lib/contrast/extension/assess/hash.rb +4 -4
- data/lib/contrast/extension/assess/kernel.rb +5 -14
- data/lib/contrast/extension/assess/marshal.rb +7 -15
- data/lib/contrast/extension/assess/regexp.rb +7 -11
- data/lib/contrast/extension/assess/string.rb +9 -7
- data/lib/contrast/extension/delegator.rb +1 -1
- data/lib/contrast/extension/inventory.rb +1 -1
- data/lib/contrast/extension/kernel.rb +3 -3
- data/lib/contrast/extension/module.rb +1 -1
- data/lib/contrast/extension/protect.rb +1 -1
- data/lib/contrast/extension/protect/kernel.rb +1 -6
- data/lib/contrast/extension/protect/psych.rb +1 -1
- data/lib/contrast/extension/thread.rb +1 -1
- data/lib/contrast/framework/base_support.rb +1 -1
- data/lib/contrast/framework/manager.rb +7 -12
- data/lib/contrast/framework/platform_version.rb +1 -1
- data/lib/contrast/framework/rack/patch/session_cookie.rb +12 -25
- data/lib/contrast/framework/rack/patch/support.rb +7 -5
- data/lib/contrast/framework/rack/support.rb +1 -1
- data/lib/contrast/framework/rails/patch/action_controller_live_buffer.rb +1 -1
- data/lib/contrast/framework/rails/patch/assess_configuration.rb +13 -10
- data/lib/contrast/framework/rails/patch/rails_application_configuration.rb +4 -4
- data/lib/contrast/framework/rails/patch/support.rb +42 -36
- data/lib/contrast/framework/rails/railtie.rb +34 -0
- data/lib/contrast/framework/rails/rewrite/action_controller_railties_helper_inherited.rb +5 -2
- data/lib/contrast/framework/rails/rewrite/active_record_attribute_methods_read.rb +3 -1
- data/lib/contrast/framework/rails/rewrite/active_record_named.rb +6 -5
- data/lib/contrast/framework/rails/rewrite/active_record_time_zone_inherited.rb +3 -1
- data/lib/contrast/framework/rails/support.rb +3 -3
- data/lib/contrast/framework/sinatra/support.rb +4 -2
- data/lib/contrast/funchook/funchook.rb +6 -9
- data/lib/contrast/logger/application.rb +14 -16
- data/lib/contrast/logger/format.rb +3 -6
- data/lib/contrast/logger/log.rb +27 -10
- data/lib/contrast/logger/request.rb +2 -7
- data/lib/contrast/logger/time.rb +1 -1
- data/lib/contrast/security_exception.rb +2 -2
- data/lib/contrast/tasks/config.rb +1 -1
- data/lib/contrast/tasks/service.rb +7 -8
- data/lib/contrast/utils/assess/sampling_util.rb +3 -4
- data/lib/contrast/utils/assess/tracking_util.rb +4 -7
- data/lib/contrast/utils/class_util.rb +15 -11
- data/lib/contrast/utils/duck_utils.rb +1 -1
- data/lib/contrast/utils/env_configuration_item.rb +1 -1
- data/lib/contrast/utils/hash_digest.rb +16 -24
- data/lib/contrast/utils/heap_dump_util.rb +6 -4
- data/lib/contrast/utils/invalid_configuration_util.rb +5 -4
- data/lib/contrast/utils/inventory_util.rb +3 -4
- data/lib/contrast/utils/io_util.rb +4 -6
- data/lib/contrast/utils/job_servers_running.rb +14 -8
- data/lib/contrast/utils/object_share.rb +1 -1
- data/lib/contrast/utils/os.rb +5 -5
- data/lib/contrast/utils/preflight_util.rb +1 -1
- data/lib/contrast/utils/resource_loader.rb +1 -1
- data/lib/contrast/utils/ruby_ast_rewriter.rb +3 -2
- data/lib/contrast/utils/sha256_builder.rb +1 -1
- data/lib/contrast/utils/stack_trace_utils.rb +1 -1
- data/lib/contrast/utils/string_utils.rb +3 -4
- data/lib/contrast/utils/tag_util.rb +26 -20
- data/lib/contrast/utils/thread_tracker.rb +1 -1
- data/lib/contrast/utils/timer.rb +1 -1
- data/resources/assess/policy.json +60 -2
- data/resources/deadzone/policy.json +7 -17
- data/ruby-agent.gemspec +25 -21
- data/service_executables/VERSION +1 -1
- data/service_executables/linux/contrast-service +0 -0
- data/service_executables/mac/contrast-service +0 -0
- data/sonar-project.properties +9 -0
- metadata +108 -51
- data/lib/contrast/agent/inventory/gemfile_digest_cache.rb +0 -38
- data/lib/contrast/agent/railtie.rb +0 -31
- data/lib/contrast/common_agent_configuration.rb +0 -87
- data/lib/contrast/components/interface.rb +0 -195
@@ -1,11 +1,11 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2021 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 'json'
|
5
5
|
require 'singleton'
|
6
6
|
|
7
7
|
require 'contrast'
|
8
|
-
require 'contrast/components/
|
8
|
+
require 'contrast/components/logger'
|
9
9
|
require 'contrast/agent/patching/policy/module_policy'
|
10
10
|
require 'contrast/agent/patching/policy/method_policy'
|
11
11
|
|
@@ -13,20 +13,21 @@ module Contrast
|
|
13
13
|
module Agent
|
14
14
|
module Patching
|
15
15
|
module Policy
|
16
|
-
# This is just a holder for our policy. Takes the policy JSON and
|
17
|
-
#
|
16
|
+
# This is just a holder for our policy. Takes the policy JSON and converts it into hashes that we can access
|
17
|
+
# nicely.
|
18
|
+
#
|
18
19
|
# @abstract
|
19
20
|
class Policy
|
20
21
|
include Singleton
|
21
|
-
include Contrast::Components::
|
22
|
+
include Contrast::Components::Logger::InstanceMethods
|
22
23
|
|
23
24
|
# Indicates the folder in `resources` where this policy lives.
|
24
25
|
def self.policy_folder
|
25
26
|
raise(NoMethodError, 'specify policy_folder for patching')
|
26
27
|
end
|
27
28
|
|
28
|
-
# Indicates is this feature has been disabled by the configuration,
|
29
|
-
#
|
29
|
+
# Indicates is this feature has been disabled by the configuration, read at startup, and therefore can never
|
30
|
+
# be enabled.
|
30
31
|
def disabled_globally?
|
31
32
|
raise(NoMethodError, 'specify disabled_globally? conditions for patching')
|
32
33
|
end
|
@@ -35,8 +36,6 @@ module Contrast
|
|
35
36
|
raise(NoMethodError, 'specify the concrete node type for this poilcy')
|
36
37
|
end
|
37
38
|
|
38
|
-
access_component :analysis, :logging
|
39
|
-
|
40
39
|
attr_reader :sources, :propagators, :triggers, :providers
|
41
40
|
|
42
41
|
SOURCES_KEY = 'sources'
|
@@ -58,17 +57,15 @@ module Contrast
|
|
58
57
|
from_hash_string(json)
|
59
58
|
end
|
60
59
|
|
61
|
-
# Our policy for patching rules is a 'dope ass' JSON file. Rather than
|
62
|
-
#
|
63
|
-
#
|
64
|
-
# This let's us be flexible and extensible.
|
60
|
+
# Our policy for patching rules is a 'dope ass' JSON file. Rather than hard code in a bunch of things to
|
61
|
+
# monkey patch, we let the JSON file define the conditions in which modifications are applied. This let's us
|
62
|
+
# be flexible and extensible.
|
65
63
|
def from_hash_string string
|
66
|
-
# The default behavior of the agent is to load the policy on startup,
|
67
|
-
#
|
64
|
+
# The default behavior of the agent is to load the policy on startup, as at this point we do not know in
|
65
|
+
# which mode we'll be run.
|
68
66
|
#
|
69
|
-
# If the configuration file explicitly disables a feature, we know
|
70
|
-
#
|
71
|
-
# can skip policy loading.
|
67
|
+
# If the configuration file explicitly disables a feature, we know that we will not ever be able to enable
|
68
|
+
# it, so in that case, we can skip policy loading.
|
72
69
|
return if disabled_globally?
|
73
70
|
|
74
71
|
policy_data = JSON.parse(string)
|
@@ -110,13 +107,7 @@ module Contrast
|
|
110
107
|
end
|
111
108
|
|
112
109
|
def module_names
|
113
|
-
@_module_names ||=
|
114
|
-
m = Set.new
|
115
|
-
sources.each { |source| m << source.class_name }
|
116
|
-
propagators.each { |propagator| m << propagator.class_name }
|
117
|
-
triggers.each { |trigger| m << trigger.class_name }
|
118
|
-
m
|
119
|
-
end
|
110
|
+
@_module_names ||= Set.new([sources, propagators, triggers].flatten.map!(&:class_name))
|
120
111
|
end
|
121
112
|
|
122
113
|
def find_triggers_by_rule rule_id
|
@@ -1,7 +1,7 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
require 'contrast/components/
|
4
|
+
require 'contrast/components/scope'
|
5
5
|
|
6
6
|
module Contrast
|
7
7
|
module Agent
|
@@ -12,8 +12,7 @@ module Contrast
|
|
12
12
|
#
|
13
13
|
# @abstract
|
14
14
|
class PolicyNode
|
15
|
-
include Contrast::Components::
|
16
|
-
access_component :analysis, :scope
|
15
|
+
include Contrast::Components::Scope::InstanceMethods
|
17
16
|
|
18
17
|
attr_accessor :class_name, :instance_method, :method_name, :method_visibility
|
19
18
|
attr_reader :properties, :method_scope
|
@@ -44,10 +43,20 @@ module Contrast
|
|
44
43
|
# later on. Really, if they don't have these things, they couldn't have
|
45
44
|
# done their jobs anyway.
|
46
45
|
def validate
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
46
|
+
unless class_name
|
47
|
+
raise(ArgumentError, "#{ node_class } #{ id } did not have a proper class name. Unable to create.")
|
48
|
+
end
|
49
|
+
unless method_name
|
50
|
+
raise(ArgumentError, "#{ node_class } #{ id } did not have a proper method name. Unable to create.")
|
51
|
+
end
|
52
|
+
unless method_name.is_a?(Symbol)
|
53
|
+
raise(ArgumentError, "#{ node_class } #{ id } has a non symbol @method_name value. Unable to create.")
|
54
|
+
end
|
55
|
+
|
56
|
+
unless method_visibility.is_a?(Symbol)
|
57
|
+
raise(ArgumentError,
|
58
|
+
"#{ node_class } #{ id } has a non symbol @method_visibility value. Unable to create.")
|
59
|
+
end
|
51
60
|
unless method_scope.nil? || Contrast::Agent::Scope.valid_scope?(method_scope)
|
52
61
|
raise(ArgumentError, "#{ node_class } #{ id } requires an undefined scope. Unable to create.")
|
53
62
|
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2021 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/extension/module'
|
@@ -21,7 +21,8 @@ module Contrast
|
|
21
21
|
JSON_OPTIONAL_PROPS = 'optional_properties'
|
22
22
|
JSON_ON_EXCEPTION = 'on_exception'
|
23
23
|
|
24
|
-
attr_reader :applicator, :applicator_method, :on_exception, :optional_properties, :required_properties,
|
24
|
+
attr_reader :applicator, :applicator_method, :on_exception, :optional_properties, :required_properties,
|
25
|
+
:rule_id
|
25
26
|
|
26
27
|
def initialize trigger_hash = {}, rule_hash = {}
|
27
28
|
super(trigger_hash)
|
@@ -42,9 +43,10 @@ module Contrast
|
|
42
43
|
|
43
44
|
def validate
|
44
45
|
super
|
45
|
-
unless applicator.public_methods(false).any?
|
46
|
+
unless applicator.public_methods(false).any?(applicator_method)
|
46
47
|
raise(ArgumentError,
|
47
|
-
"#{ id } did not have a proper applicator method:
|
48
|
+
"#{ id } did not have a proper applicator method: "\
|
49
|
+
"#{ applicator } does not respond to #{ applicator_method }. Unable to create.")
|
48
50
|
end
|
49
51
|
validate_properties
|
50
52
|
validate_rule
|
@@ -52,20 +54,31 @@ module Contrast
|
|
52
54
|
|
53
55
|
def validate_properties
|
54
56
|
if (required_properties & optional_properties).any?
|
55
|
-
raise(ArgumentError,
|
57
|
+
raise(ArgumentError,
|
58
|
+
"#{ rule_id } had overlapping elements between required and optional properties. Unable to create.")
|
56
59
|
end
|
57
60
|
if (properties.keys - (required_properties | optional_properties)).any?
|
58
61
|
raise(ArgumentError, "#{ id } had an unexpected property. Unable to create.")
|
59
62
|
end
|
60
|
-
|
63
|
+
|
64
|
+
return unless (required_properties - properties.keys).any?
|
65
|
+
|
66
|
+
raise(ArgumentError, "#{ id } did not have a required property. Unable to create.")
|
61
67
|
end
|
62
68
|
|
63
69
|
def validate_rule
|
64
70
|
raise(ArgumentError, 'Unknown rule did not have a proper name. Unable to create.') unless rule_id
|
65
71
|
raise(ArgumentError, "#{ id } did not have a proper applicator. Unable to create.") unless applicator
|
66
|
-
|
67
|
-
|
68
|
-
|
72
|
+
|
73
|
+
unless applicator_method
|
74
|
+
raise(ArgumentError, "#{ id } did not have a proper applicator method. Unable to create.")
|
75
|
+
end
|
76
|
+
unless required_properties
|
77
|
+
raise(ArgumentError, "#{ id } did not have a proper set of required properties. Unable to create.")
|
78
|
+
end
|
79
|
+
return if optional_properties
|
80
|
+
|
81
|
+
raise(ArgumentError, "#{ id } did not have a proper set of optional properties. Unable to create.")
|
69
82
|
end
|
70
83
|
|
71
84
|
private
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2021 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/protect/rule/cmd_injection'
|
@@ -37,7 +37,7 @@ module Contrast
|
|
37
37
|
|
38
38
|
protected
|
39
39
|
|
40
|
-
def
|
40
|
+
def rule_name
|
41
41
|
Contrast::Agent::Protect::Rule::CmdInjection::NAME
|
42
42
|
end
|
43
43
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2021 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/protect/rule/deserialization'
|
@@ -71,7 +71,7 @@ module Contrast
|
|
71
71
|
|
72
72
|
protected
|
73
73
|
|
74
|
-
def
|
74
|
+
def rule_name
|
75
75
|
Contrast::Agent::Protect::Rule::Deserialization::NAME
|
76
76
|
end
|
77
77
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2021 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/protect/rule/no_sqli'
|
@@ -34,7 +34,7 @@ module Contrast
|
|
34
34
|
|
35
35
|
protected
|
36
36
|
|
37
|
-
def
|
37
|
+
def rule_name
|
38
38
|
Contrast::Agent::Protect::Rule::NoSqli::NAME
|
39
39
|
end
|
40
40
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2021 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/protect/rule/path_traversal'
|
@@ -42,15 +42,14 @@ module Contrast
|
|
42
42
|
|
43
43
|
protected
|
44
44
|
|
45
|
-
def
|
45
|
+
def rule_name
|
46
46
|
Contrast::Agent::Protect::Rule::PathTraversal::NAME
|
47
47
|
end
|
48
48
|
|
49
49
|
private
|
50
50
|
|
51
51
|
def possible_write? input
|
52
|
-
input.cs__respond_to?(:to_s) &&
|
53
|
-
input.to_s.include?(Contrast::Utils::ObjectShare::WRITE_FLAG)
|
52
|
+
input.cs__respond_to?(:to_s) && input.to_s.include?(Contrast::Utils::ObjectShare::WRITE_FLAG)
|
54
53
|
end
|
55
54
|
|
56
55
|
READ = 'read'
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2021 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/protect/rule/sqli'
|
@@ -34,7 +34,7 @@ module Contrast
|
|
34
34
|
|
35
35
|
protected
|
36
36
|
|
37
|
-
def
|
37
|
+
def rule_name
|
38
38
|
Contrast::Agent::Protect::Rule::Sqli::NAME
|
39
39
|
end
|
40
40
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2021 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/protect/rule/xxe'
|
@@ -49,16 +49,15 @@ module Contrast
|
|
49
49
|
|
50
50
|
protected
|
51
51
|
|
52
|
-
def
|
52
|
+
def rule_name
|
53
53
|
Contrast::Agent::Protect::Rule::Xxe::NAME
|
54
54
|
end
|
55
55
|
|
56
56
|
private
|
57
57
|
|
58
|
-
DATA_KEY =
|
58
|
+
DATA_KEY = :@data
|
59
59
|
def valid_data_input? object
|
60
|
-
object.instance_variable_defined?(DATA_KEY) &&
|
61
|
-
object.instance_variable_get(DATA_KEY)
|
60
|
+
object.instance_variable_defined?(DATA_KEY) && object.instance_variable_get(DATA_KEY)
|
62
61
|
end
|
63
62
|
|
64
63
|
NOKOGIRI_MARKER = 'Nokogiri::'
|
@@ -115,11 +114,8 @@ module Contrast
|
|
115
114
|
raise e
|
116
115
|
rescue StandardError => e
|
117
116
|
parser ||= Contrast::Utils::ObjectShare::UNKNOWN
|
118
|
-
logger.error(
|
119
|
-
|
120
|
-
e,
|
121
|
-
module: potential_parser.cs__class.cs__name,
|
122
|
-
method: method, parser: parser)
|
117
|
+
logger.error('Error applying xxe', e, module: potential_parser.cs__class.cs__name, method: method,
|
118
|
+
parser: parser)
|
123
119
|
end
|
124
120
|
end
|
125
121
|
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2021 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'
|
@@ -24,7 +24,7 @@ module Contrast
|
|
24
24
|
end
|
25
25
|
|
26
26
|
def disabled_globally?
|
27
|
-
PROTECT.forcibly_disabled?
|
27
|
+
::Contrast::PROTECT.forcibly_disabled?
|
28
28
|
end
|
29
29
|
|
30
30
|
def node_type
|
@@ -1,7 +1,7 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
require 'contrast/components/
|
4
|
+
require 'contrast/components/logger'
|
5
5
|
|
6
6
|
module Contrast
|
7
7
|
module Agent
|
@@ -11,9 +11,7 @@ module Contrast
|
|
11
11
|
# form of the Applicator, which will override specific implementations
|
12
12
|
# in order to properly invoke its Rule.
|
13
13
|
module RuleApplicator
|
14
|
-
include Contrast::Components::
|
15
|
-
|
16
|
-
access_component :analysis, :logging
|
14
|
+
include Contrast::Components::Logger::InstanceMethods
|
17
15
|
|
18
16
|
# Calls the actual invocation for this applicator, if required. Will
|
19
17
|
# attempt to transform the data as required prior to invocation and
|
@@ -42,7 +40,8 @@ module Contrast
|
|
42
40
|
rescue Contrast::SecurityException => e
|
43
41
|
raise e
|
44
42
|
rescue StandardError => e
|
45
|
-
logger.error('Error applying protect rule', e, module: object.cs__class.cs__name, method: method,
|
43
|
+
logger.error('Error applying protect rule', e, module: object.cs__class.cs__name, method: method,
|
44
|
+
rule: rule_name)
|
46
45
|
end
|
47
46
|
|
48
47
|
protected
|
@@ -68,11 +67,10 @@ module Contrast
|
|
68
67
|
raise NoMethodError, 'This is abstract, override it.'
|
69
68
|
end
|
70
69
|
|
71
|
-
# The name of the rule, as expected by the Contrast Service and
|
72
|
-
# Contrast UI.
|
70
|
+
# The name of the rule, as expected by the Contrast Service and Contrast UI.
|
73
71
|
#
|
74
72
|
# @return [String]
|
75
|
-
def
|
73
|
+
def rule_name
|
76
74
|
raise NoMethodError, 'This is abstract, override it.'
|
77
75
|
end
|
78
76
|
|
@@ -82,7 +80,7 @@ module Contrast
|
|
82
80
|
#
|
83
81
|
# @return [Contrast::Agent::Protect::Rule::Base]
|
84
82
|
def rule
|
85
|
-
PROTECT.rule
|
83
|
+
::Contrast::PROTECT.rule rule_name
|
86
84
|
end
|
87
85
|
|
88
86
|
# Should we skip analysis for this rule for this method invocation?
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2021 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'
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
module Contrast
|
@@ -1,7 +1,8 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
require 'contrast/components/
|
4
|
+
require 'contrast/components/logger'
|
5
|
+
require 'contrast/components/scope'
|
5
6
|
|
6
7
|
module Contrast
|
7
8
|
module Agent
|
@@ -12,9 +13,8 @@ module Contrast
|
|
12
13
|
#
|
13
14
|
# @abstract Subclass and override {#prefilter}, {#infilter}, {#find_attacker}, {#postfilter} to implement
|
14
15
|
class Base
|
15
|
-
include Contrast::Components::
|
16
|
-
|
17
|
-
access_component :agent, :analysis, :logging, :scope, :settings
|
16
|
+
include Contrast::Components::Logger::InstanceMethods
|
17
|
+
include Contrast::Components::Scope::InstanceMethods
|
18
18
|
|
19
19
|
UNKNOWN_USER_INPUT = Contrast::Api::Dtm::UserInput.new.tap do |user_input|
|
20
20
|
user_input.input_type = :UNKNOWN
|
@@ -36,42 +36,31 @@ module Contrast
|
|
36
36
|
|
37
37
|
attr_reader :mode
|
38
38
|
|
39
|
-
def initialize
|
40
|
-
PROTECT.rules[
|
41
|
-
@mode = mode_from_settings
|
39
|
+
def initialize
|
40
|
+
::Contrast::PROTECT.rules[rule_name] = self
|
41
|
+
@mode = mode_from_settings
|
42
42
|
end
|
43
43
|
|
44
44
|
# Should return the name as it is known to Teamserver; defaults to class
|
45
|
-
def
|
46
|
-
cs__class.
|
45
|
+
def rule_name
|
46
|
+
cs__class.cs__name
|
47
47
|
end
|
48
48
|
|
49
|
-
OFF = 'off'
|
50
|
-
|
51
49
|
def enabled?
|
52
50
|
# 1. it is not enabled because protect is not enabled
|
53
|
-
return false unless AGENT.enabled?
|
54
|
-
return false unless PROTECT.enabled?
|
51
|
+
return false unless ::Contrast::AGENT.enabled?
|
52
|
+
return false unless ::Contrast::PROTECT.enabled?
|
55
53
|
|
56
|
-
|
57
|
-
|
58
|
-
# 2. it is not enabled because it is in the list of disabled protect rules
|
59
|
-
disabled_rules = rule_configs.disabled_rules
|
60
|
-
return false if disabled_rules&.include?(name)
|
54
|
+
# 2. it is not enabled because it is in the list of disabled protect rules
|
55
|
+
return false if ::Contrast::PROTECT.rule_config&.disabled_rules&.include?(rule_name)
|
61
56
|
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
return rule_config.mode != OFF unless rule_config.mode.nil?
|
66
|
-
end
|
67
|
-
|
68
|
-
# 4. it is not enabled because it's mode is :NO_ACTION
|
69
|
-
@mode != :NO_ACTION
|
57
|
+
# 3. it is enabled so long as its mode is not NO_ACTION
|
58
|
+
@mode != Contrast::Api::Settings::ProtectionRule::Mode::NO_ACTION
|
70
59
|
end
|
71
60
|
|
72
61
|
def excluded? exclusions
|
73
62
|
Array(exclusions).any? do |ex|
|
74
|
-
ex.protection_rule?(
|
63
|
+
ex.protection_rule?(rule_name)
|
75
64
|
end
|
76
65
|
end
|
77
66
|
|
@@ -187,8 +176,8 @@ module Contrast
|
|
187
176
|
protected
|
188
177
|
|
189
178
|
def mode_from_settings
|
190
|
-
PROTECT.rule_mode(
|
191
|
-
logger.trace('Retrieving rule mode', rule:
|
179
|
+
::Contrast::PROTECT.rule_mode(rule_name).tap do |mode|
|
180
|
+
logger.trace('Retrieving rule mode', rule: rule_name, mode: mode)
|
192
181
|
end
|
193
182
|
end
|
194
183
|
|
@@ -202,10 +191,10 @@ module Contrast
|
|
202
191
|
# @return [Boolean] if an exclusion was applicable to this request
|
203
192
|
# for this rule
|
204
193
|
def protect_excluded_by_code?
|
205
|
-
exclusions = SETTINGS.code_exclusions
|
194
|
+
exclusions = ::Contrast::SETTINGS.code_exclusions
|
206
195
|
return false unless exclusions
|
207
196
|
|
208
|
-
for_rule = exclusions.select { |ex| ex.protection_rule?(
|
197
|
+
for_rule = exclusions.select { |ex| ex.protection_rule?(rule_name) }
|
209
198
|
return false if for_rule.empty?
|
210
199
|
|
211
200
|
stack = caller_locations
|
@@ -224,7 +213,7 @@ module Contrast
|
|
224
213
|
# @param _kwargs [Hash] key-value pairs used by the rule to build a
|
225
214
|
# report.
|
226
215
|
def find_attacker _context, _potential_attack_string, **_kwargs
|
227
|
-
raise NoMethodError, "Rule #{
|
216
|
+
raise NoMethodError, "Rule #{ rule_name } did not implement find_attack"
|
228
217
|
end
|
229
218
|
|
230
219
|
def update_successful_attack_response context, ia_result, result, attack_string = nil
|
@@ -260,7 +249,7 @@ module Contrast
|
|
260
249
|
# @return [Contrast::Api::Dtm::AttackResult]
|
261
250
|
def build_attack_result _context
|
262
251
|
result = Contrast::Api::Dtm::AttackResult.new
|
263
|
-
result.rule_id =
|
252
|
+
result.rule_id = rule_name
|
264
253
|
result
|
265
254
|
end
|
266
255
|
|
@@ -297,7 +286,7 @@ module Contrast
|
|
297
286
|
|
298
287
|
def log_rule_matched _context, ia_result, response, _matched_string = nil
|
299
288
|
logger.debug('A successful attack was detected',
|
300
|
-
rule:
|
289
|
+
rule: rule_name,
|
301
290
|
type: ia_result&.input_type,
|
302
291
|
name: ia_result&.key,
|
303
292
|
input: ia_result&.value,
|
@@ -307,11 +296,8 @@ module Contrast
|
|
307
296
|
private
|
308
297
|
|
309
298
|
def log_rule_probed _context, ia_result
|
310
|
-
logger.debug('An unsuccessful attack was detected',
|
311
|
-
|
312
|
-
type: ia_result&.input_type,
|
313
|
-
name: ia_result&.key,
|
314
|
-
input: ia_result&.value)
|
299
|
+
logger.debug('An unsuccessful attack was detected', rule: rule_name, type: ia_result&.input_type,
|
300
|
+
name: ia_result&.key, input: ia_result&.value)
|
315
301
|
end
|
316
302
|
end
|
317
303
|
end
|