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,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/base'
|
@@ -15,7 +15,7 @@ module Contrast
|
|
15
15
|
BLOCK_MESSAGE = 'XXE rule triggered. Response blocked.'
|
16
16
|
EXTERNAL_ENTITY_PATTERN = /<!ENTITY\s+[a-zA-Z0-f]+\s+(?:SYSTEM|PUBLIC)\s+(.*?)>/.cs__freeze
|
17
17
|
|
18
|
-
def
|
18
|
+
def rule_name
|
19
19
|
NAME
|
20
20
|
end
|
21
21
|
|
@@ -59,12 +59,7 @@ module Contrast
|
|
59
59
|
return unless xxe_details
|
60
60
|
|
61
61
|
ia_result = build_evaluation(xxe_details.xml)
|
62
|
-
build_attack_with_match(
|
63
|
-
context,
|
64
|
-
ia_result,
|
65
|
-
nil,
|
66
|
-
nil,
|
67
|
-
details: xxe_details)
|
62
|
+
build_attack_with_match(context, ia_result, nil, nil, details: xxe_details)
|
68
63
|
end
|
69
64
|
|
70
65
|
# Given an XML determined to be unsafe, build out the details of the
|
@@ -118,7 +113,7 @@ module Contrast
|
|
118
113
|
# supplied by the attacker.
|
119
114
|
def build_evaluation xml
|
120
115
|
ia_result = Contrast::Api::Settings::InputAnalysisResult.new
|
121
|
-
ia_result.rule_id =
|
116
|
+
ia_result.rule_id = rule_name
|
122
117
|
ia_result.input_type = :UNKNOWN
|
123
118
|
ia_result.value = Contrast::Utils::StringUtils.protobuf_safe_string(xml)
|
124
119
|
ia_result
|
@@ -133,10 +128,8 @@ module Contrast
|
|
133
128
|
|
134
129
|
def build_wrapper entity_wrapper
|
135
130
|
wrapper = Contrast::Api::Dtm::XxeWrapper.new
|
136
|
-
wrapper.system_id = Contrast::Utils::StringUtils.protobuf_safe_string(
|
137
|
-
|
138
|
-
wrapper.public_id = Contrast::Utils::StringUtils.protobuf_safe_string(
|
139
|
-
entity_wrapper.public_id)
|
131
|
+
wrapper.system_id = Contrast::Utils::StringUtils.protobuf_safe_string(entity_wrapper.system_id)
|
132
|
+
wrapper.public_id = Contrast::Utils::StringUtils.protobuf_safe_string(entity_wrapper.public_id)
|
140
133
|
wrapper
|
141
134
|
end
|
142
135
|
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
|
module Contrast
|
@@ -65,8 +65,7 @@ module Contrast
|
|
65
65
|
return true if http && !tmp_id.end_with?(DTD_MARKER)
|
66
66
|
|
67
67
|
# external if using external protocol
|
68
|
-
return true if tmp_id.start_with?(FTP_START, FILE_START,
|
69
|
-
JAR_START, GOPHER_START)
|
68
|
+
return true if tmp_id.start_with?(FTP_START, FILE_START, JAR_START, GOPHER_START)
|
70
69
|
|
71
70
|
# external if start with path marker (/ or .)
|
72
71
|
return true if tmp_id.start_with?(Contrast::Utils::ObjectShare::SLASH,
|
@@ -1,19 +1,16 @@
|
|
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/disable_reaction'
|
5
|
-
require 'contrast/components/
|
5
|
+
require 'contrast/components/logger'
|
6
6
|
|
7
7
|
module Contrast
|
8
8
|
module Agent
|
9
|
-
# Because communication between the Agent/Service and TeamServer can only
|
10
|
-
#
|
11
|
-
#
|
12
|
-
# specific action. This action is referred to as a Reaction. This class is
|
13
|
-
# how we handle those Reaction messages.
|
9
|
+
# Because communication between the Agent/Service and TeamServer can only be initiated by outbound connections
|
10
|
+
# from the Agent/Service, we must provide a mechanism for the TeamServer to direct the Agent to take a specific
|
11
|
+
# action. This action is referred to as a Reaction. This class is how we handle those Reaction messages.
|
14
12
|
class ReactionProcessor
|
15
|
-
|
16
|
-
access_component :logging
|
13
|
+
extend Contrast::Components::Logger::InstanceMethods
|
17
14
|
|
18
15
|
# Process the given Reactions from the application settings based on what
|
19
16
|
# TeamServer has indicated. Each Reaction will result in a log message
|
@@ -25,8 +22,12 @@ module Contrast
|
|
25
22
|
return unless application_settings&.reactions&.any?
|
26
23
|
|
27
24
|
application_settings.reactions.each do |reaction|
|
28
|
-
#
|
29
|
-
level = reaction.log_level.nil?
|
25
|
+
# The enums are all uppercase, we need to downcase them before attempting to log.
|
26
|
+
level = if reaction.log_level.nil?
|
27
|
+
:error
|
28
|
+
else
|
29
|
+
reaction.log_level.name.downcase # rubocop:disable Security/Module/Name -- ruby logger builtin.
|
30
|
+
end
|
30
31
|
|
31
32
|
logger.with_level(level, reaction.message) if reaction.message
|
32
33
|
|
@@ -36,9 +37,8 @@ module Contrast
|
|
36
37
|
when Contrast::Api::Settings::Reaction::Operation::NOOP
|
37
38
|
# NOOP
|
38
39
|
else
|
39
|
-
logger.warn(
|
40
|
-
|
41
|
-
operation: reaction.operation)
|
40
|
+
logger.warn('ReactionProcessor received a reaction with an unknown operation',
|
41
|
+
operation: reaction.operation)
|
42
42
|
end
|
43
43
|
end
|
44
44
|
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 'resolv'
|
@@ -7,7 +7,8 @@ require 'timeout'
|
|
7
7
|
require 'contrast/utils/object_share'
|
8
8
|
require 'contrast/utils/string_utils'
|
9
9
|
require 'contrast/utils/hash_digest'
|
10
|
-
require 'contrast/components/
|
10
|
+
require 'contrast/components/logger'
|
11
|
+
require 'contrast/components/scope'
|
11
12
|
|
12
13
|
module Contrast
|
13
14
|
module Agent
|
@@ -16,8 +17,8 @@ module Contrast
|
|
16
17
|
# data in a format that the Agent expects, caching those transformations in
|
17
18
|
# order to avoid repeatedly creating Strings & thrashing GC.
|
18
19
|
class Request
|
19
|
-
include Contrast::Components::
|
20
|
-
|
20
|
+
include Contrast::Components::Logger::InstanceMethods
|
21
|
+
include Contrast::Components::Scope::InstanceMethods
|
21
22
|
|
22
23
|
extend Forwardable
|
23
24
|
|
@@ -27,9 +28,11 @@ module Contrast
|
|
27
28
|
LAST_NUMBER_MARKER = '/{n}'
|
28
29
|
|
29
30
|
attr_reader :rack_request
|
31
|
+
attr_accessor :route, :observed_route
|
30
32
|
|
31
33
|
# Delegate calls to the following methods to the attribute @rack_request
|
32
|
-
def_delegators :@rack_request, :base_url, :content_type, :cookies, :env, :ip, :path, :port, :query_string,
|
34
|
+
def_delegators :@rack_request, :base_url, :content_type, :cookies, :env, :ip, :path, :port, :query_string,
|
35
|
+
:request_method, :scheme, :url, :user_agent
|
33
36
|
|
34
37
|
def initialize rack_request
|
35
38
|
@rack_request = rack_request
|
@@ -55,32 +58,28 @@ module Contrast
|
|
55
58
|
end
|
56
59
|
|
57
60
|
def document_type
|
58
|
-
@_document_type ||=
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
end
|
66
|
-
end
|
61
|
+
@_document_type ||= if /xml/i.match?(content_type) || body&.start_with?('<?xml')
|
62
|
+
:XML
|
63
|
+
elsif /json/i.match?(content_type) || body&.match?(/\s*[{\[]/)
|
64
|
+
:JSON
|
65
|
+
else
|
66
|
+
:NORMAL
|
67
|
+
end
|
67
68
|
end
|
68
69
|
|
69
70
|
# Header keys upcased and any underscores replaced with dashes
|
70
71
|
def headers
|
71
|
-
@_headers ||=
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
hash[Contrast::Utils::StringUtils.normalized_key(name)] = value
|
81
|
-
end
|
82
|
-
hash
|
72
|
+
@_headers ||= with_contrast_scope do
|
73
|
+
hash = {}
|
74
|
+
env.each do |key, value|
|
75
|
+
next unless key
|
76
|
+
|
77
|
+
name = key.to_s
|
78
|
+
next unless name.start_with?(Contrast::Utils::ObjectShare::HTTP_SCORE)
|
79
|
+
|
80
|
+
hash[Contrast::Utils::StringUtils.normalized_key(name)] = value
|
83
81
|
end
|
82
|
+
hash
|
84
83
|
end
|
85
84
|
end
|
86
85
|
|
@@ -89,7 +88,10 @@ module Contrast
|
|
89
88
|
# (can't use body because it might be nil)
|
90
89
|
@_body_read ||= begin
|
91
90
|
body = rack_request.body
|
92
|
-
if defined?(Rack::Multipart) &&
|
91
|
+
if defined?(Rack::Multipart) &&
|
92
|
+
defined?(Rack::Multipart::UploadedFile) &&
|
93
|
+
body.is_a?(Rack::Multipart::UploadedFile)
|
94
|
+
|
93
95
|
logger.trace("not parsing uploaded file body :: #{ body.original_filename }::#{ body.content_type }")
|
94
96
|
@_body = nil
|
95
97
|
else
|
@@ -1,11 +1,12 @@
|
|
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/utils/timer'
|
5
5
|
require 'contrast/agent/request'
|
6
6
|
require 'contrast/agent/response'
|
7
7
|
require 'contrast/utils/inventory_util'
|
8
|
-
require 'contrast/components/
|
8
|
+
require 'contrast/components/logger'
|
9
|
+
require 'contrast/components/scope'
|
9
10
|
|
10
11
|
module Contrast
|
11
12
|
module Agent
|
@@ -25,28 +26,19 @@ module Contrast
|
|
25
26
|
# @attr_reader route [Contrast::Api::Dtm::RouteCoverage] the route, used for findings, of this request
|
26
27
|
# @attr_reader observed_route [Contrast::Api::Dtm::ObservedRoute] the route, used for coverage, of this request
|
27
28
|
class RequestContext
|
28
|
-
include Contrast::Components::
|
29
|
-
|
29
|
+
include Contrast::Components::Logger::InstanceMethods
|
30
|
+
include Contrast::Components::Scope::InstanceMethods
|
30
31
|
|
31
32
|
EMPTY_INPUT_ANALYSIS_PB = Contrast::Api::Settings::InputAnalysis.new
|
32
33
|
|
33
|
-
attr_reader :
|
34
|
-
:
|
35
|
-
:speedracer_input_analysis,
|
36
|
-
:request,
|
37
|
-
:response,
|
38
|
-
:activity,
|
39
|
-
:server_activity,
|
40
|
-
:route,
|
41
|
-
:observed_route
|
34
|
+
attr_reader :activity, :logging_hash, :observed_route, :request, :response, :route, :speedracer_input_analysis,
|
35
|
+
:server_activity, :timer
|
42
36
|
|
43
37
|
def initialize rack_request, app_loaded = true
|
44
38
|
with_contrast_scope do
|
45
39
|
# all requests get a timer and hash
|
46
40
|
@timer = Contrast::Utils::Timer.new
|
47
|
-
@logging_hash = {
|
48
|
-
request_id: __id__
|
49
|
-
}
|
41
|
+
@logging_hash = { request_id: __id__ }
|
50
42
|
|
51
43
|
# instantiate helper for request and response
|
52
44
|
@request = Contrast::Agent::Request.new(rack_request)
|
@@ -71,9 +63,11 @@ module Contrast
|
|
71
63
|
|
72
64
|
@sample = true
|
73
65
|
|
74
|
-
|
66
|
+
if ::Contrast::ASSESS.enabled?
|
67
|
+
@sample_request, @sample_response = Contrast::Utils::Assess::SamplingUtil.instance.sample?(@request)
|
68
|
+
end
|
75
69
|
|
76
|
-
@sample_response &&= ASSESS.scan_response?
|
70
|
+
@sample_response &&= ::Contrast::ASSESS.scan_response?
|
77
71
|
|
78
72
|
append_route_coverage(Contrast::Agent.framework_manager.get_route_dtm(@request))
|
79
73
|
end
|
@@ -107,6 +101,8 @@ module Contrast
|
|
107
101
|
@observed_route.signature = route.route
|
108
102
|
@observed_route.verb = route.verb
|
109
103
|
@observed_route.url = route.url if route.url
|
104
|
+
@request.route = route
|
105
|
+
@request.observed_route = @observed_route
|
110
106
|
end
|
111
107
|
|
112
108
|
# Collect the results for the given rule with the given action
|
@@ -124,8 +120,8 @@ module Contrast
|
|
124
120
|
end
|
125
121
|
|
126
122
|
def service_extract_request
|
127
|
-
return false unless AGENT.enabled?
|
128
|
-
return false unless PROTECT.enabled?
|
123
|
+
return false unless ::Contrast::AGENT.enabled?
|
124
|
+
return false unless ::Contrast::PROTECT.enabled?
|
129
125
|
return false if @do_not_track
|
130
126
|
|
131
127
|
service_response = Contrast::Agent.messaging_queue.send_event_immediately(@activity.http_request)
|
@@ -205,7 +201,7 @@ module Contrast
|
|
205
201
|
attack_results_by_rule = {}
|
206
202
|
agent_settings.input_analysis.results.each do |ia_result|
|
207
203
|
rule_id = ia_result.rule_id
|
208
|
-
rule = PROTECT.rule(rule_id)
|
204
|
+
rule = ::Contrast::PROTECT.rule(rule_id)
|
209
205
|
next unless rule
|
210
206
|
|
211
207
|
logger.debug('Building attack result from Contrast Service input analysis result', result: ia_result.inspect)
|
@@ -214,16 +210,10 @@ module Contrast
|
|
214
210
|
# special case for rules (like reflected xss)
|
215
211
|
# that used to have an infilter / block
|
216
212
|
# mode but now are just block at perimeter
|
217
|
-
rule.build_attack_with_match(
|
218
|
-
|
219
|
-
ia_result,
|
220
|
-
attack_results_by_rule[rule_id],
|
221
|
-
ia_result.value)
|
213
|
+
rule.build_attack_with_match(self, ia_result, attack_results_by_rule[rule_id],
|
214
|
+
ia_result.value)
|
222
215
|
else
|
223
|
-
rule.build_attack_without_match(
|
224
|
-
self,
|
225
|
-
ia_result,
|
226
|
-
attack_results_by_rule[rule_id])
|
216
|
+
rule.build_attack_without_match(self, ia_result, attack_results_by_rule[rule_id])
|
227
217
|
end
|
228
218
|
attack_results_by_rule[rule_id] = attack_result
|
229
219
|
end
|
@@ -1,20 +1,22 @@
|
|
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/logger'
|
5
|
+
require 'contrast/components/scope'
|
6
|
+
|
4
7
|
module Contrast
|
5
8
|
module Agent
|
6
9
|
# This class is instantiated when we receive a request and the agent is enabled to process
|
7
10
|
# that request. It holds the ruleset that we perform filtering operations on (currently
|
8
11
|
# prefilter and postfilter).
|
9
12
|
class RequestHandler
|
10
|
-
include Contrast::Components::
|
11
|
-
access_component :agent, :logging, :scope
|
13
|
+
include Contrast::Components::Logger::InstanceMethods
|
12
14
|
|
13
15
|
attr_reader :ruleset, :context
|
14
16
|
|
15
17
|
def initialize context
|
16
18
|
@context = context
|
17
|
-
@ruleset = AGENT.ruleset
|
19
|
+
@ruleset = ::Contrast::AGENT.ruleset
|
18
20
|
end
|
19
21
|
|
20
22
|
def send_activity_messages
|
@@ -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 'resolv'
|
@@ -7,7 +7,7 @@ require 'timeout'
|
|
7
7
|
require 'contrast/utils/object_share'
|
8
8
|
require 'contrast/utils/string_utils'
|
9
9
|
require 'contrast/utils/hash_digest'
|
10
|
-
require 'contrast/components/
|
10
|
+
require 'contrast/components/logger'
|
11
11
|
|
12
12
|
module Contrast
|
13
13
|
module Agent
|
@@ -16,8 +16,7 @@ module Contrast
|
|
16
16
|
# data in a format that the Agent expects, caching those transformations in
|
17
17
|
# order to avoid repeatedly creating Strings & thrashing GC.
|
18
18
|
class Response
|
19
|
-
include Contrast::Components::
|
20
|
-
access_component :logging
|
19
|
+
include Contrast::Components::Logger::InstanceMethods
|
21
20
|
|
22
21
|
extend Forwardable
|
23
22
|
|
@@ -1,11 +1,14 @@
|
|
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
|
# intentional -- we're using a << operator here
|
5
5
|
|
6
|
+
return unless RUBY_VERSION < '2.6.0' # TODO: RUBY-714 remove guard w/ EOL of 2.5
|
7
|
+
|
6
8
|
require 'contrast/agent/class_reopener'
|
7
9
|
require 'contrast/agent/patching/policy/patch_status'
|
8
|
-
require 'contrast/components/
|
10
|
+
require 'contrast/components/logger'
|
11
|
+
require 'contrast/components/scope'
|
9
12
|
require 'contrast/utils/ruby_ast_rewriter'
|
10
13
|
|
11
14
|
module Contrast
|
@@ -17,8 +20,8 @@ module Contrast
|
|
17
20
|
# @deprecated Changes to this class are discouraged as this approach is
|
18
21
|
# being phased out with support for those language versions.
|
19
22
|
class Rewriter
|
20
|
-
|
21
|
-
|
23
|
+
extend Contrast::Components::Logger::InstanceMethods
|
24
|
+
extend Contrast::Components::Scope::InstanceMethods
|
22
25
|
|
23
26
|
SELF_DEFINITION = 'def self.'
|
24
27
|
DEFINITION = 'def '
|
@@ -57,13 +60,13 @@ module Contrast
|
|
57
60
|
rescue SyntaxError, StandardError => e
|
58
61
|
opener = nil
|
59
62
|
mod ||= module_data.mod
|
60
|
-
logger.debug('Reopening threw a handled exception - skipping rewriting', e, module: module_data.
|
63
|
+
logger.debug('Reopening threw a handled exception - skipping rewriting', e, module: module_data.mod_name)
|
61
64
|
status ||= Contrast::Agent::Patching::Policy::PatchStatus.get_status(mod)
|
62
65
|
status.failed_rewrite!
|
63
66
|
ensure
|
64
67
|
opener&.commit_patches
|
65
68
|
logger.trace('Rewriting complete',
|
66
|
-
module: module_data.
|
69
|
+
module: module_data.mod_name,
|
67
70
|
result: Contrast::Agent::Patching::Policy::PatchStatus.get_status(
|
68
71
|
module_data.mod).rewrite_status)
|
69
72
|
end
|
@@ -238,7 +241,7 @@ module Contrast
|
|
238
241
|
].cs__freeze
|
239
242
|
def should_rewrite? module_data
|
240
243
|
clazz = module_data.mod
|
241
|
-
name = module_data.
|
244
|
+
name = module_data.mod_name
|
242
245
|
return false unless clazz
|
243
246
|
|
244
247
|
# Name can be nil for anonymous modules. We won't work on them.
|
@@ -1,13 +1,14 @@
|
|
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/logger'
|
5
|
+
|
4
6
|
module Contrast
|
5
7
|
module Agent
|
6
8
|
# This class is responsible for holding our ruleset and performing filtering operations on all
|
7
9
|
# rules when asked by the middleware.
|
8
10
|
class RuleSet < Set
|
9
|
-
include Contrast::Components::
|
10
|
-
access_component :analysis, :logging
|
11
|
+
include Contrast::Components::Logger::InstanceMethods
|
11
12
|
|
12
13
|
# The filtering that needs to happen before the application gets access to the request object.
|
13
14
|
# The main action here is snapshotting the request as provided to the application from the
|
@@ -16,7 +17,7 @@ module Contrast
|
|
16
17
|
def prefilter
|
17
18
|
context = Contrast::Agent::REQUEST_TRACKER.current
|
18
19
|
# TODO: RUBY-801 We shouldn't be responsible for knowing what modes are enabled
|
19
|
-
return unless context
|
20
|
+
return unless context&.analyze_request? || ::Contrast::PROTECT.enabled?
|
20
21
|
|
21
22
|
logger.trace_with_time('Running prefilter...') do
|
22
23
|
map { |rule| rule.prefilter(context) }
|
@@ -33,7 +34,7 @@ module Contrast
|
|
33
34
|
def postfilter
|
34
35
|
context = Contrast::Agent::REQUEST_TRACKER.current
|
35
36
|
# TODO: RUBY-801 We shouldn't be responsible for knowing what modes are enabled
|
36
|
-
return unless context
|
37
|
+
return unless context&.analyze_response? || ::Contrast::PROTECT.enabled?
|
37
38
|
|
38
39
|
logger.trace_with_time('Running postfilter...') do
|
39
40
|
map { |rule| rule.postfilter(context) }
|