contrast-agent 3.9.0 → 3.11.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.simplecov +5 -2
- data/ext/build_funchook.rb +14 -9
- data/ext/cs__assess_active_record_named/cs__active_record_named.c +5 -12
- data/ext/cs__assess_active_record_named/extconf.rb +3 -0
- data/ext/cs__assess_array/cs__assess_array.c +3 -5
- data/ext/cs__assess_array/extconf.rb +3 -0
- data/ext/cs__assess_basic_object/cs__assess_basic_object.c +10 -4
- data/ext/cs__assess_basic_object/extconf.rb +3 -0
- data/ext/cs__assess_fiber_track/cs__assess_fiber_track.c +4 -3
- data/ext/cs__assess_fiber_track/cs__assess_fiber_track.h +3 -3
- data/ext/cs__assess_fiber_track/extconf.rb +3 -0
- data/ext/cs__assess_hash/cs__assess_hash.c +40 -17
- data/ext/cs__assess_hash/cs__assess_hash.h +4 -6
- data/ext/cs__assess_hash/extconf.rb +3 -0
- data/ext/cs__assess_kernel/cs__assess_kernel.c +10 -8
- data/ext/cs__assess_kernel/cs__assess_kernel.h +1 -0
- data/ext/cs__assess_kernel/extconf.rb +3 -0
- data/ext/cs__assess_marshal_module/cs__assess_marshal_module.c +3 -6
- data/ext/cs__assess_marshal_module/extconf.rb +3 -0
- data/ext/cs__assess_module/cs__assess_module.c +13 -9
- data/ext/cs__assess_module/extconf.rb +3 -0
- data/ext/cs__assess_regexp/cs__assess_regexp.c +13 -9
- data/ext/cs__assess_regexp/cs__assess_regexp.h +1 -0
- data/ext/cs__assess_regexp/extconf.rb +3 -0
- data/ext/cs__assess_string/cs__assess_string.c +5 -8
- data/ext/cs__assess_string/cs__assess_string.h +2 -1
- data/ext/cs__assess_string/extconf.rb +3 -0
- data/ext/cs__assess_string_interpolation26/cs__assess_string_interpolation26.c +2 -2
- data/ext/cs__assess_string_interpolation26/cs__assess_string_interpolation26.h +3 -3
- data/ext/cs__assess_string_interpolation26/extconf.rb +3 -0
- data/ext/cs__assess_yield_track/cs__assess_yield_track.h +1 -1
- data/ext/cs__assess_yield_track/extconf.rb +3 -0
- data/ext/cs__common/cs__common.c +79 -0
- data/ext/cs__common/cs__common.h +34 -0
- data/ext/cs__common/extconf.rb +9 -8
- data/ext/cs__contrast_patch/cs__contrast_patch.h +1 -6
- data/ext/cs__contrast_patch/extconf.rb +3 -0
- data/ext/cs__protect_kernel/cs__protect_kernel.c +20 -11
- data/ext/cs__protect_kernel/extconf.rb +3 -0
- data/ext/extconf_common.rb +10 -8
- data/funchook/autom4te.cache/output.0 +1 -13
- data/funchook/autom4te.cache/requests +44 -45
- data/funchook/autom4te.cache/traces.0 +0 -3
- data/funchook/config.log +378 -217
- data/funchook/config.status +23 -24
- data/funchook/configure +1 -13
- data/funchook/src/Makefile +7 -7
- data/funchook/src/config.h +2 -2
- 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 +2 -2
- 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 +20 -0
- 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.rb +1 -0
- data/lib/contrast/agent.rb +21 -15
- data/lib/contrast/agent/assess.rb +1 -2
- data/lib/contrast/agent/assess/adjusted_span.rb +3 -1
- data/lib/contrast/agent/assess/contrast_event.rb +20 -68
- data/lib/contrast/agent/assess/events/event_factory.rb +25 -0
- data/lib/contrast/agent/assess/events/source_event.rb +83 -0
- data/lib/contrast/agent/assess/insulator.rb +0 -4
- data/lib/contrast/agent/assess/policy/patcher.rb +5 -2
- data/lib/contrast/agent/assess/policy/policy_node.rb +0 -7
- data/lib/contrast/agent/assess/policy/policy_scanner.rb +1 -1
- data/lib/contrast/agent/assess/policy/preshift.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagation_method.rb +65 -33
- data/lib/contrast/agent/assess/policy/propagation_node.rb +2 -1
- data/lib/contrast/agent/assess/policy/propagator.rb +1 -0
- data/lib/contrast/agent/assess/policy/propagator/match_data.rb +80 -0
- data/lib/contrast/agent/assess/policy/propagator/select.rb +35 -22
- data/lib/contrast/agent/assess/policy/propagator/split.rb +26 -6
- data/lib/contrast/agent/assess/policy/propagator/substitution.rb +2 -0
- data/lib/contrast/agent/assess/policy/rewriter_patch.rb +40 -27
- data/lib/contrast/agent/assess/policy/source_method.rb +20 -20
- data/lib/contrast/agent/assess/policy/source_node.rb +0 -15
- data/lib/contrast/agent/assess/policy/trigger_method.rb +29 -40
- data/lib/contrast/agent/assess/policy/trigger_node.rb +3 -6
- data/lib/contrast/agent/assess/policy/trigger_validation/ssrf_validator.rb +2 -31
- data/lib/contrast/agent/assess/properties.rb +5 -3
- data/lib/contrast/agent/assess/rule/base.rb +1 -5
- data/lib/contrast/agent/assess/rule/csrf/csrf_applicator.rb +2 -22
- data/lib/contrast/agent/assess/rule/csrf/csrf_watcher.rb +5 -1
- data/lib/contrast/agent/assess/rule/provider/hardcoded_value_rule.rb +2 -2
- data/lib/contrast/agent/assess/rule/redos.rb +4 -4
- data/lib/contrast/agent/assess/tag.rb +24 -14
- data/lib/contrast/agent/at_exit_hook.rb +16 -13
- data/lib/contrast/agent/class_reopener.rb +15 -6
- data/lib/contrast/agent/deadzone/policy/policy.rb +2 -2
- data/lib/contrast/agent/disable_reaction.rb +3 -4
- data/lib/contrast/agent/exclusion_matcher.rb +8 -48
- data/lib/contrast/agent/feature_state.rb +45 -78
- data/lib/contrast/agent/logger.rb +173 -0
- data/lib/contrast/agent/middleware.rb +87 -250
- data/lib/contrast/agent/module_data.rb +2 -1
- data/lib/contrast/agent/patching/policy/after_load_patch.rb +2 -1
- data/lib/contrast/agent/patching/policy/after_load_patcher.rb +21 -4
- data/lib/contrast/agent/patching/policy/method_policy.rb +3 -3
- data/lib/contrast/agent/patching/policy/module_policy.rb +0 -25
- data/lib/contrast/agent/patching/policy/patch.rb +96 -23
- data/lib/contrast/agent/patching/policy/patcher.rb +19 -19
- data/lib/contrast/agent/patching/policy/policy.rb +7 -7
- data/lib/contrast/agent/patching/policy/policy_node.rb +2 -10
- data/lib/contrast/agent/patching/policy/trigger_node.rb +1 -4
- data/lib/contrast/agent/protect/rule/base.rb +14 -33
- data/lib/contrast/agent/protect/rule/base_service.rb +3 -1
- data/lib/contrast/agent/protect/rule/cmd_injection.rb +10 -13
- data/lib/contrast/agent/protect/rule/csrf.rb +2 -1
- data/lib/contrast/agent/protect/rule/csrf/csrf_evaluator.rb +11 -14
- data/lib/contrast/agent/protect/rule/default_scanner.rb +0 -13
- data/lib/contrast/agent/protect/rule/deserialization.rb +2 -0
- data/lib/contrast/agent/protect/rule/http_method_tampering.rb +2 -2
- data/lib/contrast/agent/protect/rule/no_sqli.rb +4 -4
- data/lib/contrast/agent/protect/rule/path_traversal.rb +5 -4
- data/lib/contrast/agent/protect/rule/sqli.rb +1 -0
- data/lib/contrast/agent/protect/rule/unsafe_file_upload.rb +2 -0
- data/lib/contrast/agent/protect/rule/xss.rb +2 -0
- data/lib/contrast/agent/protect/rule/xxe.rb +10 -4
- data/lib/contrast/agent/railtie.rb +2 -8
- data/lib/contrast/agent/reaction_processor.rb +5 -5
- data/lib/contrast/agent/request.rb +9 -12
- data/lib/contrast/agent/request_context.rb +12 -14
- data/lib/contrast/agent/request_handler.rb +35 -0
- data/lib/contrast/agent/response.rb +52 -30
- data/lib/contrast/agent/rewriter.rb +25 -11
- data/lib/contrast/agent/rule_set.rb +49 -0
- data/lib/contrast/agent/scope.rb +4 -12
- data/lib/contrast/agent/service_heartbeat.rb +1 -2
- data/lib/contrast/agent/settings_state.rb +10 -74
- data/lib/contrast/agent/socket_client.rb +17 -11
- data/lib/contrast/agent/static_analysis.rb +42 -0
- data/lib/contrast/agent/thread.rb +1 -1
- data/lib/contrast/agent/tracepoint_hook.rb +1 -5
- data/lib/contrast/agent/version.rb +1 -1
- data/lib/contrast/api.rb +1 -1
- data/lib/contrast/api/decorators.rb +14 -0
- data/lib/contrast/api/decorators/application_settings.rb +37 -0
- data/lib/contrast/api/decorators/application_update.rb +66 -0
- data/lib/contrast/api/decorators/exclusion.rb +20 -0
- data/lib/contrast/api/decorators/input_analysis.rb +17 -0
- data/lib/contrast/api/decorators/server_features.rb +24 -0
- data/lib/contrast/api/speedracer.rb +31 -29
- data/lib/contrast/api/tcp_socket.rb +0 -2
- data/lib/contrast/components/agent.rb +27 -22
- data/lib/contrast/components/app_context.rb +18 -43
- data/lib/contrast/components/config.rb +7 -5
- data/lib/contrast/components/contrast_service.rb +0 -4
- data/lib/contrast/components/heap_dump.rb +12 -8
- data/lib/contrast/components/interface.rb +11 -10
- data/lib/contrast/components/logger.rb +3 -68
- data/lib/contrast/components/sampling.rb +22 -11
- data/lib/contrast/components/settings.rb +18 -5
- data/lib/contrast/config/base_configuration.rb +1 -0
- data/lib/contrast/config/default_value.rb +1 -0
- data/lib/contrast/config/protect_rule_configuration.rb +0 -14
- data/lib/contrast/configuration.rb +3 -5
- data/lib/contrast/extensions/framework/rails/action_controller_inheritance.rb +39 -0
- data/lib/contrast/extensions/framework/rails/active_record_named.rb +13 -8
- data/lib/contrast/extensions/ruby_core/assess.rb +1 -2
- data/lib/contrast/extensions/ruby_core/assess/assess_extension.rb +27 -22
- data/lib/contrast/extensions/ruby_core/assess/erb.rb +0 -8
- data/lib/contrast/extensions/ruby_core/assess/exec_trigger.rb +6 -8
- data/lib/contrast/extensions/ruby_core/assess/fiber.rb +88 -100
- data/lib/contrast/extensions/ruby_core/assess/hash.rb +32 -15
- data/lib/contrast/extensions/ruby_core/assess/kernel.rb +28 -27
- data/lib/contrast/extensions/ruby_core/assess/regexp.rb +74 -196
- data/lib/contrast/extensions/ruby_core/assess/string.rb +15 -7
- data/lib/contrast/extensions/ruby_core/assess/tilt_template_trigger.rb +29 -24
- data/lib/contrast/extensions/ruby_core/assess/xpath_library_trigger.rb +2 -2
- data/lib/contrast/extensions/ruby_core/eval_trigger.rb +0 -1
- data/lib/contrast/extensions/ruby_core/inventory/datastores.rb +2 -2
- data/lib/contrast/extensions/ruby_core/protect/applies_command_injection_rule.rb +9 -20
- data/lib/contrast/extensions/ruby_core/protect/applies_deserialization_rule.rb +9 -19
- data/lib/contrast/extensions/ruby_core/protect/applies_no_sqli_rule.rb +10 -27
- data/lib/contrast/extensions/ruby_core/protect/applies_path_traversal_rule.rb +13 -21
- data/lib/contrast/extensions/ruby_core/protect/applies_sqli_rule.rb +11 -23
- data/lib/contrast/extensions/ruby_core/protect/applies_xxe_rule.rb +62 -78
- data/lib/contrast/extensions/ruby_core/protect/rule_applicator.rb +50 -0
- data/lib/contrast/framework/base_support.rb +10 -0
- data/lib/contrast/framework/manager.rb +28 -2
- data/lib/contrast/framework/platform_version.rb +1 -0
- data/lib/contrast/framework/rails_support.rb +16 -0
- data/lib/contrast/framework/sinatra_support.rb +12 -2
- data/lib/contrast/framework/view_technologies_descriptor.rb +1 -0
- data/lib/contrast/tasks/service.rb +2 -8
- data/lib/contrast/utils/assess/sampling_util.rb +4 -9
- data/lib/contrast/utils/assess/tracking_util.rb +7 -1
- data/lib/contrast/utils/boolean_util.rb +2 -5
- data/lib/contrast/utils/cache.rb +0 -11
- data/lib/contrast/utils/class_util.rb +20 -1
- data/lib/contrast/utils/gemfile_reader.rb +5 -3
- data/lib/contrast/utils/hash_digest.rb +0 -4
- data/lib/contrast/utils/heap_dump_util.rb +12 -11
- data/lib/contrast/utils/invalid_configuration_util.rb +1 -1
- data/lib/contrast/utils/inventory_util.rb +2 -2
- data/lib/contrast/utils/io_util.rb +1 -11
- data/lib/contrast/utils/job_servers_running.rb +2 -2
- data/lib/contrast/utils/object_share.rb +1 -37
- data/lib/contrast/utils/os.rb +1 -25
- data/lib/contrast/utils/rack_assess_session_cookie.rb +3 -3
- data/lib/contrast/utils/rails_assess_configuration.rb +3 -3
- data/lib/contrast/utils/ruby_ast_rewriter.rb +5 -1
- data/lib/contrast/utils/service_response_util.rb +27 -53
- data/lib/contrast/utils/service_sender_util.rb +9 -5
- data/lib/contrast/utils/sinatra_helper.rb +0 -6
- data/lib/contrast/utils/stack_trace_utils.rb +86 -182
- data/lib/contrast/utils/string_utils.rb +18 -2
- data/lib/contrast/utils/tag_util.rb +11 -1
- data/lib/contrast/utils/thread_tracker.rb +2 -2
- data/lib/contrast/utils/timer.rb +0 -40
- data/resources/assess/policy.json +33 -21
- data/resources/protect/policy.json +9 -9
- data/ruby-agent.gemspec +7 -4
- data/service_executables/VERSION +1 -1
- data/service_executables/linux/contrast-service +0 -0
- data/service_executables/mac/contrast-service +0 -0
- metadata +79 -54
- data/ext/cs__assess_regexp_track/cs__assess_regexp_track.c +0 -63
- data/ext/cs__assess_regexp_track/cs__assess_regexp_track.h +0 -29
- data/ext/cs__assess_regexp_track/extconf.rb +0 -2
- data/funchook/src/libfunchook.so +0 -0
- data/lib/contrast/agent/assess/frozen_properties.rb +0 -41
- data/lib/contrast/agent/logger_manager.rb +0 -116
- data/lib/contrast/delegators.rb +0 -9
- data/lib/contrast/delegators/application_update.rb +0 -32
- data/lib/contrast/utils/comment_range.rb +0 -19
- data/lib/contrast/utils/environment_util.rb +0 -82
- data/lib/contrast/utils/performs_logging.rb +0 -152
- data/resources/factory-bot-spec/spec_helper.rb +0 -30
- data/resources/rubocops/kernel/catch_cop.rb +0 -37
- data/resources/rubocops/kernel/require_cop.rb +0 -37
- data/resources/rubocops/kernel/require_relative_cop.rb +0 -33
- data/resources/rubocops/module/autoload_cop.rb +0 -37
- data/resources/rubocops/module/const_defined_cop.rb +0 -37
- data/resources/rubocops/module/const_get_cop.rb +0 -37
- data/resources/rubocops/module/const_set_cop.rb +0 -37
- data/resources/rubocops/module/constants_cop.rb +0 -37
- data/resources/rubocops/module/name_cop.rb +0 -37
- data/resources/rubocops/object/class_cop.rb +0 -37
- data/resources/rubocops/object/freeze_cop.rb +0 -37
- data/resources/rubocops/object/frozen_cop.rb +0 -37
- data/resources/rubocops/object/is_a_cop.rb +0 -37
- data/resources/rubocops/object/method_cop.rb +0 -37
- data/resources/rubocops/object/respond_to_cop.rb +0 -37
- data/resources/rubocops/object/singleton_class_cop.rb +0 -37
- data/resources/rubocops/regexp/spelling_cop.rb +0 -44
- data/resources/rubocops/thread/new_cop.rb +0 -39
- data/resources/ruby-spec/ancestors_spec.rb +0 -70
- data/resources/ruby-spec/modulo_spec.rb +0 -831
- data/resources/ruby-spec/parameters_spec.rb +0 -261
- data/resources/ruby-spec/ruby_spec_spec_helper.rb +0 -35
@@ -3,207 +3,111 @@
|
|
3
3
|
|
4
4
|
cs__scoped_require 'contrast/utils/object_share'
|
5
5
|
cs__scoped_require 'contrast/api'
|
6
|
+
cs__scoped_require 'contrast/utils/cache'
|
6
7
|
|
7
8
|
module Contrast
|
8
9
|
module Utils
|
9
10
|
# Utilities for converting ruby stack trace into DTMs
|
10
11
|
class StackTraceUtils
|
11
|
-
CONTRAST_MARKER = 'contrast/extensions/ruby_core'
|
12
|
-
MONKEYPATCH_MARKER = 'cs__'
|
13
|
-
|
14
|
-
# TODO: RUBY-532
|
15
|
-
CLASSNAME_CACHE = Contrast::Utils::Cache.new
|
16
|
-
|
17
12
|
# need lib here to separate from specs
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
13
|
+
AGENT_CLASS_MARKER = '/lib/contrast/'
|
14
|
+
|
15
|
+
class << self
|
16
|
+
# Determine if this method is being invoked by application code or not
|
17
|
+
# based on the immediate caller of the code after Contrast.
|
18
|
+
#
|
19
|
+
# @return [Boolean] true if this code is called with application
|
20
|
+
# (non-gem) code in the caller
|
21
|
+
def custom_code_context?
|
22
|
+
root_dir = Contrast::Agent.framework_manager.app_root
|
23
|
+
|
24
|
+
stack = Kernel.caller(0, 15)
|
25
|
+
i = 0
|
26
|
+
while i < stack.length
|
27
|
+
stack_element = stack[i]
|
28
|
+
i += 1
|
29
|
+
next if stack_element.include?('/contrast/')
|
30
|
+
|
31
|
+
return stack_element.start_with?(root_dir)
|
33
32
|
end
|
34
|
-
i += 1
|
35
33
|
end
|
36
|
-
end
|
37
|
-
|
38
|
-
def self.build(
|
39
|
-
skip: 0,
|
40
|
-
depth: 10,
|
41
|
-
ignore: false,
|
42
|
-
ignore_strings: AGENT_CLASS_MARKERS,
|
43
|
-
class_lookup: false,
|
44
|
-
rasp_element: true)
|
45
|
-
|
46
|
-
stack = caller(skip.to_i, depth.to_i)
|
47
|
-
return [] unless stack
|
48
|
-
|
49
|
-
stack = reject_caller_entries(stack, ignore_strings) if ignore
|
50
|
-
stack.map! do |entry|
|
51
|
-
element = rasp_or_assess(rasp_element)
|
52
|
-
element = fill_element(element, entry, class_lookup)
|
53
|
-
element
|
54
|
-
end
|
55
|
-
stack.compact!
|
56
|
-
stack
|
57
|
-
end
|
58
34
|
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
35
|
+
# Call and translate a caller_locations array to an array of
|
36
|
+
# StackTraceElement for TeamServer to display, excluding any Contrast
|
37
|
+
# code found.
|
38
|
+
#
|
39
|
+
# @return [Array<Contrast::Api::Dtm::StackTraceElement]
|
40
|
+
def build_protect_stack_array
|
41
|
+
stack = caller(2, 20)
|
42
|
+
return [] unless stack
|
43
|
+
|
44
|
+
stack = reject_caller_entries(stack)
|
45
|
+
i = 0
|
46
|
+
stack.map! do |entry|
|
47
|
+
element = Contrast::Api::Dtm::StackTraceElement.new
|
48
|
+
element = fill_protect_element(element, entry, i)
|
49
|
+
i += 1
|
50
|
+
element
|
51
|
+
end
|
52
|
+
stack.compact!
|
53
|
+
stack
|
65
54
|
end
|
66
|
-
end
|
67
55
|
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
56
|
+
# Translate a caller array to an array of TraceStacks for TeamServer to
|
57
|
+
# display, excluding any Contrast code found.
|
58
|
+
#
|
59
|
+
# @param stack [Array<String>] the output of Kernel.caller
|
60
|
+
# @return [Array<Contrast::Api::Dtm::TraceStack]
|
61
|
+
def build_assess_stack_array stack
|
62
|
+
converted = []
|
63
|
+
return converted unless stack
|
64
|
+
|
65
|
+
i = 0
|
66
|
+
while i < stack.length
|
67
|
+
caller_location = stack[i]
|
68
|
+
i += 1
|
69
|
+
next if caller_location.include?(AGENT_CLASS_MARKER)
|
70
|
+
|
71
|
+
# To play nice with the way that TeamServer is rendering these
|
72
|
+
# values, we only populate the file_name field with exactly what we
|
73
|
+
# want them to display
|
74
|
+
element = Contrast::Api::Dtm::TraceStack.new
|
75
|
+
element.file_name = caller_location
|
76
|
+
converted << element
|
77
|
+
end
|
78
|
+
converted
|
73
79
|
end
|
74
|
-
end
|
75
80
|
|
76
|
-
|
77
|
-
return [] unless stack_locations
|
81
|
+
private
|
78
82
|
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
end
|
85
|
-
stack_locations.compact!
|
86
|
-
stack_locations
|
87
|
-
end
|
88
|
-
|
89
|
-
def self.reject_locations stack_locations
|
90
|
-
stack_locations.reject do |entry|
|
91
|
-
class_path = entry.path
|
92
|
-
method = entry.label
|
93
|
-
AGENT_CLASS_MARKERS.any? { |marker| class_path.include?(marker) } ||
|
94
|
-
method.include?(MONKEYPATCH_MARKER)
|
83
|
+
def reject_caller_entries stack
|
84
|
+
stack.reject do |entry|
|
85
|
+
entry = entry.to_s
|
86
|
+
entry.include?(AGENT_CLASS_MARKER)
|
87
|
+
end
|
95
88
|
end
|
96
|
-
end
|
97
89
|
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
element
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
# NOOP
|
113
|
-
nil
|
114
|
-
end
|
115
|
-
|
116
|
-
def self.best_classname path, file
|
117
|
-
name = first_class(path)
|
118
|
-
name || look_like_classname(file)
|
119
|
-
end
|
120
|
-
|
121
|
-
# "/.rvm/rubies/ruby-1.9.3-p551/lib/ruby/1.9.1/irb/workspace.rb:80:in `eval'"
|
122
|
-
def self.fill_loc_element element, caller_location
|
123
|
-
return element unless caller_location
|
124
|
-
|
125
|
-
lineno = caller_location.lineno
|
126
|
-
element.line_number = lineno.to_i
|
127
|
-
path = caller_location.path
|
128
|
-
path = Contrast::Utils::StringUtils.force_utf8(path)
|
129
|
-
file_name = filename_from_path(path)
|
130
|
-
element.file_name = Contrast::Utils::StringUtils.force_utf8(file_name)
|
131
|
-
element.declaring_class = path
|
132
|
-
label = caller_location.label
|
133
|
-
element.method_name = Contrast::Utils::StringUtils.force_utf8(label)
|
134
|
-
element
|
135
|
-
rescue StandardError
|
136
|
-
# NOOP
|
137
|
-
nil
|
138
|
-
end
|
90
|
+
# In Contrast UI - there are many ways to render the stacktraces. For
|
91
|
+
# Protect, there are two ways we're concerned about, one for the first
|
92
|
+
# element and then all others.
|
93
|
+
# 1 for protect first frame - We need the method specifically for this rendering
|
94
|
+
# 1 for protect Nth frames
|
95
|
+
def fill_protect_element element, caller_location, index
|
96
|
+
return element unless caller_location
|
97
|
+
|
98
|
+
if index.zero?
|
99
|
+
element.method_name = caller_location.split('`')[-1].delete_suffix!('\'')
|
100
|
+
element.file_name = caller_location.split(':')[0]
|
101
|
+
else
|
102
|
+
element.file_name = caller_location
|
103
|
+
end
|
139
104
|
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
path[txt_idx, path.length - txt_idx]
|
145
|
-
else
|
146
|
-
path
|
105
|
+
element
|
106
|
+
rescue StandardError
|
107
|
+
# NOOP
|
108
|
+
nil
|
147
109
|
end
|
148
110
|
end
|
149
|
-
|
150
|
-
# Bit of a HACK: Given a path to a file, assume that the first line in the
|
151
|
-
# form `class Name` is the class that was loaded. True most of the time.
|
152
|
-
#
|
153
|
-
# Using regexp here is expensive b/c it creates a ton of new Strings. We're
|
154
|
-
# trying to avoid that, so our guess is a little more clumsy, but should
|
155
|
-
# still work.
|
156
|
-
#
|
157
|
-
# Note: Might need to tune end marker to include /n
|
158
|
-
# based on: /\s*class\s+([_[:alpha:]][_[:alnum:]]*)/m
|
159
|
-
CLASS_MARKER = ' class '
|
160
|
-
CLASS_END_MARKER = Contrast::Utils::ObjectShare::NEW_LINE
|
161
|
-
def self.first_class path
|
162
|
-
return nil if path.nil? || path.empty?
|
163
|
-
|
164
|
-
name = CLASSNAME_CACHE[path]
|
165
|
-
return name if name
|
166
|
-
|
167
|
-
text = File.read(path)
|
168
|
-
name = parse_string(text, CLASS_MARKER, CLASS_END_MARKER)
|
169
|
-
CLASSNAME_CACHE[path] = name if name
|
170
|
-
name
|
171
|
-
end
|
172
|
-
|
173
|
-
RB_MARKER = '.rb'
|
174
|
-
# Convert a file to look like a classname
|
175
|
-
# If the file ends w/ '.rb', trim that off
|
176
|
-
# If the file doesn't start with a capital letter,
|
177
|
-
# capitalize it
|
178
|
-
def self.look_like_classname file
|
179
|
-
file = file.to_s
|
180
|
-
file[0].capitalize + (file.end_with?(RB_MARKER) ? file.slice(1..-4) : file.slice(1..-1))
|
181
|
-
end
|
182
|
-
|
183
|
-
# Using regexp here is expensive b/c it creates a ton of new Strings. We're
|
184
|
-
# trying to avoid that, so our guess is a little more clumsy, but should
|
185
|
-
# still work.
|
186
|
-
#
|
187
|
-
# Note: Might need to tune end marker to include /n
|
188
|
-
# based on: /[`]([^']*)[']/
|
189
|
-
METHOD_MARKER = Contrast::Utils::ObjectShare::TICK
|
190
|
-
METHOD_END_MARKER = Contrast::Utils::ObjectShare::COMMA
|
191
|
-
def self.find_method_name method
|
192
|
-
parse_string(method, METHOD_MARKER, METHOD_END_MARKER)
|
193
|
-
end
|
194
|
-
|
195
|
-
def self.parse_string string, start_marker, end_marker
|
196
|
-
return nil unless string
|
197
|
-
|
198
|
-
start_idx = string.index(start_marker)
|
199
|
-
return nil unless start_idx
|
200
|
-
|
201
|
-
start_idx += start_marker.length # account for marker length
|
202
|
-
end_idx = string.index(end_marker, start_idx)
|
203
|
-
end_idx ||= string.length
|
204
|
-
len = end_idx - start_idx
|
205
|
-
string[start_idx, len]
|
206
|
-
end
|
207
111
|
end
|
208
112
|
end
|
209
113
|
end
|
@@ -1,10 +1,15 @@
|
|
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
|
+
cs__scoped_require 'contrast/components/interface'
|
5
|
+
|
4
6
|
module Contrast
|
5
7
|
module Utils
|
6
8
|
# Utilities for encoding and normalizing strings
|
7
9
|
class StringUtils
|
10
|
+
include Contrast::Components::Interface
|
11
|
+
access_component :logging
|
12
|
+
|
8
13
|
UTF8 = 'utf-8'
|
9
14
|
HTTP_PREFIX = 'HTTP-'
|
10
15
|
|
@@ -17,6 +22,17 @@ module Contrast
|
|
17
22
|
string.nil? ? 0 : string.to_s.length
|
18
23
|
end
|
19
24
|
|
25
|
+
def self.present? str
|
26
|
+
!str.nil? && !str.to_s.empty?
|
27
|
+
end
|
28
|
+
|
29
|
+
def self.protobuf_format data, truncate: true
|
30
|
+
data = data&.to_s
|
31
|
+
data = Contrast::Utils::StringUtils.force_utf8(data)
|
32
|
+
data = Contrast::Utils::StringUtils.truncate(data) if truncate
|
33
|
+
data
|
34
|
+
end
|
35
|
+
|
20
36
|
# Protobuf has a very strict typing. Nil is not a String and will throw
|
21
37
|
# an exception if you try to set it. Use this to be safe.
|
22
38
|
# Uses the object share to avoid creating several new strings per request
|
@@ -31,7 +47,7 @@ module Contrast
|
|
31
47
|
str.to_s[0..255]
|
32
48
|
end
|
33
49
|
|
34
|
-
def self.force_utf8 str
|
50
|
+
def self.force_utf8 str
|
35
51
|
return Contrast::Utils::ObjectShare::EMPTY_STRING unless str
|
36
52
|
|
37
53
|
str = str.to_s
|
@@ -45,7 +61,7 @@ module Contrast
|
|
45
61
|
# We were unable to switch the String to a UTF-8 format.
|
46
62
|
# Return non-nil so as not to throw an exception later when trying
|
47
63
|
# to do regexp or other compares on the String
|
48
|
-
logger
|
64
|
+
logger.trace('Unable to cast String to UTF-8 format', e, value: str)
|
49
65
|
|
50
66
|
Contrast::Utils::ObjectShare::EMPTY_STRING
|
51
67
|
end
|
@@ -37,7 +37,9 @@ module Contrast
|
|
37
37
|
tag.update_end(0)
|
38
38
|
when Contrast::Agent::Assess::Tag::HIGH_SPAN
|
39
39
|
tag.update_start(range.end_idx)
|
40
|
-
when Contrast::Agent::Assess::Tag::ABOVE
|
40
|
+
when Contrast::Agent::Assess::Tag::ABOVE
|
41
|
+
# The tag's above where we are, it doesn't cover us but a later
|
42
|
+
# one may
|
41
43
|
end
|
42
44
|
end
|
43
45
|
return false unless tag.length <= 0
|
@@ -89,6 +91,14 @@ module Contrast
|
|
89
91
|
end
|
90
92
|
end
|
91
93
|
|
94
|
+
def size_aware_merge target_object, tags
|
95
|
+
max_size = target_object.to_s.length
|
96
|
+
tags = merge_tags(tags)
|
97
|
+
tags.each do |tag|
|
98
|
+
tag.update_end(max_size) if tag.extends_beyond_string_size?(max_size)
|
99
|
+
end
|
100
|
+
end
|
101
|
+
|
92
102
|
private
|
93
103
|
|
94
104
|
# Add one new element to the given array
|
@@ -41,11 +41,11 @@ module Contrast
|
|
41
41
|
end
|
42
42
|
|
43
43
|
# logger may be nil so use this utility method instead
|
44
|
-
def log key
|
44
|
+
def log key
|
45
45
|
return unless @logger
|
46
46
|
return unless @logger.debug?
|
47
47
|
|
48
|
-
@logger.debug(
|
48
|
+
@logger.debug('Accessing object in Thread Tracker', name: key, p_id: Process.pid, thread_id: Thread.current.object_id)
|
49
49
|
rescue StandardError
|
50
50
|
false # NOOP
|
51
51
|
end
|
data/lib/contrast/utils/timer.rb
CHANGED
@@ -21,23 +21,11 @@ module Contrast
|
|
21
21
|
result
|
22
22
|
end
|
23
23
|
|
24
|
-
def ms key
|
25
|
-
events[key.to_s] || 0
|
26
|
-
end
|
27
|
-
|
28
|
-
def abs key
|
29
|
-
start_ms + (events[key.to_s] || 0)
|
30
|
-
end
|
31
|
-
|
32
24
|
def to_s
|
33
25
|
pairs = events.to_a.map { |pair| "#{ pair[0] }=#{ pair[1] }ms" }
|
34
26
|
start_at.strftime('%Y-%m-%d %H:%M:%S.%L') + pairs.join(Contrast::Utils::ObjectShare::SPACE)
|
35
27
|
end
|
36
28
|
|
37
|
-
def diff_s start_ms
|
38
|
-
(now_ms - start_ms) / 1000
|
39
|
-
end
|
40
|
-
|
41
29
|
def now_ms
|
42
30
|
(Time.now.to_f * 1000).to_i
|
43
31
|
end
|
@@ -45,34 +33,6 @@ module Contrast
|
|
45
33
|
def self.now_ms
|
46
34
|
(Time.now.to_f * 1000).to_i
|
47
35
|
end
|
48
|
-
|
49
|
-
def self.earliest lhs, rhs
|
50
|
-
if lhs && rhs
|
51
|
-
[lhs, rhs].min
|
52
|
-
elsif lhs
|
53
|
-
lhs
|
54
|
-
else
|
55
|
-
rhs
|
56
|
-
end
|
57
|
-
end
|
58
|
-
|
59
|
-
def self.latest lhs, rhs
|
60
|
-
if lhs && rhs
|
61
|
-
[lhs, rhs].max
|
62
|
-
elsif lhs
|
63
|
-
lhs
|
64
|
-
else
|
65
|
-
rhs
|
66
|
-
end
|
67
|
-
end
|
68
|
-
|
69
|
-
def now_sec
|
70
|
-
now_ms / 1000
|
71
|
-
end
|
72
|
-
|
73
|
-
def elapsed_ms
|
74
|
-
now_ms - start_ms
|
75
|
-
end
|
76
36
|
end
|
77
37
|
end
|
78
38
|
end
|
@@ -1,6 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"tracked_classes": [
|
3
3
|
"ActionDispatch::Http::UploadedFile",
|
4
|
+
"Fiber",
|
4
5
|
"Symbol",
|
5
6
|
"Pathname",
|
6
7
|
"File",
|
@@ -149,7 +150,25 @@
|
|
149
150
|
"source":"O",
|
150
151
|
"target":"R",
|
151
152
|
"action":"KEEP"
|
152
|
-
},
|
153
|
+
}, {
|
154
|
+
"class_name": "String",
|
155
|
+
"instance_method": true,
|
156
|
+
"method_visibility": "public",
|
157
|
+
"method_name": "to_s",
|
158
|
+
"source": "O",
|
159
|
+
"target": "R",
|
160
|
+
"action": "KEEP"
|
161
|
+
},
|
162
|
+
{
|
163
|
+
"class_name": "String",
|
164
|
+
"instance_method": true,
|
165
|
+
"method_visibility": "public",
|
166
|
+
"method_name": "to_str",
|
167
|
+
"source": "O",
|
168
|
+
"target": "R",
|
169
|
+
"action": "KEEP"
|
170
|
+
},
|
171
|
+
{
|
153
172
|
"class_name": "String",
|
154
173
|
"instance_method": true,
|
155
174
|
"method_visibility": "public",
|
@@ -245,22 +264,6 @@
|
|
245
264
|
"source":"O",
|
246
265
|
"target":"R",
|
247
266
|
"action":"KEEP"
|
248
|
-
}, {
|
249
|
-
"class_name":"String",
|
250
|
-
"instance_method": true,
|
251
|
-
"method_visibility": "public",
|
252
|
-
"method_name":"to_s",
|
253
|
-
"source":"O",
|
254
|
-
"target":"R",
|
255
|
-
"action":"KEEP"
|
256
|
-
}, {
|
257
|
-
"class_name":"String",
|
258
|
-
"instance_method": true,
|
259
|
-
"method_visibility": "public",
|
260
|
-
"method_name":"to_str",
|
261
|
-
"source":"O",
|
262
|
-
"target":"R",
|
263
|
-
"action":"KEEP"
|
264
267
|
}, {
|
265
268
|
"class_name":"String",
|
266
269
|
"instance_method": true,
|
@@ -598,7 +601,9 @@
|
|
598
601
|
"method_name":"to_a",
|
599
602
|
"source":"O",
|
600
603
|
"target":"R",
|
601
|
-
"action":"
|
604
|
+
"action":"CUSTOM",
|
605
|
+
"patch_class": "Contrast::Agent::Assess::Policy::Propagator::MatchData",
|
606
|
+
"patch_method": "to_a_tagger"
|
602
607
|
}, {
|
603
608
|
"class_name":"MatchData",
|
604
609
|
"instance_method": true,
|
@@ -606,7 +611,9 @@
|
|
606
611
|
"method_name":"[]",
|
607
612
|
"source":"O",
|
608
613
|
"target":"R",
|
609
|
-
"action":"
|
614
|
+
"action":"CUSTOM",
|
615
|
+
"patch_class": "Contrast::Agent::Assess::Policy::Propagator::MatchData",
|
616
|
+
"patch_method": "square_bracket_tagger"
|
610
617
|
}, {
|
611
618
|
"class_name":"MatchData",
|
612
619
|
"instance_method": true,
|
@@ -614,7 +621,10 @@
|
|
614
621
|
"method_name":"captures",
|
615
622
|
"source":"O",
|
616
623
|
"target":"R",
|
617
|
-
"action":"
|
624
|
+
"action":"CUSTOM",
|
625
|
+
"patch_class": "Contrast::Agent::Assess::Policy::Propagator::MatchData",
|
626
|
+
"patch_method": "captures_tagger"
|
627
|
+
|
618
628
|
}, {
|
619
629
|
"class_name":"MatchData",
|
620
630
|
"instance_method": true,
|
@@ -622,7 +632,9 @@
|
|
622
632
|
"method_name":"values_at",
|
623
633
|
"source":"O",
|
624
634
|
"target":"R",
|
625
|
-
"action":"
|
635
|
+
"action":"CUSTOM",
|
636
|
+
"patch_class": "Contrast::Agent::Assess::Policy::Propagator::MatchData",
|
637
|
+
"patch_method": "values_at_tagger"
|
626
638
|
}, {
|
627
639
|
"class_name":"String",
|
628
640
|
"instance_method": true,
|