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
@@ -15,12 +15,10 @@ module Contrast
|
|
15
15
|
JSON_GOOD_VALUE = 'good_value'
|
16
16
|
JSON_DISALLOWED_TAGS = 'disallowed_tags'
|
17
17
|
JSON_REQUIRED_TAGS = 'required_tags'
|
18
|
-
JSON_NODES = 'nodes'
|
19
18
|
JSON_RULE_NAME = 'name'
|
20
19
|
JSON_CUSTOM_PATCH = 'custom_patch'
|
21
20
|
|
22
|
-
attr_reader :rule_id
|
23
|
-
attr_accessor :required_tags, :disallowed_tags, :good_value, :bad_value
|
21
|
+
attr_reader :rule_id, :required_tags, :disallowed_tags, :good_value, :bad_value
|
24
22
|
|
25
23
|
def initialize trigger_hash = {}, rule_hash = {}
|
26
24
|
super(trigger_hash)
|
@@ -45,8 +43,8 @@ module Contrast
|
|
45
43
|
TRIGGER
|
46
44
|
end
|
47
45
|
|
48
|
-
def apply_custom_trigger context, trigger_node, source, object, ret,
|
49
|
-
custom_trigger_class.send(@trigger_method, context, trigger_node, source, object, ret,
|
46
|
+
def apply_custom_trigger context, trigger_node, source, object, ret, *args
|
47
|
+
custom_trigger_class.send(@trigger_method, context, trigger_node, source, object, ret, *args)
|
50
48
|
end
|
51
49
|
|
52
50
|
def custom_trigger_class
|
@@ -161,7 +159,6 @@ module Contrast
|
|
161
159
|
@disallowed_tags << VALIDATOR_START + loud_name
|
162
160
|
end
|
163
161
|
|
164
|
-
ENCODED_MARKER = '_ENCODED'
|
165
162
|
def validate_rule_tags tags
|
166
163
|
return unless tags
|
167
164
|
|
@@ -32,43 +32,14 @@ module Contrast
|
|
32
32
|
|
33
33
|
# It is dangerous for the user to control a section of the URL
|
34
34
|
# between the start of the protocol and the beginning of the
|
35
|
-
# querystring. If there is no
|
35
|
+
# querystring. If there is no path, then the entire URL is
|
36
36
|
# dangerous for the User to control.
|
37
37
|
start = match.begin(:protocol)
|
38
|
-
finish = match.begin(:
|
38
|
+
finish = match.begin(:path)
|
39
39
|
finish ||= url.length
|
40
40
|
|
41
41
|
args[0].cs__properties.any_tags_between?(start, finish)
|
42
42
|
end
|
43
|
-
|
44
|
-
# Some SSRF triggers take multiple parameters to build the URL.
|
45
|
-
# For the net_http_# sources, if the first parameter is a String,
|
46
|
-
# the URL is built by appending the first and second parameters.
|
47
|
-
def self.composite? patcher, args
|
48
|
-
id = patcher.id.to_s
|
49
|
-
return false unless id.start_with?(PATH_ONLY_PATCH_MARKER)
|
50
|
-
|
51
|
-
args[0].is_a?(String)
|
52
|
-
end
|
53
|
-
|
54
|
-
def self.build_single_source args
|
55
|
-
return nil unless args[0].cs__respond_to?(:cs__properties)
|
56
|
-
|
57
|
-
args[0].to_s
|
58
|
-
end
|
59
|
-
|
60
|
-
def self.build_composite_source args
|
61
|
-
if args.length > 1
|
62
|
-
return nil unless args[0].cs__respond_to?(:cs__properties) ||
|
63
|
-
args[1].cs__respond_to?(:cs__properties)
|
64
|
-
|
65
|
-
args[0] + args[1]
|
66
|
-
else
|
67
|
-
return nil unless args[0].cs__respond_to?(:cs__properties)
|
68
|
-
|
69
|
-
args[0].to_s
|
70
|
-
end
|
71
|
-
end
|
72
43
|
end
|
73
44
|
end
|
74
45
|
end
|
@@ -5,7 +5,8 @@ cs__scoped_require 'set'
|
|
5
5
|
cs__scoped_require 'base64'
|
6
6
|
cs__scoped_require 'contrast/utils/prevent_serialization'
|
7
7
|
cs__scoped_require 'contrast/utils/tag_util'
|
8
|
-
cs__scoped_require 'contrast/agent/assess/
|
8
|
+
cs__scoped_require 'contrast/agent/assess/events/event_factory'
|
9
|
+
cs__scoped_require 'contrast/agent/assess/events/source_event'
|
9
10
|
|
10
11
|
module Contrast
|
11
12
|
module Agent
|
@@ -285,8 +286,8 @@ module Contrast
|
|
285
286
|
self
|
286
287
|
end
|
287
288
|
|
288
|
-
def build_event policy_node, tagged, object, ret, args,
|
289
|
-
event = Contrast::Agent::Assess::
|
289
|
+
def build_event policy_node, tagged, object, ret, args, source_type = nil, source_name = nil
|
290
|
+
event = Contrast::Agent::Assess::Events::EventFactory.build(policy_node, tagged, object, ret, args, source_type, source_name)
|
290
291
|
add_event(event)
|
291
292
|
report_sources(tagged, event)
|
292
293
|
end
|
@@ -295,6 +296,7 @@ module Contrast
|
|
295
296
|
|
296
297
|
def report_sources tagged, event
|
297
298
|
return unless tagged && !tagged.to_s.empty?
|
299
|
+
return unless event.cs__is_a?(Contrast::Agent::Assess::Events::SourceEvent)
|
298
300
|
return unless event&.source_type
|
299
301
|
|
300
302
|
current_request = Contrast::Agent::REQUEST_TRACKER.current
|
@@ -13,7 +13,7 @@ module Contrast
|
|
13
13
|
# The base class for each of our Assess Rules
|
14
14
|
class Base
|
15
15
|
include Contrast::Components::Interface
|
16
|
-
access_component :
|
16
|
+
access_component :agent, :analysis, :logging, :settings
|
17
17
|
|
18
18
|
def initialize
|
19
19
|
SETTINGS.assess_rules[name] = self
|
@@ -61,10 +61,6 @@ module Contrast
|
|
61
61
|
def generate_hash finding
|
62
62
|
Contrast::Utils::HashDigest.generate_trigger_hash(finding)
|
63
63
|
end
|
64
|
-
|
65
|
-
def trace_tags
|
66
|
-
@_trace_tags ||= ASSESS.tags.to_s
|
67
|
-
end
|
68
64
|
end
|
69
65
|
end
|
70
66
|
end
|
@@ -16,9 +16,7 @@ module Contrast
|
|
16
16
|
# token.
|
17
17
|
class CsrfApplicator
|
18
18
|
include Contrast::Components::Interface
|
19
|
-
access_component :
|
20
|
-
|
21
|
-
CS__CSRF_LOG_MSG = 'applying CSRF assess rule'
|
19
|
+
access_component :analysis, :logging, :scope
|
22
20
|
|
23
21
|
class << self
|
24
22
|
def csrf_tagger patcher, preshift, _ret, _block
|
@@ -32,30 +30,12 @@ module Contrast
|
|
32
30
|
return unless sql
|
33
31
|
|
34
32
|
with_contrast_scope do
|
35
|
-
logger.debug(nil, CS__CSRF_LOG_MSG)
|
36
33
|
rule.record_db_state_change(
|
37
34
|
Contrast::Agent::REQUEST_TRACKER.current,
|
38
35
|
sql)
|
39
36
|
end
|
40
|
-
end
|
41
|
-
|
42
|
-
def apply_csrf_rule sql
|
43
|
-
context = Contrast::Agent::REQUEST_TRACKER.current
|
44
|
-
|
45
|
-
return unless context&.app_loaded?
|
46
|
-
return unless ASSESS.enabled?
|
47
|
-
return unless sql
|
48
|
-
|
49
|
-
rule = Contrast::Agent::FeatureState.instance.assess_rule(
|
50
|
-
Contrast::Agent::Assess::Rule::Csrf::NAME)
|
51
|
-
return unless rule&.enabled?
|
52
|
-
|
53
|
-
with_contrast_scope do
|
54
|
-
logger.debug(CS__CSRF_LOG_MSG)
|
55
|
-
rule.record_db_state_change(context, sql)
|
56
|
-
end
|
57
37
|
rescue StandardError => e
|
58
|
-
logger.warn(
|
38
|
+
logger.warn('Error running CSRF assess rule', e)
|
59
39
|
end
|
60
40
|
|
61
41
|
private
|
@@ -2,6 +2,7 @@
|
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
cs__scoped_require 'contrast/agent/assess/rule/response_watcher'
|
5
|
+
cs__scoped_require 'contrast/components/interface'
|
5
6
|
|
6
7
|
module Contrast
|
7
8
|
module Agent
|
@@ -12,6 +13,9 @@ module Contrast
|
|
12
13
|
# This one is used by the CSRF rule to determine if a request was
|
13
14
|
# made in a way that is susceptible to a CSRF attack.
|
14
15
|
class Watcher < Contrast::Agent::Assess::Rule::ResponseWatcher
|
16
|
+
include Contrast::Components::Interface
|
17
|
+
access_component :logging
|
18
|
+
|
15
19
|
def supports? context
|
16
20
|
return false unless super(context)
|
17
21
|
return false unless user_agent?(context)
|
@@ -122,7 +126,7 @@ module Contrast
|
|
122
126
|
finding.properties[DATA_KEY] = Contrast::Utils::StringUtils.force_utf8(string)
|
123
127
|
finding
|
124
128
|
rescue StandardError => e
|
125
|
-
logger.error(
|
129
|
+
logger.error('Unable to build a finding for CSRF', e)
|
126
130
|
end
|
127
131
|
end
|
128
132
|
end
|
@@ -19,7 +19,7 @@ module Contrast
|
|
19
19
|
# 4) redacted_marker : the value to plug in for the obfuscated value
|
20
20
|
module HardcodedValueRule
|
21
21
|
include Contrast::Components::Interface
|
22
|
-
access_component :
|
22
|
+
access_component :analysis, :contrast_service, :logging
|
23
23
|
|
24
24
|
def disabled?
|
25
25
|
!ASSESS.enabled? || ASSESS.rule_disabled?(rule_id)
|
@@ -111,7 +111,7 @@ module Contrast
|
|
111
111
|
|
112
112
|
CONTRAST_SERVICE.queue_message activity
|
113
113
|
rescue StandardError => e
|
114
|
-
logger.error(
|
114
|
+
logger.error('Unable to build a finding for Hardcoded Rule', e)
|
115
115
|
end
|
116
116
|
end
|
117
117
|
end
|
@@ -17,7 +17,7 @@ module Contrast
|
|
17
17
|
NAME
|
18
18
|
end
|
19
19
|
|
20
|
-
def regexp_complexity_check context, trigger_node, source, object, ret,
|
20
|
+
def regexp_complexity_check context, trigger_node, source, object, ret, *args
|
21
21
|
# we can arrive here either from:
|
22
22
|
# regexp =~ string
|
23
23
|
# string =~ regexp
|
@@ -31,9 +31,9 @@ module Contrast
|
|
31
31
|
return unless regexp_vulnerable?(regexp)
|
32
32
|
|
33
33
|
# (2) regexp must evaluate against user input
|
34
|
-
|
35
|
-
|
36
|
-
|
34
|
+
return unless trigger_node.violated?(string)
|
35
|
+
|
36
|
+
Contrast::Agent::Assess::Policy::TriggerMethod.build_finding(context, trigger_node, source, object, ret, args)
|
37
37
|
end
|
38
38
|
|
39
39
|
protected
|
@@ -33,6 +33,10 @@ module Contrast
|
|
33
33
|
start_idx...end_idx
|
34
34
|
end
|
35
35
|
|
36
|
+
def extends_beyond_string_size? string_length
|
37
|
+
@end_idx > string_length
|
38
|
+
end
|
39
|
+
|
36
40
|
# Return if a given tag overlaps this one
|
37
41
|
def overlaps? other
|
38
42
|
return true if @start_idx < other.start_idx && @end_idx >= other.start_idx # we start below other & end in it
|
@@ -100,27 +104,33 @@ module Contrast
|
|
100
104
|
# The tag is ______ the range
|
101
105
|
# rrrrrrr == self.range, the range of the tag
|
102
106
|
def compare_range start, stop
|
103
|
-
#
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
107
|
+
# the range starts below the given values
|
108
|
+
if @start_idx < start
|
109
|
+
# r starts and stops below
|
110
|
+
# rrrrrrrrrrrrr
|
111
|
+
# start stop
|
112
|
+
return BELOW if @end_idx <= start
|
113
|
+
# r starts below and finishes within
|
114
|
+
# rrrrrrrrrrrrr
|
115
|
+
# start stop
|
116
|
+
return LOW_SPAN if @end_idx > start && @end_idx <= stop
|
117
|
+
# r starts below and finishes above stop
|
118
|
+
# rrrrrrrrrrrrrrrrrrrrrrrr
|
119
|
+
# start stop
|
120
|
+
return WITHOUT if @end_idx > stop
|
121
|
+
end
|
122
|
+
|
123
|
+
# the range starts at or above the given values
|
111
124
|
# r is between start and stop
|
112
125
|
# rrrrrrrrrrrrrrr
|
113
126
|
# start stop
|
114
|
-
return WITHIN
|
115
|
-
# r starts below and finishes above stop
|
116
|
-
# rrrrrrrrrrrrrrrrrrrrrrrr
|
117
|
-
# start stop
|
118
|
-
return WITHOUT if @start_idx < start && @end_idx > stop
|
127
|
+
return WITHIN if @start_idx < stop && @end_idx <= stop
|
119
128
|
# r starts within and finishes above stop
|
120
129
|
# rrrrrrrrrrrrr
|
121
130
|
# start stop
|
122
|
-
return HIGH_SPAN if @start_idx
|
131
|
+
return HIGH_SPAN if @start_idx < stop && @end_idx > stop
|
123
132
|
|
133
|
+
# the range is above the given values
|
124
134
|
# starts and stops above
|
125
135
|
# rrrrrrrrrrrrr
|
126
136
|
# start stop
|
@@ -8,26 +8,29 @@ module Contrast
|
|
8
8
|
# This module adds an at_exit hook for us to send messages that may be lost at process exit
|
9
9
|
module AtExitHook
|
10
10
|
include Contrast::Components::Interface
|
11
|
-
access_component :
|
12
|
-
|
13
|
-
TERMINATION_NOTICE = 'at_exit invoked, host application terminating'
|
14
|
-
|
11
|
+
access_component :contrast_service, :logging
|
15
12
|
def self.exit_hook
|
16
13
|
@_exit_hook ||= begin
|
17
14
|
at_exit do
|
18
|
-
|
19
|
-
|
20
|
-
context = Contrast::Agent::REQUEST_TRACKER.current
|
21
|
-
CONTRAST_SERVICE.send_message(context.activity) if context
|
22
|
-
|
23
|
-
logger.debug(" - current PID #{ @pid }")
|
24
|
-
logger.debug(" - current PPID #{ @ppid }")
|
25
|
-
logger.debug(" - process PID #{ Process.pid }")
|
26
|
-
logger.debug(" - process PPID #{ Process.ppid }")
|
15
|
+
on_exit
|
27
16
|
end
|
28
17
|
true
|
29
18
|
end
|
30
19
|
end
|
20
|
+
|
21
|
+
# Actions to take when a process exits. Typically called from our
|
22
|
+
# exit_hook, but exposed here for other process terminations, like those
|
23
|
+
# in Kernel#exec
|
24
|
+
def self.on_exit
|
25
|
+
logger.debug('at_exit invoked, host application terminating',
|
26
|
+
p_id: @pid,
|
27
|
+
pp_id: @ppid,
|
28
|
+
process_pid: Process.pid,
|
29
|
+
process_pp_id: Process.ppid)
|
30
|
+
|
31
|
+
context = Contrast::Agent::REQUEST_TRACKER.current
|
32
|
+
CONTRAST_SERVICE.send_message(context.activity) if context
|
33
|
+
end
|
31
34
|
end
|
32
35
|
end
|
33
36
|
end
|
@@ -115,9 +115,7 @@ module Contrast
|
|
115
115
|
def source_code location, method_name
|
116
116
|
file_name = location[0]
|
117
117
|
line_number = location[1]
|
118
|
-
return unless file_name
|
119
|
-
return unless File.exist?(file_name) && File.readable?(file_name)
|
120
|
-
return if File.empty?(file_name)
|
118
|
+
return unless file_contents_available?(file_name, line_number)
|
121
119
|
|
122
120
|
files[file_name] = File.readlines(file_name) unless files.key?(file_name)
|
123
121
|
lines = files[file_name]
|
@@ -130,7 +128,11 @@ module Contrast
|
|
130
128
|
break if complete?(code)
|
131
129
|
end
|
132
130
|
unless complete?(code) && compiles?(code)
|
133
|
-
logger.warn(
|
131
|
+
logger.warn(
|
132
|
+
'Failed to determine sourcecode for rewriting.',
|
133
|
+
file: file_name,
|
134
|
+
method: method_name,
|
135
|
+
line_number: line_number)
|
134
136
|
return
|
135
137
|
end
|
136
138
|
code
|
@@ -138,6 +140,14 @@ module Contrast
|
|
138
140
|
|
139
141
|
private
|
140
142
|
|
143
|
+
def file_contents_available? file_name, line_number
|
144
|
+
return false unless file_name && line_number
|
145
|
+
return false unless File.exist?(file_name) && File.readable?(file_name)
|
146
|
+
return false if File.empty?(file_name)
|
147
|
+
|
148
|
+
true
|
149
|
+
end
|
150
|
+
|
141
151
|
def gather_modules
|
142
152
|
return if class_module_path.nil?
|
143
153
|
|
@@ -37,14 +37,14 @@ module Contrast
|
|
37
37
|
|
38
38
|
def add_node node, _node_type = :deadzones
|
39
39
|
unless node
|
40
|
-
logger.error(
|
40
|
+
logger.error('Node was nil when adding node to policy')
|
41
41
|
return
|
42
42
|
end
|
43
43
|
|
44
44
|
begin
|
45
45
|
node.validate
|
46
46
|
rescue ArgumentError => e
|
47
|
-
logger.error(
|
47
|
+
logger.error('Node failed validation', e)
|
48
48
|
return
|
49
49
|
end
|
50
50
|
|
@@ -10,13 +10,12 @@ module Contrast
|
|
10
10
|
# set by the Organization's Administrator
|
11
11
|
class DisableReaction
|
12
12
|
include Contrast::Components::Interface
|
13
|
-
access_component :
|
13
|
+
access_component :agent, :logging
|
14
14
|
|
15
15
|
def self.run _reaction, level
|
16
16
|
logger.with_level(
|
17
|
-
|
18
|
-
'Contrast received instructions to disable itself - Disabling now'
|
19
|
-
level)
|
17
|
+
level,
|
18
|
+
'Contrast received instructions to disable itself - Disabling now')
|
20
19
|
AGENT.disable!
|
21
20
|
end
|
22
21
|
end
|
@@ -2,6 +2,7 @@
|
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
cs__scoped_require 'contrast/components/interface'
|
5
|
+
cs__scoped_require 'contrast/api/decorators/exclusion.rb'
|
5
6
|
|
6
7
|
module Contrast
|
7
8
|
module Agent
|
@@ -12,6 +13,10 @@ module Contrast
|
|
12
13
|
include Contrast::Components::Interface
|
13
14
|
access_component :logging
|
14
15
|
|
16
|
+
# Create a matcher around an exclusion sent from TeamServer.
|
17
|
+
#
|
18
|
+
# @param excl [Contrast::Api::Settings::Exclusion]
|
19
|
+
# @return [Contrast::Agent::ExclusionMatcher]
|
15
20
|
def initialize excl
|
16
21
|
@exclusion = excl
|
17
22
|
@protect = @exclusion.protect
|
@@ -58,10 +63,10 @@ module Contrast
|
|
58
63
|
# Contrast UI, these comparisons must be done at the end of the input.
|
59
64
|
# https://docs.contrastsecurity.com/admin-policymgmt.html#exclude
|
60
65
|
def handle_wildcard_code
|
61
|
-
return unless @exclusion.
|
66
|
+
return unless @exclusion.denylist&.any?
|
62
67
|
|
63
68
|
@wildcard_exclusions = []
|
64
|
-
@exclusion.
|
69
|
+
@exclusion.denylist.each do |code|
|
65
70
|
class_name, method_name = code.split(Contrast::Utils::ObjectShare::COLON)
|
66
71
|
class_pattern = build_regexp(class_name, false, true)
|
67
72
|
method_pattern = build_regexp(method_name)
|
@@ -76,7 +81,7 @@ module Contrast
|
|
76
81
|
pattern += Contrast::Utils::ObjectShare::DOLLAR_SIGN if end_anchor
|
77
82
|
Regexp.compile(pattern)
|
78
83
|
rescue RegexpError => e
|
79
|
-
logger.error(
|
84
|
+
logger.error('Unable to generate a pattern for exclusion matching.', e, pattern: pattern)
|
80
85
|
end
|
81
86
|
|
82
87
|
def protect?
|
@@ -87,14 +92,6 @@ module Contrast
|
|
87
92
|
@assess
|
88
93
|
end
|
89
94
|
|
90
|
-
def url?
|
91
|
-
@exclusion.type == :URL
|
92
|
-
end
|
93
|
-
|
94
|
-
def input?
|
95
|
-
@exclusion.type == :INPUT
|
96
|
-
end
|
97
|
-
|
98
95
|
def code?
|
99
96
|
@exclusion.type == :CODE
|
100
97
|
end
|
@@ -131,43 +128,6 @@ module Contrast
|
|
131
128
|
)
|
132
129
|
end
|
133
130
|
|
134
|
-
def match_url? url
|
135
|
-
return false unless url?
|
136
|
-
return true if @wildcard_url
|
137
|
-
|
138
|
-
@urls.any? { |test| url.match?(test) }
|
139
|
-
end
|
140
|
-
|
141
|
-
def match_input? value, type
|
142
|
-
return false unless input?
|
143
|
-
|
144
|
-
exclusion_type = @exclusion.input_type
|
145
|
-
case type
|
146
|
-
when :PARAMETER_NAME, :PARAMETER_VALUE
|
147
|
-
return exclusion_type == :PARAMETER && value_match?(value)
|
148
|
-
when :COOKIE_NAME, :COOKIE_VALUE
|
149
|
-
return exclusion_type == :COOKIE && value_match?(value)
|
150
|
-
when :HEADER
|
151
|
-
return exclusion_type == :HEADER && value_match?(value, false)
|
152
|
-
when :BODY
|
153
|
-
return exclusion_type == :BODY
|
154
|
-
when :QUERYSTRING
|
155
|
-
return exclusion_type == :QUERYSTRING
|
156
|
-
end
|
157
|
-
|
158
|
-
false
|
159
|
-
end
|
160
|
-
|
161
|
-
def value_match? value, case_sensitive = true
|
162
|
-
return true if @wildcard_input
|
163
|
-
|
164
|
-
if case_sensitive
|
165
|
-
value == @exclusion.input_name
|
166
|
-
else
|
167
|
-
@exclusion.input_name.casecmp(value).zero?
|
168
|
-
end
|
169
|
-
end
|
170
|
-
|
171
131
|
def match_code? stack_trace
|
172
132
|
return false unless code?
|
173
133
|
return false if @wildcard_exclusions&.empty?
|