contrast-agent 3.12.2 → 3.15.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 +18 -16
- data/ext/cs__assess_marshal_module/cs__assess_marshal_module.h +1 -0
- 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 +31 -16
- data/ext/cs__assess_string/cs__assess_string.h +6 -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 +63 -30
- data/ext/cs__common/cs__common.h +19 -21
- 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 +12 -12
- data/lib/contrast/agent/assess/contrast_event.rb +40 -185
- 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/freeze.rb +15 -0
- data/lib/contrast/agent/assess/finalizers/hash.rb +97 -0
- data/lib/contrast/agent/assess/policy/dynamic_source_factory.rb +2 -2
- data/lib/contrast/agent/assess/policy/patcher.rb +6 -6
- data/lib/contrast/agent/assess/policy/policy.rb +9 -11
- data/lib/contrast/agent/assess/policy/policy_node.rb +5 -99
- data/lib/contrast/agent/assess/policy/policy_scanner.rb +2 -3
- data/lib/contrast/agent/assess/policy/preshift.rb +13 -7
- data/lib/contrast/agent/assess/policy/propagation_method.rb +64 -45
- 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/append.rb +8 -5
- data/lib/contrast/agent/assess/policy/propagator/base.rb +2 -2
- data/lib/contrast/agent/assess/policy/propagator/center.rb +9 -5
- data/lib/contrast/agent/assess/policy/propagator/custom.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/database_write.rb +6 -4
- data/lib/contrast/agent/assess/policy/propagator/insert.rb +7 -7
- data/lib/contrast/agent/assess/policy/propagator/keep.rb +4 -1
- data/lib/contrast/agent/assess/policy/propagator/match_data.rb +18 -9
- data/lib/contrast/agent/assess/policy/propagator/next.rb +7 -5
- data/lib/contrast/agent/assess/policy/propagator/prepend.rb +13 -5
- data/lib/contrast/agent/assess/policy/propagator/remove.rb +14 -15
- data/lib/contrast/agent/assess/policy/propagator/replace.rb +5 -2
- data/lib/contrast/agent/assess/policy/propagator/reverse.rb +7 -5
- data/lib/contrast/agent/assess/policy/propagator/select.rb +19 -11
- data/lib/contrast/agent/assess/policy/propagator/splat.rb +14 -8
- data/lib/contrast/agent/assess/policy/propagator/split.rb +19 -13
- data/lib/contrast/agent/assess/policy/propagator/substitution.rb +36 -26
- data/lib/contrast/agent/assess/policy/propagator/trim.rb +17 -15
- data/lib/contrast/agent/assess/policy/rewriter_patch.rb +5 -5
- data/lib/contrast/agent/assess/policy/source_method.rb +90 -73
- 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/reflected_xss.rb +16 -11
- data/lib/contrast/agent/assess/policy/trigger/xpath.rb +2 -2
- data/lib/contrast/agent/assess/policy/trigger_method.rb +41 -26
- data/lib/contrast/agent/assess/policy/trigger_node.rb +30 -17
- data/lib/contrast/agent/assess/policy/trigger_validation/ssrf_validator.rb +2 -1
- data/lib/contrast/agent/assess/policy/trigger_validation/trigger_validation.rb +2 -2
- data/lib/contrast/agent/assess/properties.rb +15 -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/property/updated.rb +136 -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/assess/tracker.rb +66 -0
- data/lib/contrast/agent/at_exit_hook.rb +4 -2
- data/lib/contrast/agent/class_reopener.rb +14 -11
- 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 +36 -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 +43 -44
- data/lib/contrast/agent/patching/policy/policy.rb +10 -13
- 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 +25 -26
- data/lib/contrast/agent/rewriter.rb +6 -9
- 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 +76 -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 +7 -17
- 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 +12 -17
- data/lib/contrast/components/config.rb +8 -23
- data/lib/contrast/components/contrast_service.rb +3 -3
- 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/application_configuration.rb +5 -2
- data/lib/contrast/config/base_configuration.rb +2 -2
- data/lib/contrast/config/protect_rule_configuration.rb +1 -1
- data/lib/contrast/config/service_configuration.rb +8 -2
- data/lib/contrast/configuration.rb +93 -52
- data/lib/contrast/extension/assess.rb +21 -23
- data/lib/contrast/extension/assess/array.rb +12 -9
- data/lib/contrast/extension/assess/erb.rb +6 -3
- 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 +12 -12
- data/lib/contrast/extension/assess/hash.rb +5 -4
- data/lib/contrast/extension/assess/kernel.rb +19 -11
- data/lib/contrast/extension/assess/marshal.rb +63 -0
- data/lib/contrast/extension/assess/regexp.rb +8 -7
- data/lib/contrast/extension/assess/string.rb +13 -15
- 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 +13 -19
- 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 +6 -13
- 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 +58 -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 +13 -5
- 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 +89 -19
- data/lib/contrast/utils/boolean_util.rb +1 -1
- data/lib/contrast/utils/class_util.rb +2 -2
- data/lib/contrast/utils/duck_utils.rb +0 -10
- data/lib/contrast/utils/env_configuration_item.rb +2 -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 +21 -35
- 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 +11 -6
- 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/assess/policy.json +0 -10
- data/resources/deadzone/policy.json +5 -0
- data/ruby-agent.gemspec +24 -23
- data/service_executables/VERSION +1 -1
- data/service_executables/linux/contrast-service +0 -0
- data/service_executables/mac/contrast-service +0 -0
- metadata +92 -92
- data/funchook/Makefile +0 -29
- data/funchook/autom4te.cache/output.0 +0 -4964
- data/funchook/autom4te.cache/requests +0 -77
- data/funchook/autom4te.cache/traces.0 +0 -361
- data/funchook/config.log +0 -651
- data/funchook/config.status +0 -1015
- data/funchook/configure +0 -4964
- 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.dylib +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/libfunchook_test.so.dSYM/Contents/Info.plist +0 -20
- data/funchook/test/libfunchook_test.so.dSYM/Contents/Resources/DWARF/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/extension/assess/assess_extension.rb +0 -148
- 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/freeze_util.rb +0 -32
- data/lib/contrast/utils/service_sender_util.rb +0 -167
- data/lib/contrast/utils/sinatra_helper.rb +0 -49
@@ -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
|
78
|
-
|
79
|
-
route = full_route[2] # route w/ highest precedence
|
80
|
-
return unless route
|
59
|
+
full_route = full_routes[0]
|
81
60
|
|
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,51 @@ 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
|
95
|
+
|
96
|
+
engine_mount_name = engine_route.name
|
97
|
+
return unless engine_mount_name
|
103
98
|
|
104
|
-
|
105
|
-
|
99
|
+
engine_path_segments = request.rack_request.path_info.split(engine_mount_name)
|
100
|
+
return if engine_path_segments.empty?
|
106
101
|
|
107
|
-
|
108
|
-
|
109
|
-
|
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
|
+
return route_list unless app.cs__respond_to?(:routes) && app.routes.cs__respond_to?(:routes)
|
122
|
+
|
123
|
+
app.routes.routes.each do |route|
|
124
|
+
if route.cs__respond_to?(:app) && route.app.cs__class == ActionDispatch::Routing::RouteSet::Dispatcher
|
125
|
+
route_list << Contrast::Api::Dtm::RouteCoverage.from_action_dispatch_journey(route)
|
126
|
+
elsif route.app.app.cs__respond_to?(:routes)
|
127
|
+
route_list += find_all_routes(route.app.app, [])
|
128
|
+
end
|
129
|
+
end
|
130
|
+
route_list
|
110
131
|
end
|
111
132
|
end
|
112
133
|
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
|
@@ -33,9 +33,17 @@ module Contrast
|
|
33
33
|
def application_configuration
|
34
34
|
return unless info?
|
35
35
|
|
36
|
-
loggable = CONFIG.raw.
|
37
|
-
|
38
|
-
|
36
|
+
loggable = CONFIG.raw.loggable
|
37
|
+
info('Current configuration', configuration: loggable)
|
38
|
+
env_keys = ENV.keys.select { |env_key| env_key&.to_s&.start_with?(Contrast::Components::Config::CONTRAST_ENV_MARKER) }
|
39
|
+
env_items = env_keys.map { |env_key| Contrast::Utils::EnvConfigurationItem.new(env_key, nil) }
|
40
|
+
env_translations = env_items.each_with_object({}) do |conversion, hash|
|
41
|
+
hash[conversion.key] = conversion.dot_path_array.join('.')
|
42
|
+
end
|
43
|
+
info('Set by environment', overrides: env_translations)
|
44
|
+
rescue StandardError => e
|
45
|
+
puts e
|
46
|
+
sleep(5)
|
39
47
|
end
|
40
48
|
|
41
49
|
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
|
data/lib/contrast/logger/log.rb
CHANGED
@@ -1,14 +1,16 @@
|
|
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
|
-
|
4
|
+
require 'logger'
|
5
|
+
require 'ougai'
|
6
|
+
require 'singleton'
|
7
7
|
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
8
|
+
require 'contrast/components/interface'
|
9
|
+
require 'contrast/extension/module'
|
10
|
+
require 'contrast/logger/application'
|
11
|
+
require 'contrast/logger/format'
|
12
|
+
require 'contrast/logger/request'
|
13
|
+
require 'contrast/logger/time'
|
12
14
|
|
13
15
|
module Contrast
|
14
16
|
module Logger
|
@@ -90,12 +92,14 @@ module Contrast
|
|
90
92
|
add_contrast_loggers(logger)
|
91
93
|
logger.progname = 'Contrast Agent'
|
92
94
|
logger.level = level_const
|
95
|
+
logger.formatter = Contrast::Logger::Format.new
|
93
96
|
logger.formatter.datetime_format = '%Y-%m-%dT%H:%M:%S.%L%z'
|
94
97
|
logger
|
95
98
|
end
|
96
99
|
|
97
100
|
def add_contrast_loggers logger
|
98
101
|
logger.extend(Contrast::Logger::Application)
|
102
|
+
logger.extend(Contrast::Logger::Request)
|
99
103
|
logger.extend(Contrast::Logger::Time)
|
100
104
|
end
|
101
105
|
|
@@ -108,10 +112,14 @@ module Contrast
|
|
108
112
|
if write_permission?(path)
|
109
113
|
path
|
110
114
|
elsif write_permission?(DEFAULT_NAME)
|
111
|
-
|
115
|
+
# Log once when the path is invalid. We'll change to this path, so no
|
116
|
+
# need to log again.
|
117
|
+
puts "[!] Unable to write to '#{ path }'. Writing to default log '#{ DEFAULT_NAME }' instead." if previous_path != DEFAULT_NAME
|
112
118
|
DEFAULT_NAME
|
113
119
|
else
|
114
|
-
|
120
|
+
# Log once when the path is invalid. We'll change to this path, so no
|
121
|
+
# need to log again.
|
122
|
+
puts "[!] Unable to write to '#{ path }'. Writing to standard out instead." if previous_path != STDOUT_STR
|
115
123
|
STDOUT_STR
|
116
124
|
end
|
117
125
|
end
|