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
@@ -0,0 +1,50 @@
|
|
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
|
+
cs__scoped_require 'contrast/components/interface'
|
5
|
+
cs__scoped_require 'contrast/utils/data_store_util'
|
6
|
+
|
7
|
+
module Contrast
|
8
|
+
module CoreExtensions
|
9
|
+
module Protect
|
10
|
+
# This Module is the base of our Protect Applicators. It lays out the
|
11
|
+
# form of the Applicator, which will override specific implementations
|
12
|
+
# in order to properly invoke its Rule.
|
13
|
+
module RuleApplicator
|
14
|
+
include Contrast::Components::Interface
|
15
|
+
|
16
|
+
access_component :analysis, :logging
|
17
|
+
|
18
|
+
def apply_rule method, exception, properties, object, args
|
19
|
+
invoke(method, exception, properties, object, args)
|
20
|
+
rescue Contrast::SecurityException => e
|
21
|
+
raise e
|
22
|
+
rescue StandardError => e
|
23
|
+
logger.error('Error applying protect rule', e, module: object.cs__class.cs__name, method: method, rule: name)
|
24
|
+
end
|
25
|
+
|
26
|
+
protected
|
27
|
+
|
28
|
+
def invoke _method, _exception, _properties, _object, _args
|
29
|
+
raise NotImplementedError, 'This is abstract, override it.'
|
30
|
+
end
|
31
|
+
|
32
|
+
def name
|
33
|
+
raise NotImplementedError, 'This is abstract, override it.'
|
34
|
+
end
|
35
|
+
|
36
|
+
def rule
|
37
|
+
PROTECT.rule name
|
38
|
+
end
|
39
|
+
|
40
|
+
def skip_analysis?
|
41
|
+
context = Contrast::Agent::REQUEST_TRACKER.current
|
42
|
+
return true unless context&.app_loaded?
|
43
|
+
return true unless rule&.enabled?
|
44
|
+
|
45
|
+
false
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
@@ -42,6 +42,16 @@ module Contrast
|
|
42
42
|
raise NoMethodError, 'Subclasses of BaseSupport should implement this method'
|
43
43
|
end
|
44
44
|
|
45
|
+
def retrieve_request _env
|
46
|
+
raise NoMethodError, 'Subclasses of BaseSupport should implement this method'
|
47
|
+
end
|
48
|
+
|
49
|
+
# We only support websockets in rails right now, so we won't detect streaming in
|
50
|
+
# any other framework
|
51
|
+
def streaming? _env
|
52
|
+
false
|
53
|
+
end
|
54
|
+
|
45
55
|
protected
|
46
56
|
|
47
57
|
def source_or_string obj
|
@@ -14,7 +14,7 @@ module Contrast
|
|
14
14
|
# Allows access to framework specific information
|
15
15
|
class Manager
|
16
16
|
include Contrast::Components::Interface
|
17
|
-
access_component :
|
17
|
+
access_component :analysis, :logging
|
18
18
|
|
19
19
|
# Order here does matter as the first framework listed will be the first one we pull information from
|
20
20
|
# Rack will be a special case that may involve updating some logic to handle only applying Rack if Rails/Sinatra
|
@@ -28,7 +28,7 @@ module Contrast
|
|
28
28
|
@_frameworks = SUPPORTED_FRAMEWORKS.map do |framework_klass|
|
29
29
|
next unless enable_framework_support?(framework_klass.detection_class)
|
30
30
|
|
31
|
-
logger.
|
31
|
+
logger.info('Framework detected. Enabling support.', framework: framework_klass.detection_class)
|
32
32
|
framework_klass
|
33
33
|
end
|
34
34
|
@_frameworks.compact!
|
@@ -56,6 +56,32 @@ module Contrast
|
|
56
56
|
first_framework_result :application_name, 'root'
|
57
57
|
end
|
58
58
|
|
59
|
+
def app_root
|
60
|
+
found = first_framework_result :application_root, nil
|
61
|
+
found || Rack::Directory.new('').root
|
62
|
+
end
|
63
|
+
|
64
|
+
# If we have 0 or n > 1 frameworks, we need to use the default rack request
|
65
|
+
# @param env [Hash] the various variables stored by this and other Middlewares to know the state
|
66
|
+
# and values of this particular Request
|
67
|
+
def retrieve_request env
|
68
|
+
return @_frameworks[0].retrieve_request(env) if @_frameworks.length == 1
|
69
|
+
|
70
|
+
Rack::Request.new(env)
|
71
|
+
end
|
72
|
+
|
73
|
+
# @param env [Hash] the various variables stored by this and other Middlewares to know the state
|
74
|
+
# and values of this particular Request
|
75
|
+
# @return [Boolean] true if at least one framework is streaming the response; false if none are streaming
|
76
|
+
def streaming? env
|
77
|
+
result = false
|
78
|
+
@_frameworks.each do |framework|
|
79
|
+
result = framework.streaming?(env)
|
80
|
+
break if result
|
81
|
+
end
|
82
|
+
result
|
83
|
+
end
|
84
|
+
|
59
85
|
def get_route_dtm request
|
60
86
|
result = nil
|
61
87
|
@_frameworks.find do |framework_klass|
|
@@ -33,6 +33,10 @@ module Contrast
|
|
33
33
|
Rails.application.cs__class.parent_name
|
34
34
|
end
|
35
35
|
|
36
|
+
def application_root
|
37
|
+
Rails.root
|
38
|
+
end
|
39
|
+
|
36
40
|
def server_type
|
37
41
|
'rails'
|
38
42
|
end
|
@@ -68,6 +72,18 @@ module Contrast
|
|
68
72
|
route_to_coverage(route)
|
69
73
|
end
|
70
74
|
|
75
|
+
def retrieve_request env
|
76
|
+
rails_env = Rails.application.env_config.merge(env)
|
77
|
+
ActionDispatch::Request.new(rails_env || env)
|
78
|
+
end
|
79
|
+
|
80
|
+
AC_INSTANCE = 'action_controller.instance'
|
81
|
+
def streaming? env
|
82
|
+
return false unless defined?(ActionController::Live)
|
83
|
+
|
84
|
+
env[AC_INSTANCE].cs__class.included_modules.include?(ActionController::Live)
|
85
|
+
end
|
86
|
+
|
71
87
|
private
|
72
88
|
|
73
89
|
# Convert ActionDispatch::Journey::Route to Contrast::Api::Dtm::RouteCoverage
|
@@ -23,6 +23,12 @@ module Contrast
|
|
23
23
|
app_class.cs__class.cs__name
|
24
24
|
end
|
25
25
|
|
26
|
+
def application_root
|
27
|
+
return unless app_class
|
28
|
+
|
29
|
+
app_class.root
|
30
|
+
end
|
31
|
+
|
26
32
|
def server_type
|
27
33
|
'sinatra'
|
28
34
|
end
|
@@ -58,6 +64,10 @@ module Contrast
|
|
58
64
|
nil
|
59
65
|
end
|
60
66
|
|
67
|
+
def retrieve_request env
|
68
|
+
Sinatra::Request.new(env)
|
69
|
+
end
|
70
|
+
|
61
71
|
private
|
62
72
|
|
63
73
|
# Iterate over every class that extends Sinatra::Base, pull out its routes
|
@@ -70,9 +80,9 @@ module Contrast
|
|
70
80
|
end
|
71
81
|
|
72
82
|
def sinatra_class_routes controller
|
73
|
-
controller.instance_variable_get(:@routes)
|
83
|
+
controller.instance_variable_get(:@routes) if controller.instance_variable_defined?(:@routes)
|
74
84
|
rescue StandardError
|
75
|
-
logger.
|
85
|
+
logger.trace('Sinatra controller found with no route instances', module: controller)
|
76
86
|
nil
|
77
87
|
end
|
78
88
|
|
@@ -6,6 +6,7 @@ module Contrast
|
|
6
6
|
# Used to define common locations and extensions for specific technologies
|
7
7
|
class ViewTechnologiesDescriptor
|
8
8
|
attr_reader :path, :extension, :technology_names
|
9
|
+
|
9
10
|
def initialize path, extension, technology_names
|
10
11
|
@path = path
|
11
12
|
@extension = extension
|
@@ -33,14 +33,8 @@ module Contrast
|
|
33
33
|
|
34
34
|
# Stop the service if it is running
|
35
35
|
def self.stop_service
|
36
|
-
|
37
|
-
|
38
|
-
pid = `for /f "tokens=2 delims=," %a in ('tasklist /nh /fi "imagename eq Contrast_Service.exe" /fo csv') do @echo %a`
|
39
|
-
`Taskkill /PID #{ pid } /F` if pid
|
40
|
-
else
|
41
|
-
pid = `ps aux | grep contrast-servic[e] | awk '{print $2}'`
|
42
|
-
`kill #{ pid }` if pid
|
43
|
-
end
|
36
|
+
pid = `ps aux | grep contrast-servic[e] | awk '{print $2}'`
|
37
|
+
`kill #{ pid }` if pid
|
44
38
|
end
|
45
39
|
|
46
40
|
namespace :contrast do
|
@@ -19,7 +19,8 @@ module Contrast
|
|
19
19
|
end
|
20
20
|
|
21
21
|
def update
|
22
|
-
|
22
|
+
self.class.reset_sampling_control
|
23
|
+
@enabled = self.class.sampling_enabled?
|
23
24
|
@baseline = self.class.sampling_control[:baseline]
|
24
25
|
@request_frequency = self.class.sampling_control[:request_frequency]
|
25
26
|
@response_frequency = self.class.sampling_control[:response_frequency]
|
@@ -28,10 +29,6 @@ module Contrast
|
|
28
29
|
true
|
29
30
|
end
|
30
31
|
|
31
|
-
def reset
|
32
|
-
@requests.clear
|
33
|
-
end
|
34
|
-
|
35
32
|
def sample? request
|
36
33
|
history = request_history(request)
|
37
34
|
history.hit
|
@@ -64,20 +61,18 @@ module Contrast
|
|
64
61
|
|
65
62
|
# RequestHistory tracks one requests history per time window
|
66
63
|
class RequestHistory
|
67
|
-
|
64
|
+
attr_reader :window_start, :window_hit
|
68
65
|
|
69
66
|
def initialize
|
70
67
|
@window_start = Contrast::Utils::Timer.now_ms
|
71
|
-
@total_hit = 0
|
72
68
|
@window_hit = 0
|
73
69
|
end
|
74
70
|
|
75
71
|
def elapsed
|
76
|
-
Contrast::Utils::Timer.now_ms -
|
72
|
+
Contrast::Utils::Timer.now_ms - window_start
|
77
73
|
end
|
78
74
|
|
79
75
|
def hit cnt = 1
|
80
|
-
@total_hit += cnt
|
81
76
|
@window_hit += cnt
|
82
77
|
end
|
83
78
|
|
@@ -1,11 +1,17 @@
|
|
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
|
module Assess
|
7
9
|
# TrackingUtil has methods for determining if a object is being tracked
|
8
10
|
class TrackingUtil
|
11
|
+
include Contrast::Components::Interface
|
12
|
+
|
13
|
+
access_component :logging
|
14
|
+
|
9
15
|
def self.tracked? obj
|
10
16
|
return false if obj.nil?
|
11
17
|
|
@@ -28,7 +34,7 @@ module Contrast
|
|
28
34
|
# This is used to ask if a ton of objects are tracked. They may not
|
29
35
|
# all be iterable. Bad things could happen in some cases, like when
|
30
36
|
# checking a closed statement for SQL injection trigger events
|
31
|
-
logger.warn(
|
37
|
+
logger.warn('Failed to determine tracking', e, module: obj.cs__class)
|
32
38
|
false
|
33
39
|
end
|
34
40
|
end
|
@@ -9,21 +9,18 @@ module Contrast
|
|
9
9
|
# to equate to a boolean
|
10
10
|
class BooleanUtil
|
11
11
|
class << self
|
12
|
-
# Ruby 2.4 does not nicely compare to nil, so we have to include
|
13
|
-
# these wrapper methods. RUBY-179 has the task to update this on
|
14
|
-
# EOL of 2.4 support
|
15
12
|
def false? config
|
16
|
-
return false unless config
|
17
13
|
return false if config == true
|
18
14
|
return true if config == false
|
15
|
+
return false unless config.cs__is_a?(String)
|
19
16
|
|
20
17
|
Contrast::Utils::ObjectShare::FALSE.casecmp?(config)
|
21
18
|
end
|
22
19
|
|
23
20
|
def true? config
|
24
|
-
return false unless config
|
25
21
|
return false if config == false
|
26
22
|
return true if config == true
|
23
|
+
return false unless config.cs__is_a?(String)
|
27
24
|
|
28
25
|
Contrast::Utils::ObjectShare::TRUE.casecmp?(config)
|
29
26
|
end
|
data/lib/contrast/utils/cache.rb
CHANGED
@@ -10,17 +10,6 @@ module Contrast
|
|
10
10
|
@data = {}
|
11
11
|
end
|
12
12
|
|
13
|
-
def max_size= size
|
14
|
-
return if size < 1
|
15
|
-
|
16
|
-
@max_size = size
|
17
|
-
return if @max_size >= @data.length
|
18
|
-
|
19
|
-
@data.keys[0..(@max_size - @data.length)].each do |k|
|
20
|
-
@data.delete(k)
|
21
|
-
end
|
22
|
-
end
|
23
|
-
|
24
13
|
def [] key
|
25
14
|
found = true
|
26
15
|
value = @data.delete(key) { found = false }
|
@@ -2,6 +2,7 @@
|
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
cs__scoped_require 'contrast/extensions/ruby_core/module'
|
5
|
+
cs__scoped_require 'contrast/utils/object_share'
|
5
6
|
|
6
7
|
module Contrast
|
7
8
|
module Utils
|
@@ -56,7 +57,8 @@ module Contrast
|
|
56
57
|
# https://bitbucket.org/contrastsecurity/assess-specifications/src/master/vulnerability/capture-snapshot.md
|
57
58
|
def to_contrast_string object
|
58
59
|
if object.cs__is_a?(String)
|
59
|
-
|
60
|
+
cached = to_cached_string(object)
|
61
|
+
return cached if cached
|
60
62
|
|
61
63
|
object.dup
|
62
64
|
elsif object.cs__is_a?(Symbol)
|
@@ -65,6 +67,8 @@ module Contrast
|
|
65
67
|
object.to_s
|
66
68
|
elsif object.cs__is_a?(Module) || object.cs__is_a?(Class)
|
67
69
|
"#{ object.cs__name }@#{ object.__id__ }"
|
70
|
+
elsif object.cs__is_a?(Regexp)
|
71
|
+
object.source
|
68
72
|
else
|
69
73
|
"#{ object.cs__class.cs__name }@#{ object.__id__ }"
|
70
74
|
end
|
@@ -107,6 +111,21 @@ module Contrast
|
|
107
111
|
|
108
112
|
mod
|
109
113
|
end
|
114
|
+
|
115
|
+
# If the String matches a common String in our ObjectShare, return that
|
116
|
+
# rather that for use as the representation of the String rather than
|
117
|
+
# forcing a duplication of the String.
|
118
|
+
#
|
119
|
+
# @param string [String] some string of which we want a Contrast
|
120
|
+
# representation.
|
121
|
+
# @return [String,nil] the ObjectShare version of the String or nil
|
122
|
+
def to_cached_string string
|
123
|
+
return Contrast::Utils::ObjectShare::EMPTY_STRING if string.empty?
|
124
|
+
return Contrast::Utils::ObjectShare::SLASH if string == Contrast::Utils::ObjectShare::SLASH
|
125
|
+
return Contrast::Utils::ObjectShare::EQUALS if string == Contrast::Utils::ObjectShare::EQUALS
|
126
|
+
|
127
|
+
nil
|
128
|
+
end
|
110
129
|
end
|
111
130
|
end
|
112
131
|
end
|
@@ -15,7 +15,7 @@ module Contrast
|
|
15
15
|
include Singleton
|
16
16
|
include Contrast::Components::Interface
|
17
17
|
|
18
|
-
access_component :logging
|
18
|
+
access_component :config, :logging
|
19
19
|
|
20
20
|
CONTRAST_AGENT = 'contrast-agent'
|
21
21
|
|
@@ -55,9 +55,10 @@ module Contrast
|
|
55
55
|
paths = get_by_digest(digest)
|
56
56
|
path = spec.full_gem_path
|
57
57
|
$LOADED_FEATURES.each do |line|
|
58
|
-
next unless line.
|
58
|
+
next unless line.cs__is_a?(String)
|
59
|
+
next unless line.start_with?(path)
|
59
60
|
|
60
|
-
|
61
|
+
logger.trace('Recording loaded gem for inventory analysis', line: line)
|
61
62
|
updated!
|
62
63
|
paths << adjust_lib(line)
|
63
64
|
end
|
@@ -137,6 +138,7 @@ module Contrast
|
|
137
138
|
lib.external_ms = date_to_ms(spec.date)
|
138
139
|
lib.internal_ms = lib.external_ms
|
139
140
|
lib.url = Contrast::Utils::StringUtils.force_utf8(spec.homepage)
|
141
|
+
# Library tags are appended in the ApplicationUpdate delegator
|
140
142
|
update_class_counts(lib, digest, spec)
|
141
143
|
lib
|
142
144
|
end
|
@@ -9,7 +9,7 @@ module Contrast
|
|
9
9
|
# Implementation of a heap dump util to automate generation
|
10
10
|
class HeapDumpUtil
|
11
11
|
include Contrast::Components::Interface
|
12
|
-
access_component :
|
12
|
+
access_component :heap_dump, :logging
|
13
13
|
|
14
14
|
LOG_ERROR_DUMPS = 'Unable to generate heap dumps'
|
15
15
|
FILE_WRITE_FLAGS = 'w'
|
@@ -25,12 +25,13 @@ module Contrast
|
|
25
25
|
|
26
26
|
delay = heap_dump_control[:delay]
|
27
27
|
Contrast::Agent::Thread.new do
|
28
|
-
logger.info("HEAP DUMP THREAD INITIALIZED.
|
28
|
+
logger.info("HEAP DUMP THREAD INITIALIZED. WAITING #{ delay } SECONDS TO BEGIN.")
|
29
29
|
sleep(delay)
|
30
30
|
capture_heap_dump
|
31
31
|
end
|
32
32
|
rescue StandardError => e
|
33
33
|
logger.info(LOG_ERROR_DUMPS, e)
|
34
|
+
nil
|
34
35
|
end
|
35
36
|
|
36
37
|
def log_enabled_warning
|
@@ -79,21 +80,21 @@ module Contrast
|
|
79
80
|
window = heap_dump_control[:window]
|
80
81
|
count = heap_dump_control[:count]
|
81
82
|
clean = heap_dump_control[:clean]
|
82
|
-
logger.info(
|
83
|
+
logger.info('HEAP DUMP MAIN LOOP')
|
83
84
|
ObjectSpace.trace_object_allocations_start
|
84
85
|
count.times do |i|
|
85
|
-
logger.info(
|
86
|
+
logger.info('STARTING HEAP DUMP PASS', current_pass: i + 1, max: count)
|
86
87
|
output = "#{ Time.now.to_f }-heap.dump"
|
87
88
|
output = File.join(dir, output)
|
88
89
|
begin
|
89
|
-
logger.info(
|
90
|
+
logger.info('OPENING HEADUMP FILE', dir: dir, file: output)
|
90
91
|
file = File.new(output, FILE_WRITE_FLAGS)
|
91
92
|
if clean
|
92
|
-
logger.info(
|
93
|
+
logger.info('PERFORMING GARBAGE COLLECTION BEFORE HEAP DUMP')
|
93
94
|
GC.start
|
94
95
|
end
|
95
96
|
ObjectSpace.dump_all(output: file)
|
96
|
-
logger.info(
|
97
|
+
logger.info('FINISHING HEAP DUMP PASS', current_pass: i + 1, max: count)
|
97
98
|
ensure
|
98
99
|
file.close
|
99
100
|
end
|
@@ -101,10 +102,10 @@ module Contrast
|
|
101
102
|
end
|
102
103
|
ensure
|
103
104
|
ObjectSpace.trace_object_allocations_stop
|
104
|
-
logger.info(
|
105
|
-
logger.info(
|
106
|
-
logger.info(
|
107
|
-
logger.info(
|
105
|
+
logger.info('*****************************************************')
|
106
|
+
logger.info('******** HEAP DUMP HAS CONCLUDED ********')
|
107
|
+
logger.info('*** APPLICATION PROCESS WILL EXIT SHORTLY ***')
|
108
|
+
logger.info('*****************************************************')
|
108
109
|
exit # We weren't kidding!
|
109
110
|
end
|
110
111
|
end
|