contrast-agent 3.10.2 → 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 +13 -17
- 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 +16 -62
- 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 +37 -26
- 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 +14 -4
- 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 -75
- 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 +33 -30
- data/lib/contrast/agent/rewriter.rb +22 -10
- data/lib/contrast/agent/rule_set.rb +49 -0
- data/lib/contrast/agent/scope.rb +0 -6
- 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 +27 -23
- 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/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 -2
- 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 -27
- 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/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 +6 -3
- metadata +76 -51
- 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 -81
- 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
@@ -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
|
@@ -10,17 +10,17 @@ module Contrast
|
|
10
10
|
class BooleanUtil
|
11
11
|
class << self
|
12
12
|
def false? config
|
13
|
-
return false unless config
|
14
13
|
return false if config == true
|
15
14
|
return true if config == false
|
15
|
+
return false unless config.cs__is_a?(String)
|
16
16
|
|
17
17
|
Contrast::Utils::ObjectShare::FALSE.casecmp?(config)
|
18
18
|
end
|
19
19
|
|
20
20
|
def true? config
|
21
|
-
return false unless config
|
22
21
|
return false if config == false
|
23
22
|
return true if config == true
|
23
|
+
return false unless config.cs__is_a?(String)
|
24
24
|
|
25
25
|
Contrast::Utils::ObjectShare::TRUE.casecmp?(config)
|
26
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
|
@@ -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,10 +70,7 @@ 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
|
|
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
|
|