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
data/lib/contrast/agent/scope.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,7 +1,7 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
require 'contrast/components/
|
4
|
+
require 'contrast/components/logger'
|
5
5
|
require 'contrast/agent/worker_thread'
|
6
6
|
|
7
7
|
module Contrast
|
@@ -9,8 +9,7 @@ module Contrast
|
|
9
9
|
# The ServiceHeartbeat functions to keep the Contrast Service alive and
|
10
10
|
# ensure that it maintains this Agent's ApplicationContext.
|
11
11
|
class ServiceHeartbeat < WorkerThread
|
12
|
-
include Contrast::Components::
|
13
|
-
access_component :logging
|
12
|
+
include Contrast::Components::Logger::InstanceMethods
|
14
13
|
|
15
14
|
# Spec recommends 30 seconds, we're going with 15.
|
16
15
|
REFRESH_INTERVAL_SEC = 15
|
@@ -21,9 +20,8 @@ module Contrast
|
|
21
20
|
@_thread = Contrast::Agent::Thread.new do
|
22
21
|
logger.info('Starting heartbeat thread.')
|
23
22
|
loop do
|
24
|
-
|
25
|
-
|
26
|
-
end
|
23
|
+
Contrast::Agent.messaging_queue.send_event_eventually(poll_message)
|
24
|
+
|
27
25
|
sleep REFRESH_INTERVAL_SEC
|
28
26
|
end
|
29
27
|
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
|
-
require 'contrast/components/
|
5
|
-
require 'contrast/
|
4
|
+
require 'contrast/components/logger'
|
5
|
+
require 'contrast/components/scope'
|
6
6
|
require 'contrast/api/decorators/application_update'
|
7
7
|
|
8
8
|
module Contrast
|
@@ -10,8 +10,9 @@ module Contrast
|
|
10
10
|
# this module handles one time static analysis tasks
|
11
11
|
class StaticAnalysis
|
12
12
|
include Singleton
|
13
|
-
include Contrast::Components::
|
14
|
-
|
13
|
+
include Contrast::Components::Logger::InstanceMethods
|
14
|
+
include Contrast::Components::Scope::InstanceMethods
|
15
|
+
|
15
16
|
class << self
|
16
17
|
# After the first request is complete, we do a one-time manual catchup to review and
|
17
18
|
# report the already-loaded gems.
|
@@ -23,7 +24,7 @@ module Contrast
|
|
23
24
|
end
|
24
25
|
|
25
26
|
def send_inventory_message
|
26
|
-
return unless INVENTORY.enabled?
|
27
|
+
return unless ::Contrast::INVENTORY.enabled?
|
27
28
|
|
28
29
|
app_update_msg = Contrast::Api::Dtm::ApplicationUpdate.build
|
29
30
|
|
@@ -1,15 +1,13 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
require 'contrast/components/
|
4
|
+
require 'contrast/components/scope'
|
5
5
|
|
6
6
|
module Contrast
|
7
7
|
module Agent
|
8
8
|
# Threads used by Contrast. Any long running thread should be created and managed by our ThreadWatcher class.
|
9
9
|
class Thread < ::Thread
|
10
|
-
include Contrast::Components::
|
11
|
-
|
12
|
-
access_component :scope
|
10
|
+
include Contrast::Components::Scope::InstanceMethods
|
13
11
|
|
14
12
|
# Make our internal code run in Contrast scope.
|
15
13
|
def initialize *args
|
@@ -1,7 +1,7 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
require 'contrast/components/
|
4
|
+
require 'contrast/components/logger'
|
5
5
|
require 'contrast/agent/service_heartbeat'
|
6
6
|
require 'contrast/api/communication/messaging_queue'
|
7
7
|
|
@@ -13,8 +13,7 @@ module Contrast
|
|
13
13
|
# @attr_reader heartbeat [Contrast::Agent::ServiceHeartbeat]
|
14
14
|
# @attr_reader messaging_queue [Contrast::Api::Communication::MessagingQueue]
|
15
15
|
class ThreadWatcher
|
16
|
-
include Contrast::Components::
|
17
|
-
access_component :agent, :logging
|
16
|
+
include Contrast::Components::Logger::InstanceMethods
|
18
17
|
|
19
18
|
attr_reader :heapdump_util, :heartbeat, :messaging_queue
|
20
19
|
|
@@ -26,7 +25,7 @@ module Contrast
|
|
26
25
|
end
|
27
26
|
|
28
27
|
def startup!
|
29
|
-
return unless AGENT.enabled?
|
28
|
+
return unless ::Contrast::AGENT.enabled?
|
30
29
|
|
31
30
|
unless heartbeat.running?
|
32
31
|
logger.debug('Attempting to start heartbeat thread')
|
@@ -1,15 +1,15 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
require 'contrast/components/
|
4
|
+
require 'contrast/components/logger'
|
5
|
+
require 'contrast/components/scope'
|
5
6
|
|
6
7
|
module Contrast
|
7
8
|
module Agent
|
8
9
|
# This module is used to apply instrumentation to classes as they are required
|
9
10
|
module TracePointHook
|
10
|
-
|
11
|
-
|
12
|
-
access_component :logging, :scope
|
11
|
+
extend Contrast::Components::Logger::InstanceMethods
|
12
|
+
extend Contrast::Components::Scope::InstanceMethods
|
13
13
|
|
14
14
|
class << self
|
15
15
|
def enable!
|
@@ -37,7 +37,7 @@ module Contrast
|
|
37
37
|
|
38
38
|
Contrast::Agent::Inventory::DependencyUsageAnalysis.instance.associate_file(path) if path
|
39
39
|
Contrast::Agent::Patching::Policy::Patcher.patch_specific_module(loaded_module)
|
40
|
-
Contrast::Agent::Assess::Policy::RewriterPatch.rewrite_interpolation(loaded_module)
|
40
|
+
Contrast::Agent::Assess::Policy::RewriterPatch.rewrite_interpolation(loaded_module) if RUBY_VERSION < '2.6.0' # TODO: RUBY-714 remove guard w/ EOL of 2.5
|
41
41
|
Contrast::Agent::Assess::Policy::PolicyScanner.scan(tracepoint_event)
|
42
42
|
end
|
43
43
|
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
|
module Contrast
|
5
5
|
module Agent
|
6
|
-
VERSION = '4.
|
6
|
+
VERSION = '4.9.0'
|
7
7
|
end
|
8
8
|
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
|
data/lib/contrast/api.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
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
module Contrast
|
@@ -1,7 +1,7 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
require 'contrast/components/
|
4
|
+
require 'contrast/components/logger'
|
5
5
|
require 'contrast/agent/worker_thread'
|
6
6
|
|
7
7
|
module Contrast
|
@@ -9,8 +9,7 @@ module Contrast
|
|
9
9
|
module Communication
|
10
10
|
# Top level gateway to messaging with speedracer
|
11
11
|
class MessagingQueue < Contrast::Agent::WorkerThread
|
12
|
-
include Contrast::Components::
|
13
|
-
access_component :agent, :analysis, :logging, :settings
|
12
|
+
include Contrast::Components::Logger::InstanceMethods
|
14
13
|
|
15
14
|
attr_reader :queue, :speedracer
|
16
15
|
|
@@ -22,7 +21,7 @@ module Contrast
|
|
22
21
|
|
23
22
|
# Use this to bypass the messaging queue and leave response processing to the caller
|
24
23
|
def send_event_immediately event
|
25
|
-
if AGENT.disabled?
|
24
|
+
if ::Contrast::AGENT.disabled?
|
26
25
|
logger.warn('Attempted to send event immediately with Agent disabled', caller: caller, event: event)
|
27
26
|
return
|
28
27
|
end
|
@@ -31,7 +30,7 @@ module Contrast
|
|
31
30
|
|
32
31
|
# Use this to add a message to the queue and process the response internally
|
33
32
|
def send_event_eventually event
|
34
|
-
if AGENT.disabled?
|
33
|
+
if ::Contrast::AGENT.disabled?
|
35
34
|
logger.warn('Attempted to queue event with Agent disabled', caller: caller, event: event)
|
36
35
|
return
|
37
36
|
end
|
@@ -1,15 +1,15 @@
|
|
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/reaction_processor'
|
5
|
+
require 'contrast/components/logger'
|
5
6
|
|
6
7
|
module Contrast
|
7
8
|
module Api
|
8
9
|
module Communication
|
9
10
|
# Handles processing deferred messages
|
10
11
|
class ResponseProcessor
|
11
|
-
include Contrast::Components::
|
12
|
-
access_component :agent, :analysis, :logging, :settings
|
12
|
+
include Contrast::Components::Logger::InstanceMethods
|
13
13
|
|
14
14
|
# @param response [Contrast::Api::Settings::AgentSettings]
|
15
15
|
def process response
|
@@ -24,10 +24,8 @@ module Contrast
|
|
24
24
|
|
25
25
|
Contrast::Logger::Log.instance.update(server_features&.log_file, server_features&.log_level)
|
26
26
|
update_features(server_features, app_settings)
|
27
|
-
logger.trace(
|
28
|
-
|
29
|
-
protect_on: PROTECT.enabled?,
|
30
|
-
assess_on: ASSESS.enabled?)
|
27
|
+
logger.trace('Agent settings updated in response to Service', protect_on: ::Contrast::PROTECT.enabled?,
|
28
|
+
assess_on: ::Contrast::ASSESS.enabled?)
|
31
29
|
end
|
32
30
|
|
33
31
|
private
|
@@ -42,7 +40,7 @@ module Contrast
|
|
42
40
|
|
43
41
|
logger.trace('Agent: Received updated server features')
|
44
42
|
|
45
|
-
SETTINGS.update_from_server_features(server_features)
|
43
|
+
::Contrast::SETTINGS.update_from_server_features(server_features)
|
46
44
|
|
47
45
|
server_features
|
48
46
|
end
|
@@ -57,7 +55,7 @@ module Contrast
|
|
57
55
|
|
58
56
|
logger.debug('Agent: Received updated application settings')
|
59
57
|
|
60
|
-
SETTINGS.update_from_application_settings(app_settings)
|
58
|
+
::Contrast::SETTINGS.update_from_application_settings(app_settings)
|
61
59
|
|
62
60
|
app_settings
|
63
61
|
end
|
@@ -66,16 +64,16 @@ module Contrast
|
|
66
64
|
# I don't think it should go into contrast_service because that only handles connection specific data
|
67
65
|
def update_features server_features, app_settings
|
68
66
|
return unless !!(server_features || app_settings)
|
69
|
-
return unless AGENT.enabled?
|
67
|
+
return unless ::Contrast::AGENT.enabled?
|
70
68
|
|
71
69
|
logger.trace_with_time('Rebuilding rule modes') do
|
72
|
-
SETTINGS.build_protect_rules if PROTECT.enabled?
|
73
|
-
|
74
|
-
AGENT.reset_ruleset
|
70
|
+
::Contrast::SETTINGS.build_protect_rules if ::Contrast::PROTECT.enabled?
|
71
|
+
::Contrast::AGENT.reset_ruleset
|
75
72
|
|
76
73
|
logger.info('Current rule settings:')
|
77
|
-
|
78
|
-
|
74
|
+
|
75
|
+
::Contrast::PROTECT.rules.each { |k, v| logger.info('Protect Rule mode set', rule: k, mode: v.mode) }
|
76
|
+
logger.info('Disabled Assess Rules', rules: ::Contrast::ASSESS.disabled_rules)
|
79
77
|
end
|
80
78
|
end
|
81
79
|
end
|
@@ -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 Api
|
6
8
|
module Communication
|
7
9
|
# Handles local service startup
|
8
10
|
module ServiceLifecycle
|
9
|
-
include Contrast::Components::
|
10
|
-
access_component :logging, :contrast_service
|
11
|
+
include Contrast::Components::Logger::InstanceMethods
|
11
12
|
|
12
13
|
def attempt_local_service_startup
|
13
14
|
zombie_check
|
@@ -21,18 +22,20 @@ module Contrast
|
|
21
22
|
is_service_started
|
22
23
|
end
|
23
24
|
|
24
|
-
# check if there's a zombie service that exists, and wait on it if so.
|
25
|
-
#
|
25
|
+
# check if there's a zombie service that exists, and wait on it if so. currently, this only happens when trying
|
26
|
+
# to initialize speedracer
|
26
27
|
def zombie_check
|
27
28
|
zombie_pid_list = Contrast::Utils::OS.zombie_pids
|
28
29
|
zombie_pid_list.each do |pid|
|
29
30
|
Process.wait(pid.to_i)
|
31
|
+
rescue Errno::ECHILD => _e
|
32
|
+
# Sometimes the zombie process dies between us finding it and killing it
|
30
33
|
end
|
31
34
|
end
|
32
35
|
|
33
36
|
def determine_startup_options
|
34
|
-
return { out: :out, err: :out } if CONTRAST_SERVICE.logger_path == 'STDOUT'
|
35
|
-
return { out: :err, err: :err } if CONTRAST_SERVICE.logger_path == 'STDERR'
|
37
|
+
return { out: :out, err: :out } if ::Contrast::CONTRAST_SERVICE.logger_path == 'STDOUT'
|
38
|
+
return { out: :err, err: :err } if ::Contrast::CONTRAST_SERVICE.logger_path == 'STDERR'
|
36
39
|
|
37
40
|
{ out: File::NULL, err: File::NULL }
|
38
41
|
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
|
@@ -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 'socket'
|
@@ -6,7 +6,7 @@ require 'uri'
|
|
6
6
|
|
7
7
|
require 'contrast/api/communication/tcp_socket'
|
8
8
|
require 'contrast/api/communication/unix_socket'
|
9
|
-
require 'contrast/components/
|
9
|
+
require 'contrast/components/logger'
|
10
10
|
|
11
11
|
module Contrast
|
12
12
|
module Api
|
@@ -14,8 +14,7 @@ module Contrast
|
|
14
14
|
# SocketClient acts as a interface between the agent and the service. It instantiates a
|
15
15
|
# service proxy and tracks the state of that proxy.
|
16
16
|
class SocketClient
|
17
|
-
include Contrast::Components::
|
18
|
-
access_component :config, :contrast_service, :logging
|
17
|
+
include Contrast::Components::Logger::InstanceMethods
|
19
18
|
|
20
19
|
def initialize
|
21
20
|
@socket = init_connection
|
@@ -36,32 +35,34 @@ module Contrast
|
|
36
35
|
|
37
36
|
def init_connection
|
38
37
|
log_connection
|
39
|
-
if CONTRAST_SERVICE.use_tcp?
|
40
|
-
Contrast::Api::Communication::TcpSocket.new(
|
38
|
+
if ::Contrast::CONTRAST_SERVICE.use_tcp?
|
39
|
+
Contrast::Api::Communication::TcpSocket.new(
|
40
|
+
::Contrast::CONTRAST_SERVICE.host, ::Contrast::CONTRAST_SERVICE.port
|
41
|
+
)
|
41
42
|
else
|
42
|
-
Contrast::Api::Communication::UnixSocket.new(CONTRAST_SERVICE.socket_path)
|
43
|
+
Contrast::Api::Communication::UnixSocket.new(::Contrast::CONTRAST_SERVICE.socket_path)
|
43
44
|
end
|
44
45
|
end
|
45
46
|
|
46
47
|
def log_connection
|
47
48
|
# The socket is set,
|
48
|
-
if CONFIG.root.agent.service.socket
|
49
|
+
if ::Contrast::CONFIG.root.agent.service.socket
|
49
50
|
logger.info('Connecting to the Contrast Service using a UnixSocket socket',
|
50
|
-
socket: CONTRAST_SERVICE.socket_path)
|
51
|
+
socket: ::Contrast::CONTRAST_SERVICE.socket_path)
|
51
52
|
return
|
52
53
|
end
|
53
54
|
# The host & port are set,
|
54
|
-
if CONFIG.root.agent.service.host && CONFIG.root.agent.service.port
|
55
|
+
if ::Contrast::CONFIG.root.agent.service.host && ::Contrast::CONFIG.root.agent.service.port
|
55
56
|
logger.info('Connecting to the Contrast Service using a TCP socket',
|
56
|
-
host: CONTRAST_SERVICE.host,
|
57
|
-
port: CONTRAST_SERVICE.port)
|
57
|
+
host: ::Contrast::CONTRAST_SERVICE.host,
|
58
|
+
port: ::Contrast::CONTRAST_SERVICE.port)
|
58
59
|
return
|
59
60
|
end
|
60
61
|
|
61
62
|
# Or something is not set.
|
62
|
-
logger.warn(
|
63
|
-
|
64
|
-
|
63
|
+
logger.warn(
|
64
|
+
log_connection_error_msg, host: ::Contrast::CONTRAST_SERVICE.host, port: ::Contrast::CONTRAST_SERVICE.port
|
65
|
+
)
|
65
66
|
end
|
66
67
|
|
67
68
|
# If our connection isn't built properly, we need to warn the user. This builds out the context specific
|
@@ -69,11 +70,11 @@ module Contrast
|
|
69
70
|
#
|
70
71
|
# @return [String]
|
71
72
|
def log_connection_error_msg
|
72
|
-
if CONFIG.root.agent.service.host
|
73
|
+
if ::Contrast::CONFIG.root.agent.service.host
|
73
74
|
'Missing a required connection value to the Contrast Service. ' \
|
74
75
|
'`agent.service.port` is not set. ' \
|
75
76
|
'Falling back to default TCP socket port.'
|
76
|
-
elsif CONFIG.root.agent.service.port
|
77
|
+
elsif ::Contrast::CONFIG.root.agent.service.port
|
77
78
|
'Missing a required connection value to the Contrast Service. ' \
|
78
79
|
'`agent.service.host` is not set. ' \
|
79
80
|
'Falling back to default TCP socket host.'
|
@@ -87,26 +88,16 @@ module Contrast
|
|
87
88
|
def send_message msg
|
88
89
|
return unless msg
|
89
90
|
|
90
|
-
logger.debug('Sending message.',
|
91
|
-
msg_id: msg.__id__,
|
92
|
-
p_id: msg.pid,
|
93
|
-
msg_count: msg.message_count)
|
91
|
+
logger.debug('Sending message.', msg_id: msg.__id__, p_id: msg.pid, msg_count: msg.message_count)
|
94
92
|
to_service = Contrast::Api::Dtm::Message.encode(msg)
|
95
93
|
from_service = send_marshaled(to_service)
|
96
94
|
response = Contrast::Api::Settings::AgentSettings.decode(from_service)
|
97
|
-
logger.debug('Received response.',
|
98
|
-
|
99
|
-
p_id: msg.pid,
|
100
|
-
msg_count: msg.message_count,
|
101
|
-
response_id: response&.__id__)
|
95
|
+
logger.debug('Received response.', msg_id: msg.__id__, p_id: msg.pid, msg_count: msg.message_count,
|
96
|
+
response_id: response&.__id__)
|
102
97
|
response
|
103
98
|
rescue StandardError => e
|
104
|
-
logger.error('Sending failed for message.',
|
105
|
-
|
106
|
-
msg_id: msg.__id__,
|
107
|
-
p_id: msg.pid,
|
108
|
-
msg_count: msg.message_count,
|
109
|
-
response_id: response&.__id__)
|
99
|
+
logger.error('Sending failed for message.', e, msg_id: msg.__id__, p_id: msg.pid,
|
100
|
+
msg_count: msg.message_count, response_id: response&.__id__)
|
110
101
|
raise e # reraise to let Speedracer manage the connection
|
111
102
|
end
|
112
103
|
|