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
@@ -54,7 +54,7 @@ module Contrast
|
|
54
54
|
Contrast::Utils::ServiceSenderUtil.add_to_assess_messages activity
|
55
55
|
end
|
56
56
|
rescue StandardError => e
|
57
|
-
logger.error(
|
57
|
+
logger.error('Unable to build a finding', e, rule: rule_id)
|
58
58
|
end
|
59
59
|
|
60
60
|
private
|
@@ -29,7 +29,7 @@ module Contrast
|
|
29
29
|
def self.inventory_class class_path
|
30
30
|
Contrast::Utils::GemfileReader.instance.map_class(class_path)
|
31
31
|
rescue StandardError => e
|
32
|
-
logger.error(
|
32
|
+
logger.error('Unable to inventory module', e, path: class_path)
|
33
33
|
end
|
34
34
|
|
35
35
|
def self.active_record_config
|
@@ -56,7 +56,7 @@ module Contrast
|
|
56
56
|
activity_or_update.technologies[a.vendor] = true
|
57
57
|
end
|
58
58
|
rescue StandardError => e
|
59
|
-
logger.error(
|
59
|
+
logger.error('Unable to append db config', e)
|
60
60
|
nil
|
61
61
|
end
|
62
62
|
|
@@ -11,16 +11,6 @@ module Contrast
|
|
11
11
|
|
12
12
|
access_component :logging
|
13
13
|
|
14
|
-
# StringIO is a valid path because it logs directly to a string buffer
|
15
|
-
def self.write_permission? path
|
16
|
-
return false if path.nil?
|
17
|
-
return true if path.is_a?(StringIO)
|
18
|
-
return File.writable?(path) if File.exist?(path)
|
19
|
-
|
20
|
-
dir_name = File.dirname(File.absolute_path(path))
|
21
|
-
File.writable?(dir_name)
|
22
|
-
end
|
23
|
-
|
24
14
|
# We're only going to call rewind on things that we believe are safe to
|
25
15
|
# call it on. This method white lists those cases and returns false in
|
26
16
|
# all others.
|
@@ -30,7 +20,7 @@ module Contrast
|
|
30
20
|
|
31
21
|
should_rewind_io?(potential_io)
|
32
22
|
rescue StandardError => e
|
33
|
-
logger.debug(
|
23
|
+
logger.debug('Encountered an issue determining if rewindable', e, module: potential_io.cs__class.name)
|
34
24
|
false
|
35
25
|
end
|
36
26
|
|
@@ -17,7 +17,7 @@ module Contrast
|
|
17
17
|
def sidekiq_running?
|
18
18
|
return unless defined?(Sidekiq) && Sidekiq.cs__respond_to?(:server?) && Sidekiq.server?
|
19
19
|
|
20
|
-
logger.
|
20
|
+
logger.trace('Detected the spawn of a Sidekiq process')
|
21
21
|
true
|
22
22
|
end
|
23
23
|
|
@@ -30,7 +30,7 @@ module Contrast
|
|
30
30
|
has_disabled_task = Rake.application.top_level_tasks.any? { |top_level_task| disabled_rake_tasks.include?(top_level_task) }
|
31
31
|
return false unless has_disabled_task
|
32
32
|
|
33
|
-
logger.
|
33
|
+
logger.trace('Detected startup within Rake task')
|
34
34
|
true
|
35
35
|
end
|
36
36
|
end
|
@@ -10,8 +10,6 @@ module Contrast
|
|
10
10
|
class ObjectShare
|
11
11
|
# Strings
|
12
12
|
AND = '&'
|
13
|
-
OR = '||'
|
14
|
-
PIPE = '|'
|
15
13
|
ASTERISK = '*'
|
16
14
|
BACK_SLASH = '\\'
|
17
15
|
EMPTY_STRING = ''
|
@@ -27,8 +25,7 @@ module Contrast
|
|
27
25
|
NEW_LINE = "\n"
|
28
26
|
NIL_STRING = 'nil'
|
29
27
|
PERIOD = '.'
|
30
|
-
|
31
|
-
POUND_SIGN = HASH_CHAR = '#'
|
28
|
+
POUND_SIGN = '#'
|
32
29
|
QUESTION_MARK = '?'
|
33
30
|
RETURN = "\r"
|
34
31
|
SEMICOLON = ';'
|
@@ -39,35 +36,17 @@ module Contrast
|
|
39
36
|
DOUBLE_UNDERSCORE = '__'
|
40
37
|
AT = '@'
|
41
38
|
LEFT_ANGLE = '<'
|
42
|
-
RIGHT_ANGLE = '>'
|
43
|
-
LEFT_BRACKET = '['
|
44
|
-
RIGHT_BRACKET = ']'
|
45
|
-
LEFT_PAREN = '('
|
46
|
-
RIGHT_PAREN = ')'
|
47
39
|
COLON_SLASH_SLASH = '://'
|
48
|
-
TICK = '`'
|
49
|
-
BACK_TICK = '`'
|
50
|
-
LEFT_CURLY = '{'
|
51
|
-
RIGHT_CURLY = '}'
|
52
40
|
DOLLAR_SIGN = '$'
|
53
41
|
CARROT = '^'
|
54
|
-
PERCENT = '%'
|
55
|
-
LETTER_Q = 'Q'
|
56
|
-
OR_STRING = 'or'
|
57
42
|
|
58
|
-
DOUBLE_QUOTE_ESCAPED = '"'
|
59
|
-
|
60
|
-
READ_FLAG = 'r'
|
61
43
|
WRITE_FLAG = 'w'
|
62
|
-
READ_WRITE_FLAG = 'rw'
|
63
44
|
|
64
45
|
PARENT_PATH = '..'
|
65
46
|
|
66
47
|
RUBY = 'Ruby'
|
67
48
|
CACHE = 'cache'
|
68
|
-
GEM_SUFFIX = '.gem'
|
69
49
|
|
70
|
-
CONTRAST_METHOD_START = 'cs__'
|
71
50
|
CONTRAST_PATCHED_METHOD_START = 'cs__patched_'
|
72
51
|
CONTRAST_MODULE_START = 'Contrast::'
|
73
52
|
ANONYMOUS_CLASS_MARKER = '#<'
|
@@ -75,13 +54,11 @@ module Contrast
|
|
75
54
|
|
76
55
|
EMPTY_ARRAY = [].freeze
|
77
56
|
EMPTY_HASH = {}.freeze
|
78
|
-
EMPTY_TRIPLE = [EMPTY_STRING, EMPTY_STRING, EMPTY_STRING].freeze
|
79
57
|
|
80
58
|
# RegExps
|
81
59
|
DIGIT_REGEXP = /[[:digit:]]/.freeze
|
82
60
|
WHITE_SPACE_REGEXP = /\s/.freeze
|
83
61
|
NOT_WHITE_SPACE_REGEXP = /[^\s]/.freeze
|
84
|
-
WINDOWS_REGEXP = /cygwin|mswin|mingw|bccwin|wince|emx/.freeze
|
85
62
|
|
86
63
|
# Messages
|
87
64
|
OVERRIDE_MESSAGE = 'A security filter prevented original response from being returned.'
|
@@ -93,24 +70,11 @@ module Contrast
|
|
93
70
|
CLASS = 'Class'
|
94
71
|
MODULE = 'Module'
|
95
72
|
|
96
|
-
BRACKET_INTERPOLATION_START = '#{'
|
97
|
-
|
98
73
|
OBJECT_KEY = 'O'
|
99
|
-
PARAMETER_KEY = 'P'
|
100
74
|
RETURN_KEY = 'R'
|
101
75
|
UNKNOWN = 'unknown'
|
102
76
|
|
103
77
|
INDEX = 'index'
|
104
|
-
|
105
|
-
VERSION_2_5_0 = '2.5.0'
|
106
|
-
VERSION_2_4_2 = '2.4.2'
|
107
|
-
VERSION_2_4_1 = '2.4.1'
|
108
|
-
VERSION_2_4_0 = '2.4.0'
|
109
|
-
VERSION_2_3_5 = '2.3.5'
|
110
|
-
VERSION_2_3_4 = '2.3.4'
|
111
|
-
VERSION_2_3_0 = '2.3.0'
|
112
|
-
VERSION_2_0_4 = '2.0.4'
|
113
|
-
VERSION_2_0_0 = '2.0.0'
|
114
78
|
end
|
115
79
|
end
|
116
80
|
end
|
data/lib/contrast/utils/os.rb
CHANGED
@@ -8,32 +8,8 @@ module Contrast
|
|
8
8
|
# Utility memozies to avoid multiple lookups.
|
9
9
|
module OS
|
10
10
|
class << self
|
11
|
-
def windows?
|
12
|
-
@_windows = !(/cygwin|mswin|mingw|bccwin|wince|emx/ =~ RUBY_PLATFORM).nil? if @_windows.nil?
|
13
|
-
@_windows
|
14
|
-
end
|
15
|
-
|
16
|
-
def mac?
|
17
|
-
@_mac ||= !(/darwin/ =~ RUBY_PLATFORM).nil? if @_mac.nil?
|
18
|
-
@_mac
|
19
|
-
end
|
20
|
-
|
21
|
-
def unix?
|
22
|
-
@unix ||= !windows? if @_unix.nil?
|
23
|
-
@unix
|
24
|
-
end
|
25
|
-
|
26
|
-
def linux?
|
27
|
-
@_linux ||= unix? && !OS.mac? if @_linux.nil?
|
28
|
-
@_linux
|
29
|
-
end
|
30
|
-
|
31
11
|
def running?
|
32
|
-
process =
|
33
|
-
`tasklist /fi "imagename eq contrast-service.exe"`
|
34
|
-
else
|
35
|
-
`ps aux | grep contrast-servic[e]`
|
36
|
-
end
|
12
|
+
process = `ps aux | grep contrast-servic[e]`
|
37
13
|
process != ''
|
38
14
|
end
|
39
15
|
|
@@ -55,7 +55,7 @@ module Contrast
|
|
55
55
|
end
|
56
56
|
rescue StandardError => e
|
57
57
|
begin
|
58
|
-
logger.
|
58
|
+
logger.error('Unable to track call to secure session', e)
|
59
59
|
rescue StandardError
|
60
60
|
nil
|
61
61
|
end
|
@@ -76,7 +76,7 @@ module Contrast
|
|
76
76
|
end
|
77
77
|
rescue StandardError => e
|
78
78
|
begin
|
79
|
-
logger.
|
79
|
+
logger.error('Unable to track call to set session timeout', e)
|
80
80
|
rescue StandardError
|
81
81
|
nil
|
82
82
|
end
|
@@ -93,7 +93,7 @@ module Contrast
|
|
93
93
|
end
|
94
94
|
rescue StandardError => e
|
95
95
|
begin
|
96
|
-
logger.
|
96
|
+
logger.error('Unable to track call to httponly', e)
|
97
97
|
rescue StandardError
|
98
98
|
nil
|
99
99
|
end
|
@@ -52,7 +52,7 @@ module Contrast
|
|
52
52
|
end
|
53
53
|
rescue StandardError => e
|
54
54
|
begin
|
55
|
-
logger.
|
55
|
+
logger.error('Unable to track call to set session timeout', e)
|
56
56
|
rescue StandardError
|
57
57
|
nil
|
58
58
|
end
|
@@ -68,7 +68,7 @@ module Contrast
|
|
68
68
|
end
|
69
69
|
rescue StandardError => e
|
70
70
|
begin
|
71
|
-
logger.
|
71
|
+
logger.error('Unable to track call to disable secure cookies', e)
|
72
72
|
rescue StandardError
|
73
73
|
nil
|
74
74
|
end
|
@@ -84,7 +84,7 @@ module Contrast
|
|
84
84
|
end
|
85
85
|
rescue StandardError => e
|
86
86
|
begin
|
87
|
-
logger.
|
87
|
+
logger.error('Unable to track call to disable httponly in session cookie', e)
|
88
88
|
rescue StandardError
|
89
89
|
nil
|
90
90
|
end
|
@@ -5,9 +5,13 @@ cs__scoped_require 'parser/current'
|
|
5
5
|
|
6
6
|
module Contrast
|
7
7
|
module Utils
|
8
|
-
# This utility allows us to parse and rewrite the AST in Ruby 2.
|
8
|
+
# This utility allows us to parse and rewrite the AST in Ruby 2.5,
|
9
9
|
# allowing us to track String interpolation propagation by replacing those
|
10
10
|
# events with String#+ events instead.
|
11
|
+
#
|
12
|
+
# TODO: RUBY-714 remove w/ EOL of 2.5
|
13
|
+
# @deprecated Changes to this class are discouraged as this approach is
|
14
|
+
# being phased out with support for those language versions.
|
11
15
|
class RubyAstRewriter < Parser::TreeRewriter
|
12
16
|
VARIABLES = %i[ivar cvar gvar].cs__freeze
|
13
17
|
|
@@ -1,19 +1,24 @@
|
|
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/agent/logger'
|
5
|
+
cs__scoped_require 'contrast/components/interface'
|
6
|
+
cs__scoped_require 'contrast/utils/assess/sampling_util'
|
7
|
+
|
4
8
|
module Contrast
|
5
9
|
module Utils
|
6
10
|
# Utility class for processing responses from the Contrast Service. Specifically, this class
|
7
11
|
# processes Server and Application settings and updates the Settings component.
|
8
12
|
module ServiceResponseUtil
|
9
13
|
include Contrast::Components::Interface
|
10
|
-
access_component :contrast_service, :logging, :settings
|
14
|
+
access_component :analysis, :contrast_service, :logging, :settings
|
11
15
|
|
12
16
|
class << self
|
13
17
|
# TODO: RUBY-119
|
14
18
|
def process_response response
|
15
19
|
fs = Contrast::Agent::FeatureState.instance
|
16
20
|
fs.last_update = response&.sent_ms
|
21
|
+
|
17
22
|
server_features = process_server_response(response)
|
18
23
|
app_settings = process_application_response(response)
|
19
24
|
|
@@ -25,84 +30,53 @@ module Contrast
|
|
25
30
|
SETTINGS.accumulator_settings.replace(new_accum)
|
26
31
|
end
|
27
32
|
|
28
|
-
|
33
|
+
Contrast::Agent::Logger.instance.update(server_features&.log_file, server_features&.log_level)
|
29
34
|
update_features(server_features, app_settings)
|
30
|
-
logger.
|
35
|
+
logger.trace(
|
36
|
+
'Agent settings updated in response to Service',
|
37
|
+
protect_on: fs.protect_enabled?,
|
38
|
+
assess_on: fs.assess_enabled?)
|
31
39
|
end
|
32
40
|
|
33
41
|
private
|
34
42
|
|
35
43
|
# Given some protobuf messages, update settings.
|
36
44
|
# This is the bridge between Contrast Service <-> Settings.
|
37
|
-
LOG_SERVER_SETTINGS_UPDATE = 'Agent: Received updated server features'
|
38
|
-
LOG_UPDATE_PROTECT = 'Updating Protect state'
|
39
|
-
LOG_UPDATE_ASSESS = 'Updating Assess state'
|
40
45
|
def process_server_response response
|
41
46
|
server_features = response&.server_features
|
42
47
|
return unless server_features
|
43
48
|
|
44
|
-
logger.
|
45
|
-
# 'defend' is legacy for 'protect' in the dtm.
|
46
|
-
protect = server_features.defend
|
47
|
-
assess = server_features.assess
|
48
|
-
|
49
|
-
protect_enable = !!protect.enabled
|
50
|
-
assess_enable = !!assess.enabled
|
51
|
-
|
52
|
-
# protect
|
53
|
-
begin
|
54
|
-
logger.debug(LOG_UPDATE_PROTECT)
|
55
|
-
SETTINGS.protect_state[:enabled] = protect_enable
|
56
|
-
end
|
49
|
+
logger.trace('Agent: Received updated server features')
|
57
50
|
|
58
|
-
|
59
|
-
begin
|
60
|
-
logger.debug(LOG_UPDATE_ASSESS)
|
61
|
-
SETTINGS.assess_state[:enabled] = assess_enable
|
62
|
-
SETTINGS.assess_state[:sampling_settings] = assess.sampling
|
63
|
-
end
|
51
|
+
SETTINGS.update_from_server_features(server_features)
|
64
52
|
|
65
53
|
server_features
|
66
54
|
end
|
67
55
|
|
68
|
-
MODE_WHITELIST = %i[NO_ACTION BLOCK_AT_PERIMETER MONITOR BLOCK].cs__freeze
|
69
|
-
LOG_APP_SETTINGS_UPDATE = 'Agent: Received updated application settings'
|
70
56
|
def process_application_response response
|
71
57
|
app_settings = response&.application_settings
|
72
58
|
return unless app_settings
|
73
59
|
|
74
|
-
logger.debug(
|
75
|
-
|
76
|
-
|
77
|
-
protection_rules.select! { |(_id, mode)| MODE_WHITELIST.include? mode }
|
78
|
-
modes_by_id = protection_rules.to_h
|
79
|
-
SETTINGS.application_state.merge!(
|
80
|
-
modes_by_id: modes_by_id,
|
81
|
-
exclusion_matchers: exclusion_matchers,
|
82
|
-
disabled_assess_rules: app_settings.disabled_assess_rules,
|
83
|
-
session_id: app_settings.session_id)
|
60
|
+
logger.debug('Agent: Received updated application settings')
|
61
|
+
|
62
|
+
SETTINGS.update_from_application_settings(app_settings)
|
84
63
|
|
85
64
|
app_settings
|
86
65
|
end
|
87
66
|
|
88
|
-
# This
|
89
|
-
#
|
90
|
-
LOG_INFO_RULE_SETTINGS = 'Current rule settings:'
|
67
|
+
# This can't go in the Settings component because protect and assess depend on settings
|
68
|
+
# I don't think it should go into contrast_service because that only handles connection specific data
|
91
69
|
def update_features server_features, app_settings
|
92
|
-
|
93
|
-
logger.debug_with_time('Rebuilding rule modes') do
|
94
|
-
SETTINGS.build_protect_rules if PROTECT.enabled?
|
95
|
-
SETTINGS.build_assess_rules if ASSESS.enabled?
|
96
|
-
|
97
|
-
logger.info(LOG_INFO_RULE_SETTINGS)
|
98
|
-
PROTECT.rules.each { |k, v| logger.info(".. protect: #{ k } (#{ v.mode })") }
|
99
|
-
ASSESS.rules.each { |k, v| logger.info(".. assess: #{ k } (#{ v.enabled? })") }
|
100
|
-
end
|
101
|
-
end
|
70
|
+
return unless !!(server_features || app_settings)
|
102
71
|
|
103
|
-
|
104
|
-
|
105
|
-
|
72
|
+
logger.trace_with_time('Rebuilding rule modes') do
|
73
|
+
SETTINGS.build_protect_rules if PROTECT.enabled?
|
74
|
+
SETTINGS.build_assess_rules if ASSESS.enabled?
|
75
|
+
|
76
|
+
logger.info('Current rule settings:')
|
77
|
+
PROTECT.rules.each { |k, v| logger.info('Protect Rule mode set', rule: k, mode: v.mode) }
|
78
|
+
ASSESS.rules.each { |k, v| logger.info('Assess Rule mode set', rule: k, mode: v.enabled?) }
|
79
|
+
end
|
106
80
|
end
|
107
81
|
end
|
108
82
|
end
|
@@ -13,7 +13,7 @@ module Contrast
|
|
13
13
|
# to SpeedRacer.
|
14
14
|
module ServiceSenderUtil
|
15
15
|
include Contrast::Components::Interface
|
16
|
-
access_component :
|
16
|
+
access_component :agent, :analysis, :contrast_service, :logging
|
17
17
|
|
18
18
|
class << self
|
19
19
|
attr_reader :assess_messages, :ready_messages_queue
|
@@ -29,7 +29,9 @@ module Contrast
|
|
29
29
|
# the queue on first message sent
|
30
30
|
@ready_messages_queue ||= Queue.new
|
31
31
|
ready_messages_queue.push event
|
32
|
-
logger.debug(
|
32
|
+
logger.debug('Enqueued event',
|
33
|
+
event_id: event.__id__,
|
34
|
+
event_type: event.cs__class.name)
|
33
35
|
end
|
34
36
|
|
35
37
|
def sending_thread
|
@@ -43,15 +45,17 @@ module Contrast
|
|
43
45
|
# if ready messages queue is empty, calling thread is suspended until a message is pushed onto queue
|
44
46
|
event = ready_messages_queue.pop
|
45
47
|
begin
|
46
|
-
logger.debug(
|
48
|
+
logger.debug('Dequeued event',
|
49
|
+
event_id: event.__id__,
|
50
|
+
event_type: event.cs__class.name)
|
47
51
|
response = Contrast::Agent::FeatureState.instance.client.send_to_speedracer event
|
48
52
|
Contrast::Utils::ServiceResponseUtil.process_response(response) if response
|
49
53
|
rescue StandardError => e
|
50
|
-
logger.error(
|
54
|
+
logger.error('Could not send message to service from service sender thread.', e)
|
51
55
|
end
|
52
56
|
end
|
53
57
|
end
|
54
|
-
logger.debug(
|
58
|
+
logger.debug('Started background sending thread.')
|
55
59
|
end
|
56
60
|
alias_method :start, :sending_thread
|
57
61
|
|