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 'ougai'
|
@@ -43,9 +43,7 @@ module Contrast
|
|
43
43
|
def thread_hash
|
44
44
|
hash = LOG_TRACKER.get(:logging_hash)
|
45
45
|
unless hash
|
46
|
-
hash = {
|
47
|
-
thread_id: Thread.current.object_id
|
48
|
-
}
|
46
|
+
hash = { thread_id: Thread.current.object_id }
|
49
47
|
LOG_TRACKER.set(:logging_hash, hash)
|
50
48
|
end
|
51
49
|
hash
|
@@ -53,8 +51,7 @@ module Contrast
|
|
53
51
|
|
54
52
|
NO_REQUEST_HASH = { request_id: -1 }.cs__freeze
|
55
53
|
def request_hash
|
56
|
-
@request_tracker_defined ||= defined?(Contrast::Agent) &&
|
57
|
-
defined?(Contrast::Agent::REQUEST_TRACKER)
|
54
|
+
@request_tracker_defined ||= defined?(Contrast::Agent) && defined?(Contrast::Agent::REQUEST_TRACKER)
|
58
55
|
return NO_REQUEST_HASH unless @request_tracker_defined
|
59
56
|
|
60
57
|
Contrast::Agent::REQUEST_TRACKER&.current&.logging_hash || NO_REQUEST_HASH
|
data/lib/contrast/logger/log.rb
CHANGED
@@ -1,25 +1,41 @@
|
|
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 'logger'
|
5
5
|
require 'ougai'
|
6
6
|
require 'singleton'
|
7
7
|
|
8
|
-
require 'contrast/components/interface'
|
9
8
|
require 'contrast/extension/module'
|
10
9
|
require 'contrast/logger/application'
|
11
10
|
require 'contrast/logger/format'
|
12
11
|
require 'contrast/logger/request'
|
13
12
|
require 'contrast/logger/time'
|
13
|
+
require 'contrast/components/config'
|
14
14
|
|
15
15
|
module Contrast
|
16
16
|
module Logger
|
17
|
+
# For development set following env var to raise logged exceptions instead of just logging.
|
18
|
+
if ENV['CONTRAST__AGENT__RUBY_MORE_COWBELL']
|
19
|
+
Ougai::Logger.class_eval do
|
20
|
+
alias_method :cs__error, :error
|
21
|
+
alias_method :cs__warn, :warn
|
22
|
+
|
23
|
+
def error msg, exc, **kwargs
|
24
|
+
cs__error(msg, exc, **kwargs)
|
25
|
+
raise exc if exc && exc.cs__class < Exception
|
26
|
+
end
|
27
|
+
|
28
|
+
def warn msg, exc, **kwargs
|
29
|
+
cs__warn(msg, exc, **kwargs)
|
30
|
+
raise exc if exc && exc.cs__class < Exception
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
17
35
|
# This class functions to serve as a wrapper around our logging, as we need
|
18
36
|
# to be able to dynamically update level based on updates to TeamServer.
|
19
37
|
class Log
|
20
38
|
include Singleton
|
21
|
-
include Contrast::Components::Interface
|
22
|
-
access_component :config
|
23
39
|
|
24
40
|
DEFAULT_NAME = 'contrast.log'
|
25
41
|
DEFAULT_LEVEL = ::Ougai::Logging::Severity::INFO
|
@@ -27,8 +43,7 @@ module Contrast
|
|
27
43
|
STDOUT_STR = 'STDOUT'
|
28
44
|
STDERR_STR = 'STDERR'
|
29
45
|
|
30
|
-
attr_reader :previous_path,
|
31
|
-
:previous_level
|
46
|
+
attr_reader :previous_path, :previous_level
|
32
47
|
|
33
48
|
def initialize
|
34
49
|
update
|
@@ -108,8 +123,8 @@ module Contrast
|
|
108
123
|
# TeamServer.
|
109
124
|
# @return [String] the path to which to log or STDOUT / STDERR if one of those values provided.
|
110
125
|
def find_valid_path log_file
|
111
|
-
config = CONFIG.root.agent.logger
|
112
|
-
config_path = config
|
126
|
+
config = ::Contrast::CONFIG.root.agent.logger
|
127
|
+
config_path = config&.path&.length.to_i.positive? ? config.path : nil
|
113
128
|
valid_path(config_path || log_file)
|
114
129
|
end
|
115
130
|
|
@@ -124,7 +139,9 @@ module Contrast
|
|
124
139
|
elsif write_permission?(DEFAULT_NAME)
|
125
140
|
# Log once when the path is invalid. We'll change to this path, so no
|
126
141
|
# need to log again.
|
127
|
-
|
142
|
+
if previous_path != DEFAULT_NAME
|
143
|
+
puts "[!] Unable to write to '#{ path }'. Writing to default log '#{ DEFAULT_NAME }' instead."
|
144
|
+
end
|
128
145
|
DEFAULT_NAME
|
129
146
|
else
|
130
147
|
# Log once when the path is invalid. We'll change to this path, so no
|
@@ -140,7 +157,7 @@ module Contrast
|
|
140
157
|
# TeamServer.
|
141
158
|
# @return [::Ougai::Logging::Severity] the level at which to log
|
142
159
|
def find_valid_level log_level
|
143
|
-
config = CONFIG.root.agent.logger
|
160
|
+
config = ::Contrast::CONFIG.root.agent.logger
|
144
161
|
config_level = config.level&.length&.positive? ? config.level : nil
|
145
162
|
valid_level(config_level || log_level)
|
146
163
|
end
|
@@ -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
|
require 'contrast/utils/timer'
|
6
5
|
|
7
6
|
module Contrast
|
@@ -9,9 +8,6 @@ module Contrast
|
|
9
8
|
# Our decorator for the Ougai logger allowing for the logging of the
|
10
9
|
# request lifecycle, used to provide context during troubleshooting.
|
11
10
|
module Request
|
12
|
-
include Contrast::Components::Interface
|
13
|
-
access_component :config
|
14
|
-
|
15
11
|
# Utility method to log the start of a request
|
16
12
|
def request_start
|
17
13
|
debug('Beginning request analysis')
|
@@ -22,8 +18,7 @@ module Contrast
|
|
22
18
|
def request_end
|
23
19
|
context = Contrast::Agent::REQUEST_TRACKER.current
|
24
20
|
elapsed_time = context ? (Contrast::Utils::Timer.now_ms - context.timer.start_ms) : -1
|
25
|
-
debug('Ending request analysis',
|
26
|
-
elapsed_time_ms: elapsed_time)
|
21
|
+
debug('Ending request analysis', elapsed_time_ms: elapsed_time)
|
27
22
|
end
|
28
23
|
end
|
29
24
|
end
|
data/lib/contrast/logger/time.rb
CHANGED
@@ -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
|
module Contrast
|
@@ -8,7 +8,7 @@ module Contrast
|
|
8
8
|
# to be handled by our customer's applications.
|
9
9
|
class SecurityException < StandardError
|
10
10
|
def initialize rule, message = nil
|
11
|
-
super(message || "Rule #{ rule.
|
11
|
+
super(message || "Rule #{ rule.rule_name } threw a security exception")
|
12
12
|
end
|
13
13
|
end
|
14
14
|
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 'yaml'
|
@@ -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
|
require 'contrast/utils/os'
|
6
5
|
|
7
6
|
module Contrast
|
@@ -10,14 +9,10 @@ module Contrast
|
|
10
9
|
# forked from the application
|
11
10
|
module Service
|
12
11
|
extend Rake::DSL
|
13
|
-
include Contrast::Components::Interface
|
14
|
-
|
15
|
-
access_component :contrast_service
|
16
|
-
|
17
12
|
# Start the service if it is not already running
|
18
13
|
def self.start_service
|
19
14
|
puts 'Starting Contrast Service'
|
20
|
-
service_log = CONTRAST_SERVICE.logger_path
|
15
|
+
service_log = ::Contrast::CONTRAST_SERVICE.logger_path
|
21
16
|
if File.writable?(service_log)
|
22
17
|
spawn('contrast_service', out: File::NULL, err: service_log)
|
23
18
|
else
|
@@ -74,7 +69,11 @@ module Contrast
|
|
74
69
|
sleep(0.05) while Contrast::Utils::OS.running?
|
75
70
|
end
|
76
71
|
watcher.join(1)
|
77
|
-
|
72
|
+
if Contrast::Utils::OS.running?
|
73
|
+
puts 'Contrast Service did not stop.'
|
74
|
+
else
|
75
|
+
puts 'Contrast Service stopped successfully.'
|
76
|
+
end
|
78
77
|
else
|
79
78
|
puts 'Contrast Service is not already running. No need to stop.'
|
80
79
|
end
|
@@ -1,8 +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
4
|
require 'singleton'
|
5
|
-
require 'contrast/components/
|
5
|
+
require 'contrast/components/sampling'
|
6
6
|
|
7
7
|
module Contrast
|
8
8
|
module Utils
|
@@ -11,8 +11,7 @@ module Contrast
|
|
11
11
|
class SamplingUtil
|
12
12
|
include Singleton
|
13
13
|
|
14
|
-
|
15
|
-
access_component :sampling
|
14
|
+
extend Contrast::Components::Sampling::InstanceMethods
|
16
15
|
|
17
16
|
def initialize
|
18
17
|
@requests = {}
|
@@ -1,8 +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
4
|
require 'contrast/agent/assess/tracker'
|
5
|
-
require 'contrast/components/
|
5
|
+
require 'contrast/components/logger'
|
6
6
|
require 'contrast/utils/duck_utils'
|
7
7
|
|
8
8
|
module Contrast
|
@@ -10,9 +10,7 @@ module Contrast
|
|
10
10
|
module Assess
|
11
11
|
# TrackingUtil has methods for determining if a object is being tracked
|
12
12
|
class TrackingUtil
|
13
|
-
|
14
|
-
|
15
|
-
access_component :logging
|
13
|
+
extend Contrast::Components::Logger::InstanceMethods
|
16
14
|
|
17
15
|
class << self
|
18
16
|
# Public interface to our tracking check, isolating the internals
|
@@ -53,8 +51,7 @@ module Contrast
|
|
53
51
|
idx += 1
|
54
52
|
if Contrast::Utils::DuckUtils.iterable_hash?(obj)
|
55
53
|
obj.each_pair do |k, v|
|
56
|
-
return true if _tracked?(k, idx)
|
57
|
-
return true if _tracked?(v, idx)
|
54
|
+
return true if _tracked?(k, idx) || _tracked?(v, idx)
|
58
55
|
end
|
59
56
|
false
|
60
57
|
elsif Contrast::Utils::DuckUtils.iterable_enumerable?(obj)
|
@@ -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'
|
@@ -9,14 +9,6 @@ module Contrast
|
|
9
9
|
# Utility methods for exploring the complete space of Objects
|
10
10
|
class ClassUtil
|
11
11
|
class << self
|
12
|
-
# Given a module, return all of its descendants
|
13
|
-
#
|
14
|
-
# @param mod [Module] the module whose descendants you want to find.
|
15
|
-
# @return [Array<Module>] those Modules that inherit from the given.
|
16
|
-
def descendants mod
|
17
|
-
ObjectSpace.each_object(mod).to_a
|
18
|
-
end
|
19
|
-
|
20
12
|
# some classes have had things prepended to them, like Marshal in Rails
|
21
13
|
# 5 and higher. Their ActiveSupport::MarshalWithAutoloading will break
|
22
14
|
# our alias patching approach, as will any other prepend on something
|
@@ -67,12 +59,12 @@ module Contrast
|
|
67
59
|
Contrast::Utils::ObjectShare::NIL_STRING
|
68
60
|
elsif object.cs__is_a?(Symbol)
|
69
61
|
":#{ object }"
|
70
|
-
elsif object.cs__is_a?(Numeric)
|
71
|
-
object.to_s
|
72
62
|
elsif object.cs__is_a?(Module) || object.cs__is_a?(Class)
|
73
63
|
"#{ object.cs__name }@#{ object.__id__ }"
|
74
64
|
elsif object.cs__is_a?(Regexp)
|
75
65
|
object.source
|
66
|
+
elsif use_to_s?(object)
|
67
|
+
object.to_s
|
76
68
|
else
|
77
69
|
"#{ object.cs__class.cs__name }@#{ object.__id__ }"
|
78
70
|
end
|
@@ -108,6 +100,18 @@ module Contrast
|
|
108
100
|
|
109
101
|
private
|
110
102
|
|
103
|
+
# Some objects have nice to_s that we can use to make them human readable. If they do, we should leverage them.
|
104
|
+
# We used to do this by default, but this opened us up to danger, so we're instead using an allow list approach.
|
105
|
+
#
|
106
|
+
# @param object [Object] something that may have a safe to_s method
|
107
|
+
# @return [Boolean] if we should invoke to_s to represent the object
|
108
|
+
def use_to_s? object
|
109
|
+
return true if object.cs__is_a?(Numeric)
|
110
|
+
return true if defined?(Arel::Nodes::SqlLiteral) && object.cs__is_a?(Arel::Nodes::SqlLiteral)
|
111
|
+
|
112
|
+
false
|
113
|
+
end
|
114
|
+
|
111
115
|
def determine_target_class mod, is_instance
|
112
116
|
return mod if mod.singleton_class?
|
113
117
|
|
@@ -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
|
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 'digest'
|
@@ -15,10 +15,7 @@ module Contrast
|
|
15
15
|
include Digest::Instance
|
16
16
|
|
17
17
|
CONTENT_LENGTH_HEADER = 'Content-Length'
|
18
|
-
CRYPTO_RULES = %w[
|
19
|
-
crypto-bad-ciphers
|
20
|
-
crypto-bad-mac
|
21
|
-
].cs__freeze
|
18
|
+
CRYPTO_RULES = %w[crypto-bad-ciphers crypto-bad-mac].cs__freeze
|
22
19
|
CONFIG_PATH_KEY = 'path'
|
23
20
|
CONFIG_SESSION_ID_KEY = 'sessionId'
|
24
21
|
CLASS_SOURCE_KEY = 'source'
|
@@ -37,13 +34,13 @@ module Contrast
|
|
37
34
|
hash.finish
|
38
35
|
end
|
39
36
|
|
40
|
-
def generate_event_hash finding, source
|
41
|
-
return generate_dataflow_hash(finding) if finding.events.length.to_i > 1
|
37
|
+
def generate_event_hash finding, source, request
|
38
|
+
return generate_dataflow_hash(finding, request) if finding.events.length.to_i > 1
|
42
39
|
|
43
40
|
id = finding.rule_id
|
44
|
-
return generate_crypto_hash(finding, source) if CRYPTO_RULES.include?(id)
|
41
|
+
return generate_crypto_hash(finding, source, request) if CRYPTO_RULES.include?(id)
|
45
42
|
|
46
|
-
generate_trigger_hash(finding)
|
43
|
+
generate_trigger_hash(finding, request)
|
47
44
|
end
|
48
45
|
|
49
46
|
def generate_config_hash finding
|
@@ -71,40 +68,35 @@ module Contrast
|
|
71
68
|
|
72
69
|
private
|
73
70
|
|
74
|
-
def generate_crypto_hash finding, algorithm
|
71
|
+
def generate_crypto_hash finding, algorithm, request
|
75
72
|
hash = new
|
76
73
|
hash.update(finding.rule_id)
|
77
74
|
hash.update(algorithm)
|
78
|
-
hash.update_on_request
|
75
|
+
hash.update_on_request(finding, request)
|
79
76
|
hash.finish
|
80
77
|
end
|
81
78
|
|
82
|
-
def generate_dataflow_hash finding
|
79
|
+
def generate_dataflow_hash finding, request
|
83
80
|
hash = new
|
84
81
|
hash.update(finding.rule_id)
|
85
82
|
hash.update_on_sources(finding.events)
|
86
|
-
hash.update_on_request
|
83
|
+
hash.update_on_request(finding, request)
|
87
84
|
hash.finish
|
88
85
|
end
|
89
86
|
|
90
|
-
def generate_trigger_hash finding
|
87
|
+
def generate_trigger_hash finding, request
|
91
88
|
hash = new
|
92
89
|
hash.update(finding.rule_id)
|
93
|
-
hash.update_on_request
|
90
|
+
hash.update_on_request(finding, request)
|
94
91
|
hash.finish
|
95
92
|
end
|
96
93
|
end
|
97
94
|
|
98
|
-
def update_on_request
|
99
|
-
|
100
|
-
return unless context
|
101
|
-
|
102
|
-
route = context.route
|
103
|
-
request = context.request
|
104
|
-
if route
|
95
|
+
def update_on_request finding, request
|
96
|
+
if (route = finding.routes[0])
|
105
97
|
update(route.route)
|
106
98
|
update(route.verb)
|
107
|
-
elsif request
|
99
|
+
elsif request ||= Contrast::Agent::REQUEST_TRACKER.current&.request
|
108
100
|
update(request.normalized_uri)
|
109
101
|
update(request.request_method)
|
110
102
|
end
|
@@ -116,7 +108,7 @@ module Contrast
|
|
116
108
|
events.each do |event|
|
117
109
|
event.event_sources.each do |source|
|
118
110
|
update(source.type)
|
119
|
-
update(source.name)
|
111
|
+
update(source.name) # rubocop:disable Security/Module/Name -- API attribute.
|
120
112
|
end
|
121
113
|
end
|
122
114
|
end
|
@@ -1,16 +1,18 @@
|
|
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 'objspace'
|
5
5
|
require 'singleton'
|
6
|
-
require 'contrast/components/
|
6
|
+
require 'contrast/components/heap_dump'
|
7
|
+
require 'contrast/components/logger'
|
7
8
|
|
8
9
|
module Contrast
|
9
10
|
module Utils
|
10
11
|
# Implementation of a heap dump util to automate generation
|
11
12
|
class HeapDumpUtil < Contrast::Agent::WorkerThread
|
12
|
-
|
13
|
-
|
13
|
+
extend Contrast::Components::Logger::InstanceMethods
|
14
|
+
include Contrast::Components::Logger::InstanceMethods
|
15
|
+
extend Contrast::Components::HeapDump::InstanceMethods
|
14
16
|
|
15
17
|
LOG_ERROR_DUMPS = 'Unable to generate heap dumps'
|
16
18
|
FILE_WRITE_FLAGS = 'w'
|