contrast-agent 3.12.1 → 3.14.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.dockerignore +0 -1
- data/.gitignore +1 -1
- data/.simplecov +1 -1
- data/Rakefile +31 -0
- data/exe/contrast_service +1 -7
- data/ext/build_funchook.rb +0 -2
- data/ext/cs__assess_active_record_named/cs__active_record_named.c +8 -7
- data/ext/cs__assess_array/cs__assess_array.c +6 -5
- data/ext/cs__assess_basic_object/cs__assess_basic_object.c +5 -5
- data/ext/cs__assess_fiber_track/cs__assess_fiber_track.c +4 -9
- data/ext/cs__assess_fiber_track/cs__assess_fiber_track.h +0 -1
- data/ext/cs__assess_hash/cs__assess_hash.c +18 -17
- data/ext/cs__assess_hash/cs__assess_hash.h +2 -1
- data/ext/cs__assess_kernel/cs__assess_kernel.c +7 -8
- data/ext/cs__assess_marshal_module/cs__assess_marshal_module.c +4 -5
- data/ext/cs__assess_module/cs__assess_module.c +6 -6
- data/ext/cs__assess_regexp/cs__assess_regexp.c +4 -4
- data/ext/cs__assess_string/cs__assess_string.c +20 -4
- data/ext/cs__assess_string/cs__assess_string.h +4 -1
- data/ext/cs__assess_string_interpolation26/cs__assess_string_interpolation26.c +4 -7
- data/ext/cs__assess_yield_track/cs__assess_yield_track.c +3 -7
- data/ext/cs__assess_yield_track/cs__assess_yield_track.h +0 -1
- data/ext/cs__common/cs__common.c +59 -28
- data/ext/cs__common/cs__common.h +18 -20
- data/ext/cs__common/extconf.rb +0 -14
- data/ext/cs__contrast_patch/cs__contrast_patch.c +27 -25
- data/ext/cs__contrast_patch/cs__contrast_patch.h +5 -7
- data/ext/cs__protect_kernel/cs__protect_kernel.c +11 -12
- data/ext/cs__protect_kernel/cs__protect_kernel.h +2 -2
- data/ext/extconf_common.rb +0 -28
- data/lib/contrast-agent.rb +1 -1
- data/lib/contrast.rb +15 -23
- data/lib/contrast/agent.rb +51 -39
- data/lib/contrast/agent/assess.rb +11 -12
- data/lib/contrast/agent/assess/contrast_event.rb +39 -176
- data/lib/contrast/agent/assess/events/event_factory.rb +2 -2
- data/lib/contrast/agent/assess/events/source_event.rb +5 -9
- data/lib/contrast/agent/assess/finalizers/finalize.rb +21 -0
- data/lib/contrast/agent/assess/finalizers/freeze.rb +13 -0
- data/lib/contrast/agent/assess/finalizers/hash.rb +53 -0
- data/lib/contrast/agent/assess/policy/dynamic_source_factory.rb +2 -2
- data/lib/contrast/agent/assess/policy/patcher.rb +5 -5
- data/lib/contrast/agent/assess/policy/policy.rb +9 -9
- data/lib/contrast/agent/assess/policy/policy_node.rb +5 -99
- data/lib/contrast/agent/assess/policy/policy_scanner.rb +3 -3
- data/lib/contrast/agent/assess/policy/preshift.rb +15 -5
- data/lib/contrast/agent/assess/policy/propagation_method.rb +26 -24
- data/lib/contrast/agent/assess/policy/propagation_node.rb +6 -2
- data/lib/contrast/agent/assess/policy/propagator.rb +18 -18
- data/lib/contrast/agent/assess/policy/propagator/base.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/custom.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/database_write.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/insert.rb +1 -4
- data/lib/contrast/agent/assess/policy/propagator/match_data.rb +12 -3
- data/lib/contrast/agent/assess/policy/propagator/prepend.rb +5 -0
- data/lib/contrast/agent/assess/policy/propagator/remove.rb +6 -11
- data/lib/contrast/agent/assess/policy/propagator/select.rb +4 -4
- data/lib/contrast/agent/assess/policy/propagator/split.rb +5 -5
- data/lib/contrast/agent/assess/policy/propagator/substitution.rb +8 -7
- data/lib/contrast/agent/assess/policy/propagator/trim.rb +6 -10
- data/lib/contrast/agent/assess/policy/rewriter_patch.rb +5 -5
- data/lib/contrast/agent/assess/policy/source_method.rb +6 -16
- data/lib/contrast/agent/assess/policy/source_validation/cross_site_validator.rb +1 -1
- data/lib/contrast/agent/assess/policy/source_validation/source_validation.rb +1 -1
- data/lib/contrast/agent/assess/policy/trigger/xpath.rb +1 -1
- data/lib/contrast/agent/assess/policy/trigger_method.rb +7 -15
- data/lib/contrast/agent/assess/policy/trigger_node.rb +18 -6
- data/lib/contrast/agent/assess/policy/trigger_validation/trigger_validation.rb +2 -2
- data/lib/contrast/agent/assess/properties.rb +13 -383
- data/lib/contrast/agent/assess/property/evented.rb +78 -0
- data/lib/contrast/agent/assess/property/tagged.rb +339 -0
- data/lib/contrast/agent/assess/rule.rb +2 -2
- data/lib/contrast/agent/assess/rule/base.rb +3 -4
- data/lib/contrast/agent/assess/rule/provider.rb +3 -3
- data/lib/contrast/agent/assess/rule/provider/hardcoded_password.rb +1 -1
- data/lib/contrast/agent/assess/rule/provider/hardcoded_value_rule.rb +4 -22
- data/lib/contrast/agent/assess/tag.rb +27 -12
- data/lib/contrast/agent/at_exit_hook.rb +4 -2
- data/lib/contrast/agent/class_reopener.rb +7 -6
- data/lib/contrast/agent/deadzone/policy/deadzone_node.rb +1 -1
- data/lib/contrast/agent/deadzone/policy/policy.rb +2 -2
- data/lib/contrast/agent/disable_reaction.rb +1 -1
- data/lib/contrast/agent/exclusion_matcher.rb +3 -3
- data/lib/contrast/agent/inventory/policy/datastores.rb +2 -3
- data/lib/contrast/agent/inventory/policy/policy.rb +3 -3
- data/lib/contrast/agent/inventory/policy/trigger_node.rb +1 -1
- data/lib/contrast/agent/middleware.rb +37 -48
- data/lib/contrast/agent/patching/policy/after_load_patch.rb +4 -4
- data/lib/contrast/agent/patching/policy/after_load_patcher.rb +6 -5
- data/lib/contrast/agent/patching/policy/module_policy.rb +1 -1
- data/lib/contrast/agent/patching/policy/patch.rb +16 -16
- data/lib/contrast/agent/patching/policy/patcher.rb +30 -22
- data/lib/contrast/agent/patching/policy/policy.rb +9 -9
- data/lib/contrast/agent/patching/policy/policy_node.rb +3 -3
- data/lib/contrast/agent/patching/policy/trigger_node.rb +2 -2
- data/lib/contrast/agent/protect/policy/applies_command_injection_rule.rb +3 -3
- data/lib/contrast/agent/protect/policy/applies_deserialization_rule.rb +2 -2
- data/lib/contrast/agent/protect/policy/applies_no_sqli_rule.rb +2 -2
- data/lib/contrast/agent/protect/policy/applies_path_traversal_rule.rb +3 -3
- data/lib/contrast/agent/protect/policy/applies_sqli_rule.rb +2 -2
- data/lib/contrast/agent/protect/policy/applies_xxe_rule.rb +3 -3
- data/lib/contrast/agent/protect/policy/policy.rb +8 -8
- data/lib/contrast/agent/protect/policy/rule_applicator.rb +3 -3
- data/lib/contrast/agent/protect/policy/trigger_node.rb +1 -1
- data/lib/contrast/agent/protect/rule.rb +18 -18
- data/lib/contrast/agent/protect/rule/base.rb +21 -32
- data/lib/contrast/agent/protect/rule/base_service.rb +2 -2
- data/lib/contrast/agent/protect/rule/cmd_injection.rb +5 -5
- data/lib/contrast/agent/protect/rule/deserialization.rb +1 -1
- data/lib/contrast/agent/protect/rule/http_method_tampering.rb +3 -8
- data/lib/contrast/agent/protect/rule/no_sqli.rb +1 -1
- data/lib/contrast/agent/protect/rule/path_traversal.rb +4 -5
- data/lib/contrast/agent/protect/rule/sqli.rb +2 -2
- data/lib/contrast/agent/protect/rule/unsafe_file_upload.rb +1 -1
- data/lib/contrast/agent/protect/rule/xss.rb +1 -1
- data/lib/contrast/agent/protect/rule/xxe.rb +4 -5
- data/lib/contrast/agent/protect/rule/xxe/entity_wrapper.rb +2 -2
- data/lib/contrast/agent/railtie.rb +1 -1
- data/lib/contrast/agent/reaction_processor.rb +5 -5
- data/lib/contrast/agent/request.rb +103 -340
- data/lib/contrast/agent/request_context.rb +25 -21
- data/lib/contrast/agent/request_handler.rb +1 -1
- data/lib/contrast/agent/response.rb +8 -20
- data/lib/contrast/agent/rewriter.rb +5 -6
- data/lib/contrast/agent/scope.rb +1 -1
- data/lib/contrast/agent/service_heartbeat.rb +8 -10
- data/lib/contrast/agent/static_analysis.rb +4 -4
- data/lib/contrast/agent/thread.rb +1 -1
- data/lib/contrast/agent/thread_watcher.rb +49 -0
- data/lib/contrast/agent/tracepoint_hook.rb +1 -1
- data/lib/contrast/agent/version.rb +1 -1
- data/lib/contrast/agent/worker_thread.rb +24 -0
- data/lib/contrast/api.rb +4 -6
- data/lib/contrast/api/communication.rb +20 -0
- data/lib/contrast/api/communication/connection_status.rb +41 -0
- data/lib/contrast/api/communication/messaging_queue.rb +79 -0
- data/lib/contrast/{utils/service_response_util.rb → api/communication/response_processor.rb} +10 -19
- data/lib/contrast/api/communication/service_lifecycle.rb +61 -0
- data/lib/contrast/api/communication/socket.rb +45 -0
- data/lib/contrast/api/communication/socket_client.rb +76 -0
- data/lib/contrast/api/communication/speedracer.rb +111 -0
- data/lib/contrast/api/communication/tcp_socket.rb +31 -0
- data/lib/contrast/api/communication/unix_socket.rb +27 -0
- data/lib/contrast/api/decorators.rb +14 -4
- data/lib/contrast/api/decorators/address.rb +61 -0
- data/lib/contrast/api/decorators/application_settings.rb +10 -5
- data/lib/contrast/api/decorators/application_update.rb +5 -13
- data/lib/contrast/api/decorators/http_request.rb +140 -0
- data/lib/contrast/api/decorators/input_analysis.rb +3 -2
- data/lib/contrast/api/decorators/message.rb +76 -0
- data/lib/contrast/api/decorators/rasp_rule_sample.rb +29 -0
- data/lib/contrast/api/decorators/route_coverage.rb +58 -0
- data/lib/contrast/api/decorators/server_features.rb +3 -2
- data/lib/contrast/api/decorators/trace_event.rb +100 -0
- data/lib/contrast/api/decorators/trace_event_object.rb +58 -0
- data/lib/contrast/api/decorators/trace_event_signature.rb +47 -0
- data/lib/contrast/api/decorators/trace_taint_range.rb +52 -0
- data/lib/contrast/api/decorators/trace_taint_range_tags.rb +109 -0
- data/lib/contrast/api/decorators/user_input.rb +40 -0
- data/lib/contrast/common_agent_configuration.rb +2 -2
- data/lib/contrast/components/agent.rb +2 -2
- data/lib/contrast/components/app_context.rb +1 -8
- data/lib/contrast/components/config.rb +7 -12
- data/lib/contrast/components/contrast_service.rb +1 -1
- data/lib/contrast/components/interface.rb +16 -16
- data/lib/contrast/components/logger.rb +1 -1
- data/lib/contrast/components/scope.rb +3 -3
- data/lib/contrast/components/settings.rb +0 -6
- data/lib/contrast/config.rb +18 -18
- data/lib/contrast/config/base_configuration.rb +2 -2
- data/lib/contrast/config/protect_rule_configuration.rb +1 -1
- data/lib/contrast/configuration.rb +5 -5
- data/lib/contrast/extension/assess.rb +22 -22
- data/lib/contrast/extension/assess/array.rb +4 -4
- data/lib/contrast/extension/assess/assess_extension.rb +28 -31
- data/lib/contrast/extension/assess/eval_trigger.rb +3 -3
- data/lib/contrast/extension/assess/exec_trigger.rb +1 -1
- data/lib/contrast/extension/assess/fiber.rb +3 -3
- data/lib/contrast/extension/assess/hash.rb +5 -3
- data/lib/contrast/extension/assess/kernel.rb +7 -6
- data/lib/contrast/extension/assess/marshal.rb +62 -0
- data/lib/contrast/extension/assess/regexp.rb +3 -3
- data/lib/contrast/extension/assess/string.rb +6 -6
- data/lib/contrast/extension/inventory.rb +4 -5
- data/lib/contrast/extension/kernel.rb +1 -1
- data/lib/contrast/extension/module.rb +1 -1
- data/lib/contrast/extension/protect.rb +3 -3
- data/lib/contrast/extension/protect/kernel.rb +2 -2
- data/lib/contrast/extension/protect/psych.rb +2 -2
- data/lib/contrast/framework/base_support.rb +0 -23
- data/lib/contrast/framework/manager.rb +7 -17
- data/lib/contrast/framework/rack/patch/session_cookie.rb +1 -1
- data/lib/contrast/framework/rack/patch/support.rb +1 -1
- data/lib/contrast/framework/rack/support.rb +2 -2
- data/lib/contrast/framework/rails/patch/action_controller_live_buffer.rb +1 -3
- data/lib/contrast/framework/rails/patch/assess_configuration.rb +5 -6
- data/lib/contrast/framework/rails/patch/rails_application_configuration.rb +1 -1
- data/lib/contrast/framework/rails/patch/support.rb +3 -3
- data/lib/contrast/framework/rails/rewrite/action_controller_railties_helper_inherited.rb +2 -2
- data/lib/contrast/framework/rails/rewrite/active_record_named.rb +2 -2
- data/lib/contrast/framework/rails/rewrite/active_record_time_zone_inherited.rb +2 -2
- data/lib/contrast/framework/rails/support.rb +56 -37
- data/lib/contrast/framework/sinatra/patch/base.rb +2 -2
- data/lib/contrast/framework/sinatra/patch/support.rb +1 -1
- data/lib/contrast/framework/sinatra/support.rb +13 -24
- data/lib/contrast/funchook/funchook.rb +45 -0
- data/lib/contrast/logger/application.rb +3 -3
- data/lib/contrast/logger/format.rb +64 -0
- data/lib/contrast/logger/log.rb +17 -9
- data/lib/contrast/logger/request.rb +30 -0
- data/lib/contrast/tasks/config.rb +1 -1
- data/lib/contrast/tasks/service.rb +2 -2
- data/lib/contrast/utils/assess/sampling_util.rb +2 -2
- data/lib/contrast/utils/assess/tracking_util.rb +46 -21
- data/lib/contrast/utils/boolean_util.rb +1 -1
- data/lib/contrast/utils/class_util.rb +5 -3
- data/lib/contrast/utils/freeze_util.rb +1 -1
- data/lib/contrast/utils/gemfile_reader.rb +5 -5
- data/lib/contrast/utils/hash_digest.rb +13 -3
- data/lib/contrast/utils/heap_dump_util.rb +2 -2
- data/lib/contrast/utils/invalid_configuration_util.rb +2 -18
- data/lib/contrast/utils/inventory_util.rb +6 -11
- data/lib/contrast/utils/io_util.rb +1 -1
- data/lib/contrast/utils/object_share.rb +0 -1
- data/lib/contrast/utils/os.rb +16 -4
- data/lib/contrast/utils/ruby_ast_rewriter.rb +1 -1
- data/lib/contrast/utils/sha256_builder.rb +2 -2
- data/lib/contrast/utils/stack_trace_utils.rb +2 -3
- data/lib/contrast/utils/string_utils.rb +1 -1
- data/lib/contrast/utils/tag_util.rb +1 -1
- data/lib/contrast/utils/thread_tracker.rb +1 -14
- data/lib/contrast/utils/timer.rb +1 -17
- data/resources/deadzone/policy.json +5 -0
- data/ruby-agent.gemspec +9 -9
- data/service_executables/VERSION +1 -1
- data/service_executables/linux/contrast-service +0 -0
- data/service_executables/mac/contrast-service +0 -0
- metadata +60 -79
- data/funchook/Makefile +0 -29
- data/funchook/autom4te.cache/output.0 +0 -4976
- data/funchook/autom4te.cache/requests +0 -78
- data/funchook/autom4te.cache/traces.0 +0 -364
- data/funchook/config.log +0 -490
- data/funchook/config.status +0 -1016
- data/funchook/configure +0 -4976
- data/funchook/src/Makefile +0 -70
- data/funchook/src/config.h +0 -101
- data/funchook/src/config.h.in +0 -100
- data/funchook/src/decoder.o +0 -0
- data/funchook/src/distorm.o +0 -0
- data/funchook/src/funchook.o +0 -0
- data/funchook/src/funchook_io.o +0 -0
- data/funchook/src/funchook_syscall.o +0 -0
- data/funchook/src/funchook_unix.o +0 -0
- data/funchook/src/funchook_x86.o +0 -0
- data/funchook/src/instructions.o +0 -0
- data/funchook/src/insts.o +0 -0
- data/funchook/src/libfunchook.so +0 -0
- data/funchook/src/mnemonics.o +0 -0
- data/funchook/src/operands.o +0 -0
- data/funchook/src/os_func.o +0 -0
- data/funchook/src/os_func_unix.o +0 -0
- data/funchook/src/prefix.o +0 -0
- data/funchook/src/printf_base.o +0 -0
- data/funchook/src/textdefs.o +0 -0
- data/funchook/src/wstring.o +0 -0
- data/funchook/test/Makefile +0 -43
- data/funchook/test/funchook_test +0 -0
- data/funchook/test/libfunchook_test.so +0 -0
- data/funchook/test/test_main.o +0 -0
- data/funchook/test/x86_64_test.o +0 -0
- data/lib/contrast/agent/assess/adjusted_span.rb +0 -27
- data/lib/contrast/agent/assess/insulator.rb +0 -49
- data/lib/contrast/agent/require_state.rb +0 -61
- data/lib/contrast/agent/socket_client.rb +0 -134
- data/lib/contrast/api/connection_status.rb +0 -49
- data/lib/contrast/api/socket.rb +0 -43
- data/lib/contrast/api/speedracer.rb +0 -188
- data/lib/contrast/api/tcp_socket.rb +0 -29
- data/lib/contrast/api/unix_socket.rb +0 -25
- data/lib/contrast/framework/sinatra/application_helper.rb +0 -51
- data/lib/contrast/framework/view_technologies_descriptor.rb +0 -21
- data/lib/contrast/internal_exception.rb +0 -8
- data/lib/contrast/utils/cache.rb +0 -58
- data/lib/contrast/utils/service_sender_util.rb +0 -167
- data/lib/contrast/utils/sinatra_helper.rb +0 -49
data/lib/contrast/logger/log.rb
CHANGED
@@ -1,14 +1,16 @@
|
|
1
1
|
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
|
5
|
-
|
6
|
-
|
4
|
+
require 'logger'
|
5
|
+
require 'ougai'
|
6
|
+
require 'singleton'
|
7
7
|
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
8
|
+
require 'contrast/components/interface'
|
9
|
+
require 'contrast/extension/module'
|
10
|
+
require 'contrast/logger/application'
|
11
|
+
require 'contrast/logger/format'
|
12
|
+
require 'contrast/logger/request'
|
13
|
+
require 'contrast/logger/time'
|
12
14
|
|
13
15
|
module Contrast
|
14
16
|
module Logger
|
@@ -90,12 +92,14 @@ module Contrast
|
|
90
92
|
add_contrast_loggers(logger)
|
91
93
|
logger.progname = 'Contrast Agent'
|
92
94
|
logger.level = level_const
|
95
|
+
logger.formatter = Contrast::Logger::Format.new
|
93
96
|
logger.formatter.datetime_format = '%Y-%m-%dT%H:%M:%S.%L%z'
|
94
97
|
logger
|
95
98
|
end
|
96
99
|
|
97
100
|
def add_contrast_loggers logger
|
98
101
|
logger.extend(Contrast::Logger::Application)
|
102
|
+
logger.extend(Contrast::Logger::Request)
|
99
103
|
logger.extend(Contrast::Logger::Time)
|
100
104
|
end
|
101
105
|
|
@@ -108,10 +112,14 @@ module Contrast
|
|
108
112
|
if write_permission?(path)
|
109
113
|
path
|
110
114
|
elsif write_permission?(DEFAULT_NAME)
|
111
|
-
|
115
|
+
# Log once when the path is invalid. We'll change to this path, so no
|
116
|
+
# need to log again.
|
117
|
+
puts "[!] Unable to write to '#{ path }'. Writing to default log '#{ DEFAULT_NAME }' instead." if previous_path != DEFAULT_NAME
|
112
118
|
DEFAULT_NAME
|
113
119
|
else
|
114
|
-
|
120
|
+
# Log once when the path is invalid. We'll change to this path, so no
|
121
|
+
# need to log again.
|
122
|
+
puts "[!] Unable to write to '#{ path }'. Writing to standard out instead." if previous_path != STDOUT_STR
|
115
123
|
STDOUT_STR
|
116
124
|
end
|
117
125
|
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
require 'contrast/components/interface'
|
5
|
+
require 'contrast/utils/timer'
|
6
|
+
|
7
|
+
module Contrast
|
8
|
+
module Logger
|
9
|
+
# Our decorator for the Ougai logger allowing for the logging of the
|
10
|
+
# request lifecycle, used to provide context during troubleshooting.
|
11
|
+
module Request
|
12
|
+
include Contrast::Components::Interface
|
13
|
+
access_component :config
|
14
|
+
|
15
|
+
# Utility method to log the start of a request
|
16
|
+
def request_start
|
17
|
+
debug('Beginning request analysis')
|
18
|
+
end
|
19
|
+
|
20
|
+
# Utility method to log the end of a request, including the time it took
|
21
|
+
# for that request to be processed.
|
22
|
+
def request_end
|
23
|
+
context = Contrast::Agent::REQUEST_TRACKER.current
|
24
|
+
elapsed_time = context ? (Contrast::Utils::Timer.now_ms - context.timer.start_ms) : -1
|
25
|
+
debug('Ending request analysis',
|
26
|
+
elapsed_time_ms: elapsed_time)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
|
4
|
+
require 'yaml'
|
5
5
|
|
6
6
|
module Contrast
|
7
7
|
# A Rake task to generate a contrast_security.yaml file with some basic settings
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
|
5
|
-
|
4
|
+
require 'contrast/components/interface'
|
5
|
+
require 'contrast/utils/os'
|
6
6
|
|
7
7
|
module Contrast
|
8
8
|
# A Rake task designed to allow control of the Contrast Service as a stand
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
|
5
|
-
|
4
|
+
require 'singleton'
|
5
|
+
require 'contrast/components/interface'
|
6
6
|
|
7
7
|
module Contrast
|
8
8
|
module Utils
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
|
4
|
+
require 'contrast/components/interface'
|
5
5
|
|
6
6
|
module Contrast
|
7
7
|
module Utils
|
@@ -12,30 +12,55 @@ module Contrast
|
|
12
12
|
|
13
13
|
access_component :logging
|
14
14
|
|
15
|
-
|
16
|
-
|
15
|
+
class << self
|
16
|
+
# Public interface to our tracking check, isolating the internals
|
17
|
+
# required for recursion.
|
18
|
+
#
|
19
|
+
# @param obj [Object] the thing to check if tracked
|
20
|
+
# @return [Boolean] if the obj, or something in it if a collection, is
|
21
|
+
# tracked.
|
22
|
+
def tracked? obj
|
23
|
+
_tracked?(obj, 0)
|
24
|
+
end
|
17
25
|
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
26
|
+
private
|
27
|
+
|
28
|
+
# Sometimes things are nested inside of each other, such as an Array
|
29
|
+
# holding a Hash, holding that Array. In those cases, rather than
|
30
|
+
# entering an infinite loop, we'll break out.
|
31
|
+
# Right now, that level of nesting has been arbitrarily set to 10.
|
32
|
+
#
|
33
|
+
# @param obj [Object] the thing to check if tracked
|
34
|
+
# @param idx [Integer] the number of levels nested we've gone
|
35
|
+
# @return [Boolean] if the obj, or something in it if a collection, is
|
36
|
+
# tracked.
|
37
|
+
def _tracked? obj, idx
|
38
|
+
return false if obj.nil?
|
39
|
+
return false if idx > 10
|
40
|
+
|
41
|
+
idx += 1
|
42
|
+
if Contrast::Utils::DuckUtils.iterable_hash?(obj)
|
43
|
+
obj.each_pair do |k, v|
|
44
|
+
return true if _tracked?(k, idx)
|
45
|
+
return true if _tracked?(v, idx)
|
46
|
+
end
|
47
|
+
false
|
48
|
+
elsif Contrast::Utils::DuckUtils.iterable_enumerable?(obj)
|
49
|
+
obj.any? do |ele|
|
50
|
+
_tracked?(ele, idx) unless obj == ele
|
51
|
+
end
|
52
|
+
elsif Contrast::Utils::DuckUtils.quacks_to?(obj, :cs__tracked?)
|
53
|
+
obj.cs__tracked?
|
54
|
+
else
|
55
|
+
false
|
27
56
|
end
|
28
|
-
|
29
|
-
|
30
|
-
|
57
|
+
rescue StandardError => e
|
58
|
+
# This is used to ask if a ton of objects are tracked. They may not
|
59
|
+
# all be iterable. Bad things could happen in some cases, like when
|
60
|
+
# checking a closed statement for SQL injection trigger events
|
61
|
+
logger.warn('Failed to determine tracking', e, module: obj.cs__class)
|
31
62
|
false
|
32
63
|
end
|
33
|
-
rescue StandardError => e
|
34
|
-
# This is used to ask if a ton of objects are tracked. They may not
|
35
|
-
# all be iterable. Bad things could happen in some cases, like when
|
36
|
-
# checking a closed statement for SQL injection trigger events
|
37
|
-
logger.warn('Failed to determine tracking', e, module: obj.cs__class)
|
38
|
-
false
|
39
64
|
end
|
40
65
|
end
|
41
66
|
end
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
|
4
|
+
require 'contrast/utils/object_share'
|
5
5
|
|
6
6
|
module Contrast
|
7
7
|
module Utils
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
|
5
|
-
|
4
|
+
require 'contrast/extension/module'
|
5
|
+
require 'contrast/utils/object_share'
|
6
6
|
|
7
7
|
module Contrast
|
8
8
|
module Utils
|
@@ -56,7 +56,9 @@ module Contrast
|
|
56
56
|
# @return [String] the human readable form of the String, as defined by
|
57
57
|
# https://bitbucket.org/contrastsecurity/assess-specifications/src/master/vulnerability/capture-snapshot.md
|
58
58
|
def to_contrast_string object
|
59
|
-
if
|
59
|
+
# Only treat object like a string if it actually is a string
|
60
|
+
# some subclasses of String override string methods we depend on
|
61
|
+
if object.cs__class == String
|
60
62
|
cached = to_cached_string(object)
|
61
63
|
return cached if cached
|
62
64
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
|
4
|
+
require 'contrast/utils/duck_utils'
|
5
5
|
|
6
6
|
module Contrast
|
7
7
|
module Utils
|
@@ -1,11 +1,11 @@
|
|
1
1
|
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
4
|
+
require 'set'
|
5
|
+
require 'contrast/utils/sha256_builder'
|
6
|
+
require 'contrast/utils/string_utils'
|
7
|
+
require 'contrast/components/interface'
|
8
|
+
require 'contrast/api'
|
9
9
|
|
10
10
|
module Contrast
|
11
11
|
module Utils
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
|
4
|
+
require 'digest'
|
5
5
|
|
6
6
|
module Contrast
|
7
7
|
module Utils
|
@@ -32,8 +32,8 @@ module Contrast
|
|
32
32
|
request.parameters.each_key do |name|
|
33
33
|
hash.update(name)
|
34
34
|
end
|
35
|
-
cl = request.
|
36
|
-
hash.
|
35
|
+
cl = request.headers[CONTENT_LENGTH_HEADER]
|
36
|
+
hash.update_on_content_length(cl) if cl
|
37
37
|
hash.finish
|
38
38
|
end
|
39
39
|
|
@@ -121,7 +121,17 @@ module Contrast
|
|
121
121
|
end
|
122
122
|
end
|
123
123
|
|
124
|
+
CHARS = %w[a b c d e f g].cs__freeze
|
125
|
+
# This method converts and integer value for length into a string value
|
126
|
+
# that we can hash on, based on the logarithmic value of the length, and
|
127
|
+
# updates the current hash with that value.
|
128
|
+
# @param chr [Numeric] the length to translate
|
129
|
+
def update_on_content_length chr
|
130
|
+
update(CHARS[Math.log10(chr.to_s.length).to_i] || CHARS[-1])
|
131
|
+
end
|
132
|
+
|
124
133
|
def initialize
|
134
|
+
super
|
125
135
|
@crc32 = 0
|
126
136
|
end
|
127
137
|
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
|
5
|
-
|
4
|
+
require 'objspace'
|
5
|
+
require 'contrast/components/interface'
|
6
6
|
|
7
7
|
module Contrast
|
8
8
|
module Utils
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
|
4
|
+
require 'contrast/components/interface'
|
5
5
|
|
6
6
|
module Contrast
|
7
7
|
module Utils
|
@@ -44,29 +44,13 @@ module Contrast
|
|
44
44
|
activity = Contrast::Api::Dtm::Activity.new
|
45
45
|
activity.findings << finding
|
46
46
|
|
47
|
-
|
48
|
-
if APP_CONTEXT.ready?
|
49
|
-
build_tags(activity)
|
50
|
-
Contrast::Utils::ServiceSenderUtil.push_to_ready_queue activity
|
51
|
-
# Otherwise, if the Agent isn't ready, we have to queue the messages
|
52
|
-
# until we know the starting state.
|
53
|
-
else
|
54
|
-
Contrast::Utils::ServiceSenderUtil.add_to_assess_messages activity
|
55
|
-
end
|
47
|
+
Contrast::Agent.messaging_queue.send_event_eventually(activity)
|
56
48
|
rescue StandardError => e
|
57
49
|
logger.error('Unable to build a finding', e, rule: rule_id)
|
58
50
|
end
|
59
51
|
|
60
52
|
private
|
61
53
|
|
62
|
-
# This seems silly to pull out, but we can ONLY call this in the case
|
63
|
-
# where we have a configuration. Doing otherwise results in a bad error
|
64
|
-
# case where we try to do other things, like logging, which behave
|
65
|
-
# strangely without a config
|
66
|
-
def build_tags activity
|
67
|
-
activity.finding_tags = Contrast::Utils::StringUtils.force_utf8(ASSESS.tags)
|
68
|
-
end
|
69
|
-
|
70
54
|
def file_snippet file_path, call_location
|
71
55
|
idx = call_location&.lineno
|
72
56
|
if file_path && idx && File.exist?(file_path)
|
@@ -1,10 +1,10 @@
|
|
1
1
|
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
4
|
+
require 'contrast/utils/timer'
|
5
|
+
require 'contrast/utils/object_share'
|
6
|
+
require 'contrast/utils/gemfile_reader'
|
7
|
+
require 'contrast/components/interface'
|
8
8
|
|
9
9
|
module Contrast
|
10
10
|
module Utils
|
@@ -18,11 +18,10 @@ module Contrast
|
|
18
18
|
AC_TYPE_DB = 'db'
|
19
19
|
# TeamServer only accepts certain values for FlowMap Services.
|
20
20
|
# DO NOT CHANGE THIS
|
21
|
-
DATABASE = 'Database'
|
22
21
|
ADAPTER = 'adapter'
|
23
22
|
HOST = 'host'
|
24
23
|
PORT = 'port'
|
25
|
-
|
24
|
+
DATABASE = 'database'
|
26
25
|
DEFAULT = 'default'
|
27
26
|
LOCALHOST = 'localhost'
|
28
27
|
|
@@ -42,7 +41,6 @@ module Contrast
|
|
42
41
|
arr = build_from_db_config(hash_or_str)
|
43
42
|
return unless arr&.any?
|
44
43
|
|
45
|
-
activity_or_update.technologies[DATABASE] = true
|
46
44
|
arr.each do |a|
|
47
45
|
next unless a
|
48
46
|
|
@@ -51,9 +49,6 @@ module Contrast
|
|
51
49
|
else
|
52
50
|
activity_or_update.components << a
|
53
51
|
end
|
54
|
-
next if a.vendor.empty?
|
55
|
-
|
56
|
-
activity_or_update.technologies[a.vendor] = true
|
57
52
|
end
|
58
53
|
rescue StandardError => e
|
59
54
|
logger.error('Unable to append db config', e)
|
@@ -76,7 +71,7 @@ module Contrast
|
|
76
71
|
ac.remote_host = host_from_hash(hash)
|
77
72
|
ac.remote_port = port_from_hash(hash)
|
78
73
|
ac.type = AC_TYPE_DB
|
79
|
-
ac.url = hash[:database] || hash[
|
74
|
+
ac.url = hash[:database] || hash[DATABASE] || DEFAULT
|
80
75
|
[ac]
|
81
76
|
end
|
82
77
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
-
|
4
|
+
require 'contrast/components/interface'
|
5
5
|
|
6
6
|
module Contrast
|
7
7
|
module Utils
|
data/lib/contrast/utils/os.rb
CHANGED
@@ -1,23 +1,35 @@
|
|
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
|
+
require 'contrast/components/interface'
|
5
|
+
|
4
6
|
module Contrast
|
5
7
|
module Utils
|
6
8
|
# Simple utility used to make OS calls and determine state. For that state
|
7
9
|
# which will not change at runtime, such as the operating system, the
|
8
10
|
# Utility memozies to avoid multiple lookups.
|
9
11
|
module OS
|
12
|
+
include Contrast::Components::Interface
|
13
|
+
access_component :scope
|
14
|
+
|
10
15
|
class << self
|
11
16
|
def running?
|
12
|
-
|
13
|
-
|
17
|
+
result = false
|
18
|
+
with_contrast_scope do
|
19
|
+
process = `ps aux | grep contrast-servic[e]`
|
20
|
+
processes = process.split("\n")
|
21
|
+
result = !processes.empty? && processes.any? { |process_descriptor| !process_descriptor.include?('grep') }
|
22
|
+
end
|
23
|
+
result
|
14
24
|
end
|
15
25
|
|
16
26
|
# check if service was killed and is a zombie process
|
17
27
|
# returns an array of zombie process PIDs as strings; empty array if there are none
|
18
28
|
def zombie_pids
|
19
|
-
|
20
|
-
|
29
|
+
with_contrast_scope do
|
30
|
+
zombie_pid_list = `ps aux | grep contrast-servic[e] | grep Z | awk '{print $2}'` # retrieve pid of service processes
|
31
|
+
zombie_pid_list.split("\n")
|
32
|
+
end
|
21
33
|
end
|
22
34
|
end
|
23
35
|
end
|