contrast-agent 3.12.1 → 3.14.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.dockerignore +0 -1
- data/.gitignore +1 -1
- data/.simplecov +1 -1
- data/Rakefile +31 -0
- data/exe/contrast_service +1 -7
- data/ext/build_funchook.rb +0 -2
- data/ext/cs__assess_active_record_named/cs__active_record_named.c +8 -7
- data/ext/cs__assess_array/cs__assess_array.c +6 -5
- data/ext/cs__assess_basic_object/cs__assess_basic_object.c +5 -5
- data/ext/cs__assess_fiber_track/cs__assess_fiber_track.c +4 -9
- data/ext/cs__assess_fiber_track/cs__assess_fiber_track.h +0 -1
- data/ext/cs__assess_hash/cs__assess_hash.c +18 -17
- data/ext/cs__assess_hash/cs__assess_hash.h +2 -1
- data/ext/cs__assess_kernel/cs__assess_kernel.c +7 -8
- data/ext/cs__assess_marshal_module/cs__assess_marshal_module.c +4 -5
- data/ext/cs__assess_module/cs__assess_module.c +6 -6
- data/ext/cs__assess_regexp/cs__assess_regexp.c +4 -4
- data/ext/cs__assess_string/cs__assess_string.c +20 -4
- data/ext/cs__assess_string/cs__assess_string.h +4 -1
- data/ext/cs__assess_string_interpolation26/cs__assess_string_interpolation26.c +4 -7
- data/ext/cs__assess_yield_track/cs__assess_yield_track.c +3 -7
- data/ext/cs__assess_yield_track/cs__assess_yield_track.h +0 -1
- data/ext/cs__common/cs__common.c +59 -28
- data/ext/cs__common/cs__common.h +18 -20
- data/ext/cs__common/extconf.rb +0 -14
- data/ext/cs__contrast_patch/cs__contrast_patch.c +27 -25
- data/ext/cs__contrast_patch/cs__contrast_patch.h +5 -7
- data/ext/cs__protect_kernel/cs__protect_kernel.c +11 -12
- data/ext/cs__protect_kernel/cs__protect_kernel.h +2 -2
- data/ext/extconf_common.rb +0 -28
- data/lib/contrast-agent.rb +1 -1
- data/lib/contrast.rb +15 -23
- data/lib/contrast/agent.rb +51 -39
- data/lib/contrast/agent/assess.rb +11 -12
- data/lib/contrast/agent/assess/contrast_event.rb +39 -176
- data/lib/contrast/agent/assess/events/event_factory.rb +2 -2
- data/lib/contrast/agent/assess/events/source_event.rb +5 -9
- data/lib/contrast/agent/assess/finalizers/finalize.rb +21 -0
- data/lib/contrast/agent/assess/finalizers/freeze.rb +13 -0
- data/lib/contrast/agent/assess/finalizers/hash.rb +53 -0
- data/lib/contrast/agent/assess/policy/dynamic_source_factory.rb +2 -2
- data/lib/contrast/agent/assess/policy/patcher.rb +5 -5
- data/lib/contrast/agent/assess/policy/policy.rb +9 -9
- data/lib/contrast/agent/assess/policy/policy_node.rb +5 -99
- data/lib/contrast/agent/assess/policy/policy_scanner.rb +3 -3
- data/lib/contrast/agent/assess/policy/preshift.rb +15 -5
- data/lib/contrast/agent/assess/policy/propagation_method.rb +26 -24
- data/lib/contrast/agent/assess/policy/propagation_node.rb +6 -2
- data/lib/contrast/agent/assess/policy/propagator.rb +18 -18
- data/lib/contrast/agent/assess/policy/propagator/base.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/custom.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/database_write.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/insert.rb +1 -4
- data/lib/contrast/agent/assess/policy/propagator/match_data.rb +12 -3
- data/lib/contrast/agent/assess/policy/propagator/prepend.rb +5 -0
- data/lib/contrast/agent/assess/policy/propagator/remove.rb +6 -11
- data/lib/contrast/agent/assess/policy/propagator/select.rb +4 -4
- data/lib/contrast/agent/assess/policy/propagator/split.rb +5 -5
- data/lib/contrast/agent/assess/policy/propagator/substitution.rb +8 -7
- data/lib/contrast/agent/assess/policy/propagator/trim.rb +6 -10
- data/lib/contrast/agent/assess/policy/rewriter_patch.rb +5 -5
- data/lib/contrast/agent/assess/policy/source_method.rb +6 -16
- data/lib/contrast/agent/assess/policy/source_validation/cross_site_validator.rb +1 -1
- data/lib/contrast/agent/assess/policy/source_validation/source_validation.rb +1 -1
- data/lib/contrast/agent/assess/policy/trigger/xpath.rb +1 -1
- data/lib/contrast/agent/assess/policy/trigger_method.rb +7 -15
- data/lib/contrast/agent/assess/policy/trigger_node.rb +18 -6
- data/lib/contrast/agent/assess/policy/trigger_validation/trigger_validation.rb +2 -2
- data/lib/contrast/agent/assess/properties.rb +13 -383
- data/lib/contrast/agent/assess/property/evented.rb +78 -0
- data/lib/contrast/agent/assess/property/tagged.rb +339 -0
- data/lib/contrast/agent/assess/rule.rb +2 -2
- data/lib/contrast/agent/assess/rule/base.rb +3 -4
- data/lib/contrast/agent/assess/rule/provider.rb +3 -3
- data/lib/contrast/agent/assess/rule/provider/hardcoded_password.rb +1 -1
- data/lib/contrast/agent/assess/rule/provider/hardcoded_value_rule.rb +4 -22
- data/lib/contrast/agent/assess/tag.rb +27 -12
- data/lib/contrast/agent/at_exit_hook.rb +4 -2
- data/lib/contrast/agent/class_reopener.rb +7 -6
- data/lib/contrast/agent/deadzone/policy/deadzone_node.rb +1 -1
- data/lib/contrast/agent/deadzone/policy/policy.rb +2 -2
- data/lib/contrast/agent/disable_reaction.rb +1 -1
- data/lib/contrast/agent/exclusion_matcher.rb +3 -3
- data/lib/contrast/agent/inventory/policy/datastores.rb +2 -3
- data/lib/contrast/agent/inventory/policy/policy.rb +3 -3
- data/lib/contrast/agent/inventory/policy/trigger_node.rb +1 -1
- data/lib/contrast/agent/middleware.rb +37 -48
- data/lib/contrast/agent/patching/policy/after_load_patch.rb +4 -4
- data/lib/contrast/agent/patching/policy/after_load_patcher.rb +6 -5
- data/lib/contrast/agent/patching/policy/module_policy.rb +1 -1
- data/lib/contrast/agent/patching/policy/patch.rb +16 -16
- data/lib/contrast/agent/patching/policy/patcher.rb +30 -22
- data/lib/contrast/agent/patching/policy/policy.rb +9 -9
- data/lib/contrast/agent/patching/policy/policy_node.rb +3 -3
- data/lib/contrast/agent/patching/policy/trigger_node.rb +2 -2
- data/lib/contrast/agent/protect/policy/applies_command_injection_rule.rb +3 -3
- 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 -3
- data/lib/contrast/agent/protect/policy/applies_sqli_rule.rb +2 -2
- data/lib/contrast/agent/protect/policy/applies_xxe_rule.rb +3 -3
- data/lib/contrast/agent/protect/policy/policy.rb +8 -8
- data/lib/contrast/agent/protect/policy/rule_applicator.rb +3 -3
- data/lib/contrast/agent/protect/policy/trigger_node.rb +1 -1
- data/lib/contrast/agent/protect/rule.rb +18 -18
- data/lib/contrast/agent/protect/rule/base.rb +21 -32
- data/lib/contrast/agent/protect/rule/base_service.rb +2 -2
- data/lib/contrast/agent/protect/rule/cmd_injection.rb +5 -5
- data/lib/contrast/agent/protect/rule/deserialization.rb +1 -1
- data/lib/contrast/agent/protect/rule/http_method_tampering.rb +3 -8
- data/lib/contrast/agent/protect/rule/no_sqli.rb +1 -1
- data/lib/contrast/agent/protect/rule/path_traversal.rb +4 -5
- data/lib/contrast/agent/protect/rule/sqli.rb +2 -2
- data/lib/contrast/agent/protect/rule/unsafe_file_upload.rb +1 -1
- data/lib/contrast/agent/protect/rule/xss.rb +1 -1
- data/lib/contrast/agent/protect/rule/xxe.rb +4 -5
- data/lib/contrast/agent/protect/rule/xxe/entity_wrapper.rb +2 -2
- data/lib/contrast/agent/railtie.rb +1 -1
- data/lib/contrast/agent/reaction_processor.rb +5 -5
- data/lib/contrast/agent/request.rb +103 -340
- data/lib/contrast/agent/request_context.rb +25 -21
- data/lib/contrast/agent/request_handler.rb +1 -1
- data/lib/contrast/agent/response.rb +8 -20
- data/lib/contrast/agent/rewriter.rb +5 -6
- data/lib/contrast/agent/scope.rb +1 -1
- data/lib/contrast/agent/service_heartbeat.rb +8 -10
- data/lib/contrast/agent/static_analysis.rb +4 -4
- data/lib/contrast/agent/thread.rb +1 -1
- data/lib/contrast/agent/thread_watcher.rb +49 -0
- data/lib/contrast/agent/tracepoint_hook.rb +1 -1
- data/lib/contrast/agent/version.rb +1 -1
- data/lib/contrast/agent/worker_thread.rb +24 -0
- data/lib/contrast/api.rb +4 -6
- data/lib/contrast/api/communication.rb +20 -0
- data/lib/contrast/api/communication/connection_status.rb +41 -0
- data/lib/contrast/api/communication/messaging_queue.rb +79 -0
- data/lib/contrast/{utils/service_response_util.rb → api/communication/response_processor.rb} +10 -19
- data/lib/contrast/api/communication/service_lifecycle.rb +61 -0
- data/lib/contrast/api/communication/socket.rb +45 -0
- data/lib/contrast/api/communication/socket_client.rb +76 -0
- data/lib/contrast/api/communication/speedracer.rb +111 -0
- data/lib/contrast/api/communication/tcp_socket.rb +31 -0
- data/lib/contrast/api/communication/unix_socket.rb +27 -0
- data/lib/contrast/api/decorators.rb +14 -4
- data/lib/contrast/api/decorators/address.rb +61 -0
- data/lib/contrast/api/decorators/application_settings.rb +10 -5
- data/lib/contrast/api/decorators/application_update.rb +5 -13
- data/lib/contrast/api/decorators/http_request.rb +140 -0
- data/lib/contrast/api/decorators/input_analysis.rb +3 -2
- data/lib/contrast/api/decorators/message.rb +76 -0
- data/lib/contrast/api/decorators/rasp_rule_sample.rb +29 -0
- data/lib/contrast/api/decorators/route_coverage.rb +58 -0
- data/lib/contrast/api/decorators/server_features.rb +3 -2
- data/lib/contrast/api/decorators/trace_event.rb +100 -0
- data/lib/contrast/api/decorators/trace_event_object.rb +58 -0
- data/lib/contrast/api/decorators/trace_event_signature.rb +47 -0
- data/lib/contrast/api/decorators/trace_taint_range.rb +52 -0
- data/lib/contrast/api/decorators/trace_taint_range_tags.rb +109 -0
- data/lib/contrast/api/decorators/user_input.rb +40 -0
- data/lib/contrast/common_agent_configuration.rb +2 -2
- data/lib/contrast/components/agent.rb +2 -2
- data/lib/contrast/components/app_context.rb +1 -8
- data/lib/contrast/components/config.rb +7 -12
- data/lib/contrast/components/contrast_service.rb +1 -1
- data/lib/contrast/components/interface.rb +16 -16
- data/lib/contrast/components/logger.rb +1 -1
- data/lib/contrast/components/scope.rb +3 -3
- data/lib/contrast/components/settings.rb +0 -6
- data/lib/contrast/config.rb +18 -18
- data/lib/contrast/config/base_configuration.rb +2 -2
- data/lib/contrast/config/protect_rule_configuration.rb +1 -1
- data/lib/contrast/configuration.rb +5 -5
- data/lib/contrast/extension/assess.rb +22 -22
- data/lib/contrast/extension/assess/array.rb +4 -4
- data/lib/contrast/extension/assess/assess_extension.rb +28 -31
- data/lib/contrast/extension/assess/eval_trigger.rb +3 -3
- data/lib/contrast/extension/assess/exec_trigger.rb +1 -1
- data/lib/contrast/extension/assess/fiber.rb +3 -3
- data/lib/contrast/extension/assess/hash.rb +5 -3
- data/lib/contrast/extension/assess/kernel.rb +7 -6
- data/lib/contrast/extension/assess/marshal.rb +62 -0
- data/lib/contrast/extension/assess/regexp.rb +3 -3
- data/lib/contrast/extension/assess/string.rb +6 -6
- data/lib/contrast/extension/inventory.rb +4 -5
- data/lib/contrast/extension/kernel.rb +1 -1
- data/lib/contrast/extension/module.rb +1 -1
- data/lib/contrast/extension/protect.rb +3 -3
- data/lib/contrast/extension/protect/kernel.rb +2 -2
- data/lib/contrast/extension/protect/psych.rb +2 -2
- data/lib/contrast/framework/base_support.rb +0 -23
- data/lib/contrast/framework/manager.rb +7 -17
- data/lib/contrast/framework/rack/patch/session_cookie.rb +1 -1
- data/lib/contrast/framework/rack/patch/support.rb +1 -1
- data/lib/contrast/framework/rack/support.rb +2 -2
- data/lib/contrast/framework/rails/patch/action_controller_live_buffer.rb +1 -3
- data/lib/contrast/framework/rails/patch/assess_configuration.rb +5 -6
- data/lib/contrast/framework/rails/patch/rails_application_configuration.rb +1 -1
- data/lib/contrast/framework/rails/patch/support.rb +3 -3
- data/lib/contrast/framework/rails/rewrite/action_controller_railties_helper_inherited.rb +2 -2
- data/lib/contrast/framework/rails/rewrite/active_record_named.rb +2 -2
- data/lib/contrast/framework/rails/rewrite/active_record_time_zone_inherited.rb +2 -2
- data/lib/contrast/framework/rails/support.rb +56 -37
- data/lib/contrast/framework/sinatra/patch/base.rb +2 -2
- data/lib/contrast/framework/sinatra/patch/support.rb +1 -1
- data/lib/contrast/framework/sinatra/support.rb +13 -24
- data/lib/contrast/funchook/funchook.rb +45 -0
- data/lib/contrast/logger/application.rb +3 -3
- data/lib/contrast/logger/format.rb +64 -0
- data/lib/contrast/logger/log.rb +17 -9
- data/lib/contrast/logger/request.rb +30 -0
- data/lib/contrast/tasks/config.rb +1 -1
- data/lib/contrast/tasks/service.rb +2 -2
- data/lib/contrast/utils/assess/sampling_util.rb +2 -2
- data/lib/contrast/utils/assess/tracking_util.rb +46 -21
- data/lib/contrast/utils/boolean_util.rb +1 -1
- data/lib/contrast/utils/class_util.rb +5 -3
- data/lib/contrast/utils/freeze_util.rb +1 -1
- data/lib/contrast/utils/gemfile_reader.rb +5 -5
- data/lib/contrast/utils/hash_digest.rb +13 -3
- data/lib/contrast/utils/heap_dump_util.rb +2 -2
- data/lib/contrast/utils/invalid_configuration_util.rb +2 -18
- data/lib/contrast/utils/inventory_util.rb +6 -11
- data/lib/contrast/utils/io_util.rb +1 -1
- data/lib/contrast/utils/object_share.rb +0 -1
- data/lib/contrast/utils/os.rb +16 -4
- data/lib/contrast/utils/ruby_ast_rewriter.rb +1 -1
- data/lib/contrast/utils/sha256_builder.rb +2 -2
- data/lib/contrast/utils/stack_trace_utils.rb +2 -3
- data/lib/contrast/utils/string_utils.rb +1 -1
- data/lib/contrast/utils/tag_util.rb +1 -1
- data/lib/contrast/utils/thread_tracker.rb +1 -14
- data/lib/contrast/utils/timer.rb +1 -17
- data/resources/deadzone/policy.json +5 -0
- data/ruby-agent.gemspec +9 -9
- data/service_executables/VERSION +1 -1
- data/service_executables/linux/contrast-service +0 -0
- data/service_executables/mac/contrast-service +0 -0
- metadata +60 -79
- data/funchook/Makefile +0 -29
- data/funchook/autom4te.cache/output.0 +0 -4976
- data/funchook/autom4te.cache/requests +0 -78
- data/funchook/autom4te.cache/traces.0 +0 -364
- data/funchook/config.log +0 -490
- data/funchook/config.status +0 -1016
- data/funchook/configure +0 -4976
- data/funchook/src/Makefile +0 -70
- data/funchook/src/config.h +0 -101
- data/funchook/src/config.h.in +0 -100
- data/funchook/src/decoder.o +0 -0
- data/funchook/src/distorm.o +0 -0
- data/funchook/src/funchook.o +0 -0
- data/funchook/src/funchook_io.o +0 -0
- data/funchook/src/funchook_syscall.o +0 -0
- data/funchook/src/funchook_unix.o +0 -0
- data/funchook/src/funchook_x86.o +0 -0
- data/funchook/src/instructions.o +0 -0
- data/funchook/src/insts.o +0 -0
- data/funchook/src/libfunchook.so +0 -0
- data/funchook/src/mnemonics.o +0 -0
- data/funchook/src/operands.o +0 -0
- data/funchook/src/os_func.o +0 -0
- data/funchook/src/os_func_unix.o +0 -0
- data/funchook/src/prefix.o +0 -0
- data/funchook/src/printf_base.o +0 -0
- data/funchook/src/textdefs.o +0 -0
- data/funchook/src/wstring.o +0 -0
- data/funchook/test/Makefile +0 -43
- data/funchook/test/funchook_test +0 -0
- data/funchook/test/libfunchook_test.so +0 -0
- data/funchook/test/test_main.o +0 -0
- data/funchook/test/x86_64_test.o +0 -0
- data/lib/contrast/agent/assess/adjusted_span.rb +0 -27
- data/lib/contrast/agent/assess/insulator.rb +0 -49
- data/lib/contrast/agent/require_state.rb +0 -61
- data/lib/contrast/agent/socket_client.rb +0 -134
- data/lib/contrast/api/connection_status.rb +0 -49
- data/lib/contrast/api/socket.rb +0 -43
- data/lib/contrast/api/speedracer.rb +0 -188
- data/lib/contrast/api/tcp_socket.rb +0 -29
- data/lib/contrast/api/unix_socket.rb +0 -25
- data/lib/contrast/framework/sinatra/application_helper.rb +0 -51
- data/lib/contrast/framework/view_technologies_descriptor.rb +0 -21
- data/lib/contrast/internal_exception.rb +0 -8
- data/lib/contrast/utils/cache.rb +0 -58
- data/lib/contrast/utils/service_sender_util.rb +0 -167
- data/lib/contrast/utils/sinatra_helper.rb +0 -49
@@ -1,8 +1,8 @@
|
|
1
1
|
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
|
5
|
-
|
4
|
+
require 'contrast/components/interface'
|
5
|
+
require 'contrast/utils/invalid_configuration_util'
|
6
6
|
|
7
7
|
module Contrast
|
8
8
|
module Framework
|
@@ -23,7 +23,6 @@ module Contrast
|
|
23
23
|
include Contrast::Utils::InvalidConfigurationUtil
|
24
24
|
|
25
25
|
def analyze_session_store *args
|
26
|
-
return unless AGENT.enabled?
|
27
26
|
return if PROTECT.enabled?
|
28
27
|
|
29
28
|
apply_httponly_disabled(*args)
|
@@ -54,7 +53,7 @@ module Contrast
|
|
54
53
|
|
55
54
|
rails_session_settings = args[1]
|
56
55
|
with_contrast_scope do
|
57
|
-
cs__report_finding(CS__SESSION_TIMEOUT_NAME, rails_session_settings, caller_locations(
|
56
|
+
cs__report_finding(CS__SESSION_TIMEOUT_NAME, rails_session_settings, caller_locations(6, 5)[0])
|
58
57
|
end
|
59
58
|
rescue StandardError => e
|
60
59
|
begin
|
@@ -70,7 +69,7 @@ module Contrast
|
|
70
69
|
|
71
70
|
rails_session_settings = args[1]
|
72
71
|
with_contrast_scope do
|
73
|
-
cs__report_finding(CS__SECURE_RULE_NAME, rails_session_settings, caller_locations(
|
72
|
+
cs__report_finding(CS__SECURE_RULE_NAME, rails_session_settings, caller_locations(6, 5)[0])
|
74
73
|
end
|
75
74
|
rescue StandardError => e
|
76
75
|
begin
|
@@ -86,7 +85,7 @@ module Contrast
|
|
86
85
|
|
87
86
|
rails_session_settings = args[1]
|
88
87
|
with_contrast_scope do
|
89
|
-
cs__report_finding(CS__HTTPONLY_RULE_NAME, rails_session_settings, caller_locations(
|
88
|
+
cs__report_finding(CS__HTTPONLY_RULE_NAME, rails_session_settings, caller_locations(6, 5)[0])
|
90
89
|
end
|
91
90
|
rescue StandardError => e
|
92
91
|
begin
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# Copyright (c) 2020 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/framework/rails/patch/assess_configuration'
|
5
5
|
module Contrast
|
6
6
|
module Framework
|
7
7
|
module Rails
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
|
5
|
-
|
4
|
+
require 'contrast/framework/rails/patch/rails_application_configuration'
|
5
|
+
require 'contrast/agent/patching/policy/after_load_patch'
|
6
6
|
|
7
7
|
module Contrast
|
8
8
|
module Framework
|
@@ -20,7 +20,7 @@ module Contrast
|
|
20
20
|
# (i.e., where we normally patch) we will miss the configuration
|
21
21
|
# and will never be able to report session misconfiguration rules.
|
22
22
|
Contrast::Framework::Rails::Patch::RailsApplicationConfiguration.instrument
|
23
|
-
|
23
|
+
require 'contrast/agent/railtie' if ::Rails::VERSION::MAJOR.to_i >= 3
|
24
24
|
end
|
25
25
|
|
26
26
|
# (See BaseSupport#after_load_patches)
|
@@ -17,9 +17,9 @@ module Contrast
|
|
17
17
|
@_instrument ||= begin
|
18
18
|
::ActionController::Railties::Helpers.class_eval do
|
19
19
|
alias_method :cs__patched_helper_inherited, :inherited
|
20
|
-
def inherited klass
|
20
|
+
def inherited klass # rubocop:disable Lint/MissingSuper
|
21
21
|
klass&.instance_variable_set(:@cs__defining_class, true)
|
22
|
-
cs__patched_helper_inherited(klass)
|
22
|
+
cs__patched_helper_inherited(klass) # This calls the original inherited, which should handle super as needed.
|
23
23
|
ensure
|
24
24
|
klass&.instance_variable_set(:@cs__defining_class, false)
|
25
25
|
end
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# Copyright (c) 2020 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/components/interface'
|
5
5
|
|
6
6
|
module Contrast
|
7
7
|
module Framework
|
@@ -58,7 +58,7 @@ module Contrast
|
|
58
58
|
|
59
59
|
def instrument
|
60
60
|
@_instrument_named_track ||= begin
|
61
|
-
|
61
|
+
require 'cs__assess_active_record_named/cs__assess_active_record_named'
|
62
62
|
true
|
63
63
|
end
|
64
64
|
rescue StandardError, LoadError => e
|
@@ -16,9 +16,9 @@ module Contrast
|
|
16
16
|
private
|
17
17
|
|
18
18
|
alias_method :cs__patched_inherited, :inherited
|
19
|
-
def inherited klass
|
19
|
+
def inherited klass # rubocop:disable Lint/MissingSuper
|
20
20
|
klass&.instance_variable_set(:@cs__defining_class, true)
|
21
|
-
cs__patched_inherited(klass)
|
21
|
+
cs__patched_inherited(klass) # This calls the original inherited, which should handle super as needed.
|
22
22
|
ensure
|
23
23
|
klass&.instance_variable_set(:@cs__defining_class, false)
|
24
24
|
end
|
@@ -1,11 +1,10 @@
|
|
1
1
|
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
cs__scoped_require 'contrast/utils/string_utils'
|
4
|
+
require 'contrast/api/dtm.pb'
|
5
|
+
require 'contrast/framework/base_support'
|
6
|
+
require 'contrast/framework/rails/patch/support'
|
7
|
+
require 'contrast/utils/string_utils'
|
9
8
|
|
10
9
|
module Contrast
|
11
10
|
module Framework
|
@@ -15,15 +14,6 @@ module Contrast
|
|
15
14
|
extend Contrast::Framework::Rails::Patch::Support
|
16
15
|
|
17
16
|
class << self
|
18
|
-
RAILS_VIEWS = [
|
19
|
-
Contrast::Framework::ViewTechnologiesDescriptor.new('app/assets', 'coffee', %w[CoffeeScript]),
|
20
|
-
Contrast::Framework::ViewTechnologiesDescriptor.new('app/assets', 'scss', %w[SASS]),
|
21
|
-
Contrast::Framework::ViewTechnologiesDescriptor.new('app/views', 'html', %w[HTML5]),
|
22
|
-
Contrast::Framework::ViewTechnologiesDescriptor.new('app/views', 'html.erb', %w[HTML5 ERB]),
|
23
|
-
Contrast::Framework::ViewTechnologiesDescriptor.new('app/views', 'html.haml', %w[HTML5 HAML]),
|
24
|
-
Contrast::Framework::ViewTechnologiesDescriptor.new('public', 'html', %w[HTML5])
|
25
|
-
].cs__freeze
|
26
|
-
|
27
17
|
RAILS_MODULE_NAME_VERSION = Gem::Version.new('6.0.0')
|
28
18
|
|
29
19
|
def detection_class
|
@@ -51,15 +41,8 @@ module Contrast
|
|
51
41
|
'rails'
|
52
42
|
end
|
53
43
|
|
54
|
-
def scan_views
|
55
|
-
scan_view_directories(RAILS_VIEWS)
|
56
|
-
end
|
57
|
-
|
58
44
|
def collect_routes
|
59
|
-
|
60
|
-
route_to_coverage(route)
|
61
|
-
end
|
62
|
-
routes
|
45
|
+
find_all_routes(::Rails.application, [])
|
63
46
|
end
|
64
47
|
|
65
48
|
def current_route request
|
@@ -73,13 +56,17 @@ module Contrast
|
|
73
56
|
full_routes = ::Rails.application.routes.router.send(:find_routes, request.rack_request)
|
74
57
|
return if full_routes.empty?
|
75
58
|
|
76
|
-
full_route = full_routes[0]
|
77
|
-
return unless full_route
|
59
|
+
full_route = full_routes[0]
|
78
60
|
|
79
|
-
route
|
80
|
-
|
81
|
-
|
82
|
-
|
61
|
+
# the route is directly implemented within the application
|
62
|
+
if direct_route?(full_route)
|
63
|
+
route = full_route[2] # route w/ highest precedence
|
64
|
+
Contrast::Api::Dtm::RouteCoverage.from_action_dispatch_journey(route)
|
65
|
+
else
|
66
|
+
engine_route(full_route, request)
|
67
|
+
end
|
68
|
+
rescue StandardError => _e
|
69
|
+
nil
|
83
70
|
end
|
84
71
|
|
85
72
|
def retrieve_request env
|
@@ -96,17 +83,49 @@ module Contrast
|
|
96
83
|
|
97
84
|
private
|
98
85
|
|
99
|
-
#
|
100
|
-
def
|
101
|
-
|
102
|
-
|
86
|
+
# route is not mounted within an engine
|
87
|
+
def direct_route? full_route
|
88
|
+
full_route[2]&.app&.cs__class == ActionDispatch::Routing::RouteSet::Dispatcher ||
|
89
|
+
(full_route[2].cs__class == ActionDispatch::Journey::Route && full_route[2]&.app&.cs__class == ActionDispatch::Routing::Mapper::Constraints)
|
90
|
+
end
|
91
|
+
|
92
|
+
def engine_route full_route, request
|
93
|
+
engine_route = full_route[2] # supposed route - but actually an Engine mount point
|
94
|
+
return unless engine_route
|
103
95
|
|
104
|
-
|
105
|
-
|
96
|
+
engine_mount_name = engine_route.name
|
97
|
+
return unless engine_mount_name
|
106
98
|
|
107
|
-
|
108
|
-
|
109
|
-
|
99
|
+
engine_path_segments = request.rack_request.path_info.split(engine_mount_name)
|
100
|
+
return if engine_path_segments.empty?
|
101
|
+
|
102
|
+
path_within_engine = engine_path_segments[-1]
|
103
|
+
return unless path_within_engine
|
104
|
+
|
105
|
+
engine_router = engine_route.app&.app&.routes&.router
|
106
|
+
return unless engine_router
|
107
|
+
|
108
|
+
# Get all routes regardless of http method
|
109
|
+
matching_routes = engine_router.send(:filter_routes, path_within_engine)
|
110
|
+
return unless matching_routes
|
111
|
+
|
112
|
+
# filter for current http method
|
113
|
+
reportable_routes = engine_router.send(:match_routes, matching_routes, request.rack_request)
|
114
|
+
return if reportable_routes.empty?
|
115
|
+
|
116
|
+
Contrast::Api::Dtm::RouteCoverage.from_action_dispatch_journey(reportable_routes[0])
|
117
|
+
end
|
118
|
+
|
119
|
+
# Rails engine routes need to be detected by inspecting Engine class route set
|
120
|
+
def find_all_routes app, route_list
|
121
|
+
app.routes.routes.each do |route|
|
122
|
+
if route.cs__respond_to?(:app) && route.app.cs__class == ActionDispatch::Routing::RouteSet::Dispatcher
|
123
|
+
route_list << Contrast::Api::Dtm::RouteCoverage.from_action_dispatch_journey(route)
|
124
|
+
elsif route.app.app.cs__respond_to?(:routes)
|
125
|
+
route_list += find_all_routes(route.app.app, [])
|
126
|
+
end
|
127
|
+
end
|
128
|
+
route_list
|
110
129
|
end
|
111
130
|
end
|
112
131
|
end
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# Copyright (c) 2020 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/framework/sinatra/support'
|
5
5
|
|
6
6
|
module Contrast
|
7
7
|
module Framework
|
@@ -70,7 +70,7 @@ module Contrast
|
|
70
70
|
routes.each do |pattern, _, _| # Mustermann::Sinatra
|
71
71
|
next unless pattern.params(route)
|
72
72
|
|
73
|
-
dtm = Contrast::
|
73
|
+
dtm = Contrast::Api::Dtm::RouteCoverage.from_sinatra_route(clazz, method, pattern)
|
74
74
|
context.append_route_coverage(dtm)
|
75
75
|
break
|
76
76
|
end
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
|
4
|
+
require 'contrast/agent/patching/policy/after_load_patch'
|
5
5
|
|
6
6
|
module Contrast
|
7
7
|
module Framework
|
@@ -1,16 +1,14 @@
|
|
1
1
|
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
|
5
|
-
|
6
|
-
cs__scoped_require 'contrast/framework/sinatra/patch/support'
|
4
|
+
require 'contrast/framework/base_support'
|
5
|
+
require 'contrast/framework/sinatra/patch/support'
|
7
6
|
|
8
7
|
module Contrast
|
9
8
|
module Framework
|
10
9
|
module Sinatra
|
11
10
|
# Used when Sinatra is present to define framework specific behavior
|
12
11
|
class Support < BaseSupport
|
13
|
-
extend Contrast::Framework::Sinatra::ApplicationHelper
|
14
12
|
extend Contrast::Framework::Sinatra::Patch::Support
|
15
13
|
class << self
|
16
14
|
def detection_class
|
@@ -37,12 +35,6 @@ module Contrast
|
|
37
35
|
'sinatra'
|
38
36
|
end
|
39
37
|
|
40
|
-
def scan_views
|
41
|
-
return unless app_class
|
42
|
-
|
43
|
-
scan_view_directories(scannable_view_dirs)
|
44
|
-
end
|
45
|
-
|
46
38
|
# Iterate over every class that extends Sinatra::Base, pull out its routes
|
47
39
|
# (array of arrays with Mustermann::Sinatra as [][0]) and convert them into
|
48
40
|
# Contrast::Api::Dtm::RouteCoverage
|
@@ -56,7 +48,7 @@ module Contrast
|
|
56
48
|
class_routes.each_pair do |method, list|
|
57
49
|
# item: [ Mustermann::Sinatra, [], Proc]
|
58
50
|
list.each do |item|
|
59
|
-
routes <<
|
51
|
+
routes << Contrast::Api::Dtm::RouteCoverage.from_sinatra_route(clazz, method, item[0])
|
60
52
|
end
|
61
53
|
end
|
62
54
|
end
|
@@ -74,6 +66,16 @@ module Contrast
|
|
74
66
|
|
75
67
|
private
|
76
68
|
|
69
|
+
def app_class
|
70
|
+
return nil unless defined?(::Sinatra) && defined?(::Sinatra::Base)
|
71
|
+
|
72
|
+
@_app_class ||= begin
|
73
|
+
sinatra_layers = ObjectSpace.each_object(::Sinatra::Base).to_a
|
74
|
+
result_layer = sinatra_layers.find { |layer| layer.app.nil? }
|
75
|
+
result_layer
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
77
79
|
# Iterate over every class that extends Sinatra::Base, pull out its routes
|
78
80
|
# (array of arrays with Mustermann::Sinatra as [][0]) and convert them into
|
79
81
|
# Contrast::Api::Dtm::RouteCoverage
|
@@ -89,19 +91,6 @@ module Contrast
|
|
89
91
|
logger.trace('Sinatra controller found with no route instances', module: controller)
|
90
92
|
nil
|
91
93
|
end
|
92
|
-
|
93
|
-
# TODO: RUBY-763
|
94
|
-
# given clazz, method, and Mustermann::Sinatra, build a
|
95
|
-
# Contrast::Api::Dtm::RouteCoverage
|
96
|
-
def route_to_coverage clazz, method, pattern
|
97
|
-
safe_pattern = source_or_string(pattern)
|
98
|
-
|
99
|
-
route_coverage = Contrast::Api::Dtm::RouteCoverage.new
|
100
|
-
route_coverage.route = "#{ clazz }##{ method } #{ safe_pattern }"
|
101
|
-
route_coverage.verb = Contrast::Utils::StringUtils.force_utf8(method)
|
102
|
-
route_coverage.url = Contrast::Utils::StringUtils.force_utf8(safe_pattern)
|
103
|
-
route_coverage
|
104
|
-
end
|
105
94
|
end
|
106
95
|
end
|
107
96
|
end
|
@@ -0,0 +1,45 @@
|
|
1
|
+
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
require 'contrast/components/interface'
|
5
|
+
# This module is used to find funchook library and determine availability
|
6
|
+
module Funchook
|
7
|
+
include Contrast::Components::Interface
|
8
|
+
access_component :logging
|
9
|
+
attr_accessor :path
|
10
|
+
|
11
|
+
# Possible platform library files
|
12
|
+
ACCEPTABLE_FILES = %w[libfunchook.dylib libfunchook.so].cs__freeze
|
13
|
+
|
14
|
+
# Top level agent directories that should have the funchook libraries
|
15
|
+
SEARCH_DIRS = [
|
16
|
+
File.join('ext'),
|
17
|
+
File.join('shared_libraries'),
|
18
|
+
File.join('funchook', 'src')
|
19
|
+
].cs__freeze
|
20
|
+
|
21
|
+
AGENT_ROOT = File.join(__dir__, '..', '..', '..')
|
22
|
+
|
23
|
+
def self.resolve_path!
|
24
|
+
actual_path_segments = SEARCH_DIRS.product(ACCEPTABLE_FILES).find do |potential_funchook_path|
|
25
|
+
load_path = absolute_path(potential_funchook_path)
|
26
|
+
File.exist?(load_path)
|
27
|
+
end
|
28
|
+
|
29
|
+
if actual_path_segments.nil?
|
30
|
+
logger.warn('Unable to find funchook')
|
31
|
+
else
|
32
|
+
@path = absolute_path(actual_path_segments)
|
33
|
+
logger.info('Funchook found', path: @path)
|
34
|
+
end
|
35
|
+
@path
|
36
|
+
end
|
37
|
+
|
38
|
+
def self.absolute_path path_array
|
39
|
+
File.absolute_path(File.join(AGENT_ROOT, *path_array))
|
40
|
+
end
|
41
|
+
|
42
|
+
def self.available?
|
43
|
+
@_available ||= !!resolve_path!
|
44
|
+
end
|
45
|
+
end
|
@@ -1,11 +1,11 @@
|
|
1
1
|
# Copyright (c) 2020 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/components/interface'
|
5
5
|
|
6
6
|
module Contrast
|
7
7
|
module Logger
|
8
|
-
#
|
8
|
+
# Our decorator for the Ougai logger allowing for the logging of the
|
9
9
|
# application environment, used to provide context during troubleshooting.
|
10
10
|
module Application
|
11
11
|
include Contrast::Components::Interface
|
@@ -35,7 +35,7 @@ module Contrast
|
|
35
35
|
|
36
36
|
loggable = CONFIG.raw.send(:load_config)
|
37
37
|
loggable.delete('api')
|
38
|
-
info('Current configuration',
|
38
|
+
info('Current configuration', configuration: JSON.pretty_generate(loggable))
|
39
39
|
end
|
40
40
|
|
41
41
|
def application_libraries
|
@@ -0,0 +1,64 @@
|
|
1
|
+
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
require 'ougai'
|
5
|
+
require 'contrast/utils/object_share'
|
6
|
+
require 'contrast/utils/thread_tracker'
|
7
|
+
|
8
|
+
module Contrast
|
9
|
+
module Logger
|
10
|
+
# Our format for the Ougai logger allowing for custom log format that
|
11
|
+
# extends the behavior of the default Ougai logger
|
12
|
+
class Format < Ougai::Formatters::Bunyan
|
13
|
+
LOG_TRACKER = Contrast::Utils::ThreadTracker.new
|
14
|
+
# Our override of the _call method to add in the extra data that we want,
|
15
|
+
# based on
|
16
|
+
# https://github.com/tilfin/ougai/blob/1fe4fc2587be8eabc47d36dc57ee2814f8a0162b/lib/ougai/formatters/bunyan.rb#L26
|
17
|
+
# By default, it adds:
|
18
|
+
# name: progname || @app_name,
|
19
|
+
# hostname: @hostname,
|
20
|
+
# pid: $$,
|
21
|
+
# level: to_level(severity),
|
22
|
+
# time: time,
|
23
|
+
# v: 0
|
24
|
+
# and we add the fields from #format_hash
|
25
|
+
def _call severity, time, progname, data
|
26
|
+
super(severity,
|
27
|
+
time,
|
28
|
+
progname,
|
29
|
+
format_hash.merge(data)
|
30
|
+
)
|
31
|
+
end
|
32
|
+
|
33
|
+
private
|
34
|
+
|
35
|
+
# The extra values to add to the Bunyan hash.
|
36
|
+
# @return [Hash{Symbol => Object}] the extra data to log
|
37
|
+
def format_hash
|
38
|
+
thread_hash.merge(request_hash)
|
39
|
+
end
|
40
|
+
|
41
|
+
# Because this is unique per thread, we'll create it once and then store
|
42
|
+
# it, rather than create a new hash on every log call during the request.
|
43
|
+
def thread_hash
|
44
|
+
hash = LOG_TRACKER.get(:logging_hash)
|
45
|
+
unless hash
|
46
|
+
hash = {
|
47
|
+
thread_id: Thread.current.object_id
|
48
|
+
}
|
49
|
+
LOG_TRACKER.set(:logging_hash, hash)
|
50
|
+
end
|
51
|
+
hash
|
52
|
+
end
|
53
|
+
|
54
|
+
NO_REQUEST_HASH = { request_id: -1 }.cs__freeze
|
55
|
+
def request_hash
|
56
|
+
@request_tracker_defined ||= defined?(Contrast::Agent) &&
|
57
|
+
defined?(Contrast::Agent::REQUEST_TRACKER)
|
58
|
+
return NO_REQUEST_HASH unless @request_tracker_defined
|
59
|
+
|
60
|
+
Contrast::Agent::REQUEST_TRACKER&.current&.logging_hash || NO_REQUEST_HASH
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|