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
|
module Contrast
|
@@ -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/assess/policy/source_method'
|
@@ -8,11 +8,13 @@ module Contrast
|
|
8
8
|
module Assess
|
9
9
|
module Policy
|
10
10
|
module SourceValidation
|
11
|
-
# Validator used to assert a CROSS_SITE tag is actually applicable to
|
12
|
-
#
|
11
|
+
# Validator used to assert a CROSS_SITE tag is actually applicable to the given method before applying the
|
12
|
+
# tag to its target
|
13
13
|
module CrossSiteValidator
|
14
|
-
#
|
15
|
-
#
|
14
|
+
# Prevent the application of a tag if it is from a source known to not apply a tag in a provided context.
|
15
|
+
# Note that for Rack, the Header will be HTTP_REFERER. Rails does some help in
|
16
|
+
# ActionDispatch::Http::Headers to convert keys like `referer` to `HTTP_REFERER` before they get to the
|
17
|
+
# Rack::Request#get_header method
|
16
18
|
# https://bitbucket.org/contrastsecurity/assess-specifications/src/master/rules/dataflow/reflected_xss.md
|
17
19
|
def self.valid? tag, source_type, source_name
|
18
20
|
return true unless tag == 'CROSS_SITE'
|
@@ -20,7 +22,7 @@ module Contrast
|
|
20
22
|
return true unless source_type == Contrast::Agent::Assess::Policy::SourceMethod::HEADER_TYPE
|
21
23
|
return false unless source_name
|
22
24
|
|
23
|
-
source_name
|
25
|
+
source_name == 'HTTP_REFERER'
|
24
26
|
end
|
25
27
|
end
|
26
28
|
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/assess/policy/source_validation/cross_site_validator'
|
@@ -11,9 +11,7 @@ module Contrast
|
|
11
11
|
# certain tags in a given context. This provides a single place from
|
12
12
|
# which those validations can be called.
|
13
13
|
module SourceValidation
|
14
|
-
VALIDATORS = [
|
15
|
-
Contrast::Agent::Assess::Policy::SourceValidation::CrossSiteValidator
|
16
|
-
].cs__freeze
|
14
|
+
VALIDATORS = [Contrast::Agent::Assess::Policy::SourceValidation::CrossSiteValidator].cs__freeze
|
17
15
|
|
18
16
|
# Determines if the conditions in which this source was called are
|
19
17
|
# valid and should result in the application of a tag
|
@@ -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
|
@@ -24,7 +24,7 @@ module Contrast
|
|
24
24
|
}.cs__freeze
|
25
25
|
TEMPLATE_PROPAGATION_NODE = Contrast::Agent::Assess::Policy::PropagationNode.new(NODE_HASH)
|
26
26
|
|
27
|
-
def xss_tilt_trigger
|
27
|
+
def xss_tilt_trigger trigger_node, _source, object, ret, *args
|
28
28
|
return unless (properties = Contrast::Agent::Assess::Tracker.properties!(ret))
|
29
29
|
|
30
30
|
scope = args[0]
|
@@ -44,7 +44,11 @@ module Contrast
|
|
44
44
|
end
|
45
45
|
|
46
46
|
if Contrast::Agent::Assess::Tracker.tracked?(ret)
|
47
|
-
Contrast::Agent::Assess::Policy::TriggerMethod.build_finding(
|
47
|
+
Contrast::Agent::Assess::Policy::TriggerMethod.build_finding(trigger_node,
|
48
|
+
ret,
|
49
|
+
erb_template_prerender,
|
50
|
+
ret,
|
51
|
+
interpolated_inputs)
|
48
52
|
end
|
49
53
|
|
50
54
|
ret
|
@@ -1,7 +1,6 @@
|
|
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/interface'
|
5
4
|
|
6
5
|
module Contrast
|
7
6
|
module Agent
|
@@ -16,34 +15,31 @@ module Contrast
|
|
16
15
|
# these objects to see if we were tracking on any of them and report
|
17
16
|
# a finding if so.
|
18
17
|
class Xpath
|
19
|
-
include Contrast::Components::Interface
|
20
|
-
|
21
18
|
class << self
|
22
|
-
def xpath_expression_trigger
|
19
|
+
def xpath_expression_trigger trigger_node, _source, object, ret, *args
|
23
20
|
return ret unless args
|
24
21
|
|
25
|
-
process(
|
22
|
+
process(trigger_node, object, ret, *args)
|
26
23
|
end
|
27
24
|
|
28
|
-
def xpath_oga_trigger
|
25
|
+
def xpath_oga_trigger trigger_node, _source, object, ret, *args
|
29
26
|
return ret unless args
|
30
27
|
|
31
28
|
# convert the options arg in Oga::XML::CharacterNode#initialize into an
|
32
29
|
# array of its values so we can check if any are unsafe
|
33
30
|
args = args.first.values if args.first.cs__is_a?(Hash)
|
34
|
-
process(
|
31
|
+
process(trigger_node, object, ret, *args)
|
35
32
|
end
|
36
33
|
|
37
34
|
private
|
38
35
|
|
39
|
-
def process
|
36
|
+
def process trigger_node, object, ret, *args
|
40
37
|
args.each do |arg|
|
41
38
|
next unless arg.cs__is_a?(String) || arg.cs__is_a?(Symbol)
|
42
39
|
next unless Contrast::Agent::Assess::Tracker.tracked?(arg)
|
43
40
|
next unless trigger_node.violated?(arg)
|
44
41
|
|
45
|
-
Contrast::Agent::Assess::Policy::TriggerMethod.build_finding(
|
46
|
-
context, trigger_node, arg, object, ret, *args)
|
42
|
+
Contrast::Agent::Assess::Policy::TriggerMethod.build_finding(trigger_node, arg, object, ret, *args)
|
47
43
|
end
|
48
44
|
|
49
45
|
ret
|
@@ -1,9 +1,9 @@
|
|
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/assess/events/event_factory'
|
5
5
|
require 'contrast/agent/assess/policy/trigger_validation/trigger_validation'
|
6
|
-
require 'contrast/components/
|
6
|
+
require 'contrast/components/logger'
|
7
7
|
require 'contrast/utils/object_share'
|
8
8
|
require 'contrast/utils/sha256_builder'
|
9
9
|
|
@@ -17,8 +17,7 @@ module Contrast
|
|
17
17
|
# order to determine if the call was done safely. In those cases where
|
18
18
|
# it was not, a Finding report is issued to the Service
|
19
19
|
module TriggerMethod
|
20
|
-
|
21
|
-
access_component :analysis, :logging
|
20
|
+
extend Contrast::Components::Logger::InstanceMethods
|
22
21
|
|
23
22
|
# The level of TeamServer compliance our traces meet when in the
|
24
23
|
# abnormal condition of being dataflow rules without routes
|
@@ -27,24 +26,6 @@ module Contrast
|
|
27
26
|
CURRENT_FINDING_VERSION = 4
|
28
27
|
|
29
28
|
class << self
|
30
|
-
# Append the given finding to the given context to be reported when
|
31
|
-
# the Context's activity is sent to the Service or, in the absence
|
32
|
-
# of that Context, generate an Activity and queue it manually
|
33
|
-
# @param finding [Contrast::Api::Dtm::Finding]
|
34
|
-
def report_finding finding
|
35
|
-
context = Contrast::Agent::REQUEST_TRACKER.current
|
36
|
-
if context
|
37
|
-
context.activity.findings << finding
|
38
|
-
else
|
39
|
-
activity = Contrast::Api::Dtm::Activity.new
|
40
|
-
activity.findings << finding
|
41
|
-
|
42
|
-
Contrast::Agent.messaging_queue.send_event_eventually(activity)
|
43
|
-
end
|
44
|
-
logger.debug('Finding reported',
|
45
|
-
rule: finding.rule_id)
|
46
|
-
end
|
47
|
-
|
48
29
|
# This is called from within our woven proc. It will be called as if it
|
49
30
|
# were inline in the Rack application.
|
50
31
|
#
|
@@ -57,38 +38,23 @@ module Contrast
|
|
57
38
|
def apply_trigger_rule trigger_node, object, ret, args
|
58
39
|
return if trigger_node.nil?
|
59
40
|
|
60
|
-
current_context = Contrast::Agent::REQUEST_TRACKER.current
|
61
|
-
return unless current_context&.analyze_request? && ASSESS.enabled?
|
62
|
-
|
63
41
|
if trigger_node.sources&.any?
|
64
42
|
trigger_node.sources.each do |marker|
|
65
43
|
source = determine_source(marker, object, ret, args)
|
66
|
-
apply_trigger(
|
67
|
-
trigger_node,
|
68
|
-
source,
|
69
|
-
object,
|
70
|
-
ret,
|
71
|
-
*args)
|
44
|
+
apply_trigger(trigger_node, source, object, ret, *args)
|
72
45
|
end
|
73
46
|
else
|
74
|
-
apply_trigger(
|
75
|
-
trigger_node,
|
76
|
-
nil,
|
77
|
-
object,
|
78
|
-
ret,
|
79
|
-
*args)
|
47
|
+
apply_trigger(trigger_node, nil, object, ret, *args)
|
80
48
|
end
|
81
49
|
end
|
82
50
|
|
83
|
-
def apply_eval_trigger
|
84
|
-
apply_trigger(
|
51
|
+
def apply_eval_trigger trigger_node, source, object, ret, *args
|
52
|
+
apply_trigger(trigger_node, source, object, ret, *args)
|
85
53
|
end
|
86
54
|
|
87
55
|
# This converts the source of the finding, and the events leading
|
88
56
|
# up to it into a Finding
|
89
57
|
#
|
90
|
-
# @param context [Contrast::Agent::RequestContext] the current
|
91
|
-
# request context
|
92
58
|
# @param trigger_node [Contrast::Agent::Assess::Policy::TriggerNode]
|
93
59
|
# the node to direct applying this trigger event
|
94
60
|
# @param source [Object] the source of the Trigger Event
|
@@ -99,44 +65,94 @@ module Contrast
|
|
99
65
|
# @return [Contrast::Api::Dtm::Finding, nil] the
|
100
66
|
# Contrast::Api::Dtm::Finding to send to TeamServer or nil if
|
101
67
|
# conditions were not met
|
102
|
-
def build_finding
|
68
|
+
def build_finding trigger_node, source, object, ret, *args
|
103
69
|
return unless Contrast::Agent::Assess::Policy::TriggerValidation.valid?(trigger_node, object, ret, args)
|
104
|
-
|
70
|
+
|
71
|
+
request = find_request(source)
|
72
|
+
return unless reportable?(request&.env)
|
105
73
|
|
106
74
|
finding = Contrast::Api::Dtm::Finding.new
|
107
75
|
finding.rule_id = Contrast::Utils::StringUtils.protobuf_safe_string(trigger_node.rule_id)
|
108
|
-
|
109
|
-
finding
|
110
|
-
|
111
|
-
finding
|
76
|
+
|
77
|
+
append_events(finding, trigger_node, source, object, ret, args)
|
78
|
+
append_route(finding, request)
|
79
|
+
append_hash(finding, source, request)
|
112
80
|
finding.version = determine_compliance_version(finding)
|
113
|
-
logger.trace('Finding created',
|
114
|
-
|
115
|
-
|
116
|
-
rule: trigger_node.rule_id)
|
117
|
-
report_finding(finding)
|
81
|
+
logger.trace('Finding created', node_id: trigger_node.id, source_id: source.__id__,
|
82
|
+
rule: trigger_node.rule_id)
|
83
|
+
report_finding(finding, request)
|
118
84
|
rescue StandardError => e
|
119
85
|
logger.error('Unable to build a finding', e, rule: trigger_node.rule_id, node_id: trigger_node.id)
|
120
86
|
end
|
121
87
|
|
88
|
+
# Given a finding, append it to an activity message and send it to
|
89
|
+
# the Service for processing.
|
90
|
+
#
|
91
|
+
# @param finding [Contrast::Api::Dtm::Finding] the Finding to
|
92
|
+
# report.
|
93
|
+
# @param request [Contrast::Agent::Request] our wrapper around the
|
94
|
+
# Rack::Request.
|
95
|
+
def report_finding finding, request = nil
|
96
|
+
context = Contrast::Agent::REQUEST_TRACKER.current
|
97
|
+
if context
|
98
|
+
context.activity.findings << finding
|
99
|
+
return
|
100
|
+
end
|
101
|
+
|
102
|
+
activity = Contrast::Api::Dtm::Activity.new
|
103
|
+
activity.findings << finding
|
104
|
+
if request
|
105
|
+
activity.http_request = request.dtm
|
106
|
+
else
|
107
|
+
logger.debug('Attempted to report finding without request', finding: finding)
|
108
|
+
end
|
109
|
+
|
110
|
+
# If we're out of request context, then we need to report this
|
111
|
+
# finding ourselves, so we'll send it in the one-off activity we
|
112
|
+
# created.
|
113
|
+
Contrast::Agent.messaging_queue.send_event_eventually(activity)
|
114
|
+
end
|
115
|
+
|
122
116
|
private
|
123
117
|
|
124
118
|
# A request is reportable if it is not from ActionController::Live
|
125
119
|
#
|
126
|
-
# @param
|
120
|
+
# @param env [Hash] the env of the Request
|
127
121
|
# @return [Boolean]
|
128
|
-
def reportable?
|
129
|
-
env = context.request.env
|
122
|
+
def reportable? env
|
130
123
|
!(defined?(ActionController::Live) &&
|
131
124
|
env &&
|
132
125
|
env['action_controller.instance'].cs__class.included_modules.include?(ActionController::Live))
|
133
126
|
end
|
134
127
|
|
128
|
+
# Find the request for this finding. This assumes, for now, that if
|
129
|
+
# there is an active request, then that is the request to report.
|
130
|
+
# Otherwise, we'll use the first request found in the events of the
|
131
|
+
# source_object.
|
132
|
+
#
|
133
|
+
# @param source [Object,nil] some Object used as the source of a
|
134
|
+
# trigger event
|
135
|
+
# @return [Contrast::Agent::Request,nil] the request from which the
|
136
|
+
# dataflow on the request originated.
|
137
|
+
def find_request source
|
138
|
+
return Contrast::Agent::REQUEST_TRACKER.current.request if Contrast::Agent::REQUEST_TRACKER.current
|
139
|
+
return unless (properties = Contrast::Agent::Assess::Tracker.properties(source))
|
140
|
+
|
141
|
+
properties.events.each do |event|
|
142
|
+
next unless event.cs__is_a?(Contrast::Agent::Assess::Events::SourceEvent)
|
143
|
+
|
144
|
+
return event.request if event.request
|
145
|
+
end
|
146
|
+
nil
|
147
|
+
end
|
148
|
+
|
149
|
+
def settings
|
150
|
+
Contrast::Agent::FeatureState.instance
|
151
|
+
end
|
152
|
+
|
135
153
|
# This is our method that actually checks the taint on the object
|
136
154
|
# our trigger_node targets.
|
137
155
|
#
|
138
|
-
# @param context [Contrast::Agent::RequestContext] the current
|
139
|
-
# request context
|
140
156
|
# @param trigger_node [Contrast::Agent::Assess::Policy::TriggerNode]
|
141
157
|
# the node to direct applying this trigger event
|
142
158
|
# @param source [Object] the source of the Trigger Event
|
@@ -144,19 +160,19 @@ module Contrast
|
|
144
160
|
# @param ret [Object] the Return of the invoked method
|
145
161
|
# @param args [Array<Object>] the Arguments with which the method
|
146
162
|
# was invoked
|
147
|
-
def apply_trigger
|
148
|
-
return unless
|
163
|
+
def apply_trigger trigger_node, source, object, ret, *args
|
164
|
+
return unless trigger_node
|
149
165
|
return if trigger_node.rule_disabled?
|
150
166
|
return if trigger_node.dataflow? && source.nil?
|
151
167
|
|
152
168
|
if trigger_node.regexp_rule?
|
153
|
-
apply_regexp_rule(
|
169
|
+
apply_regexp_rule(trigger_node, source, object, ret, *args)
|
154
170
|
elsif trigger_node.custom_trigger?
|
155
|
-
trigger_node.apply_custom_trigger(
|
171
|
+
trigger_node.apply_custom_trigger(trigger_node, source, object, ret, *args)
|
156
172
|
elsif trigger_node.dataflow?
|
157
|
-
apply_dataflow_rule(
|
173
|
+
apply_dataflow_rule(trigger_node, source, object, ret, *args)
|
158
174
|
else # trigger rule - just calling the method is dangerous
|
159
|
-
build_finding(
|
175
|
+
build_finding(trigger_node, source, object, ret, *args)
|
160
176
|
end
|
161
177
|
rescue StandardError => e
|
162
178
|
logger.warn('Unable to apply trigger', e, node_id: trigger_node.id)
|
@@ -204,8 +220,6 @@ module Contrast
|
|
204
220
|
# This is our method that actually checks the taint on the object
|
205
221
|
# our trigger_node targets for our Regexp based rules.
|
206
222
|
#
|
207
|
-
# @param context [Contrast::Agent::RequestContext] the current
|
208
|
-
# request context
|
209
223
|
# @param trigger_node [Contrast::Agent::Assess::Policy::TriggerNode]
|
210
224
|
# the node to direct applying this trigger event
|
211
225
|
# @param source [Object] the source of the Trigger Event
|
@@ -213,19 +227,17 @@ module Contrast
|
|
213
227
|
# @param ret [Object] the Return of the invoked method
|
214
228
|
# @param args [Array<Object>] the Arguments with which the method
|
215
229
|
# was invoked
|
216
|
-
def apply_regexp_rule
|
230
|
+
def apply_regexp_rule trigger_node, source, object, ret, *args
|
217
231
|
return unless source.is_a?(String)
|
218
232
|
return if trigger_node.good_value && source.match?(trigger_node.good_value)
|
219
233
|
return if trigger_node.bad_value && source !~ trigger_node.bad_value
|
220
234
|
|
221
|
-
build_finding(
|
235
|
+
build_finding(trigger_node, source, object, ret, *args)
|
222
236
|
end
|
223
237
|
|
224
238
|
# This is our method that actually checks the taint on the object
|
225
239
|
# our trigger_node targets for our Dataflow based rules.
|
226
240
|
#
|
227
|
-
# @param context [Contrast::Agent::RequestContext] the current
|
228
|
-
# request context
|
229
241
|
# @param trigger_node [Contrast::Agent::Assess::Policy::TriggerNode]
|
230
242
|
# the node to direct applying this trigger event
|
231
243
|
# @param source [Object] the source of the Trigger Event
|
@@ -233,22 +245,22 @@ module Contrast
|
|
233
245
|
# @param ret [Object] the Return of the invoked method
|
234
246
|
# @param args [Array<Object>] the Arguments with which the method
|
235
247
|
# was invoked
|
236
|
-
def apply_dataflow_rule
|
248
|
+
def apply_dataflow_rule trigger_node, source, object, ret, *args
|
237
249
|
return unless source
|
238
250
|
|
239
251
|
if Contrast::Agent::Assess::Tracker.trackable?(source)
|
240
252
|
return unless Contrast::Agent::Assess::Tracker.tracked?(source)
|
241
253
|
return unless trigger_node.violated?(source)
|
242
254
|
|
243
|
-
build_finding(
|
255
|
+
build_finding(trigger_node, source, object, ret, *args)
|
244
256
|
elsif Contrast::Utils::DuckUtils.iterable_hash?(source)
|
245
257
|
source.each_pair do |key, value|
|
246
|
-
apply_dataflow_rule(
|
247
|
-
apply_dataflow_rule(
|
258
|
+
apply_dataflow_rule(trigger_node, key, object, ret, *args)
|
259
|
+
apply_dataflow_rule(trigger_node, value, object, ret, *args)
|
248
260
|
end
|
249
261
|
elsif Contrast::Utils::DuckUtils.iterable_enumerable?(source)
|
250
262
|
source.each do |value|
|
251
|
-
apply_dataflow_rule(
|
263
|
+
apply_dataflow_rule(trigger_node, value, object, ret, *args)
|
252
264
|
end
|
253
265
|
else
|
254
266
|
logger.debug('Trigger source is untrackable. Unable to inspect.',
|
@@ -260,7 +272,13 @@ module Contrast
|
|
260
272
|
end
|
261
273
|
end
|
262
274
|
|
263
|
-
def
|
275
|
+
def append_events finding, trigger_node, source, object, ret, args
|
276
|
+
append_from_source(finding, source)
|
277
|
+
finding.events << Contrast::Agent::Assess::Events::EventFactory.build(trigger_node, source, object, ret,
|
278
|
+
args).to_dtm_event
|
279
|
+
end
|
280
|
+
|
281
|
+
def append_from_source finding, source
|
264
282
|
return unless source
|
265
283
|
return unless Contrast::Agent::Assess::Tracker.trackable?(source)
|
266
284
|
|
@@ -291,8 +309,17 @@ module Contrast
|
|
291
309
|
finding.events << event.to_dtm_event
|
292
310
|
end
|
293
311
|
|
294
|
-
def
|
295
|
-
|
312
|
+
def append_route finding, request
|
313
|
+
context = Contrast::Agent::REQUEST_TRACKER.current
|
314
|
+
if context
|
315
|
+
finding.routes << context.route if context.route
|
316
|
+
elsif request&.route
|
317
|
+
finding.routes << request.route
|
318
|
+
end
|
319
|
+
end
|
320
|
+
|
321
|
+
def append_hash finding, source, request
|
322
|
+
hash_code = Contrast::Utils::HashDigest.generate_event_hash(finding, source, request)
|
296
323
|
finding.hash_code = Contrast::Utils::StringUtils.force_utf8(hash_code)
|
297
324
|
finding.preflight = Contrast::Utils::PreflightUtil.create_preflight(finding)
|
298
325
|
end
|