contrast-agent 6.6.4 → 6.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +3 -2
- data/.gitmodules +0 -3
- data/.simplecov +0 -1
- data/Rakefile +0 -1
- data/ext/cs__assess_array/cs__assess_array.c +41 -10
- data/ext/cs__assess_array/cs__assess_array.h +4 -1
- data/ext/cs__scope/cs__scope.c +1 -1
- data/lib/contrast/agent/assess/contrast_event.rb +2 -24
- data/lib/contrast/agent/assess/events/source_event.rb +7 -61
- data/lib/contrast/agent/assess/finalizers/hash.rb +11 -0
- data/lib/contrast/agent/assess/policy/dynamic_source_factory.rb +0 -55
- data/lib/contrast/agent/assess/policy/policy_node.rb +3 -3
- data/lib/contrast/agent/assess/policy/policy_node_utils.rb +0 -1
- data/lib/contrast/agent/assess/policy/propagation_node.rb +4 -4
- data/lib/contrast/agent/assess/policy/source_method.rb +24 -1
- data/lib/contrast/agent/assess/policy/trigger/reflected_xss.rb +7 -5
- data/lib/contrast/agent/assess/policy/trigger/xpath.rb +6 -1
- data/lib/contrast/agent/assess/policy/trigger_method.rb +40 -121
- data/lib/contrast/agent/assess/policy/trigger_node.rb +3 -3
- data/lib/contrast/agent/assess/policy/trigger_validation/redos_validator.rb +1 -1
- data/lib/contrast/agent/assess/policy/trigger_validation/ssrf_validator.rb +1 -1
- data/lib/contrast/agent/assess/policy/trigger_validation/xss_validator.rb +1 -1
- data/lib/contrast/agent/assess/property/evented.rb +2 -12
- data/lib/contrast/agent/assess/rule/provider/hardcoded_value_rule.rb +42 -82
- data/lib/contrast/agent/assess/rule/response/base_rule.rb +11 -27
- data/lib/contrast/agent/assess/rule/response/body_rule.rb +1 -3
- data/lib/contrast/agent/assess/rule/response/cache_control_header_rule.rb +77 -62
- data/lib/contrast/agent/assess/rule/response/csp_header_insecure_rule.rb +1 -1
- data/lib/contrast/agent/assess/rule/response/framework/rails_support.rb +6 -1
- data/lib/contrast/agent/assess/rule/response/header_rule.rb +5 -5
- data/lib/contrast/agent/assess/rule/response/hsts_header_rule.rb +1 -1
- data/lib/contrast/agent/assess/rule/response/x_xss_protection_header_rule.rb +1 -1
- data/lib/contrast/agent/assess/tracker.rb +1 -7
- data/lib/contrast/agent/at_exit_hook.rb +1 -7
- data/lib/contrast/agent/excluder.rb +224 -0
- data/lib/contrast/agent/exclusion_matcher.rb +25 -7
- data/lib/contrast/agent/inventory/database_config.rb +18 -23
- data/lib/contrast/agent/middleware.rb +4 -5
- data/lib/contrast/agent/patching/policy/after_load_patcher.rb +6 -0
- data/lib/contrast/agent/protect/input_analyzer/input_analyzer.rb +146 -127
- data/lib/contrast/agent/protect/policy/applies_command_injection_rule.rb +4 -0
- data/lib/contrast/agent/protect/policy/applies_path_traversal_rule.rb +20 -0
- data/lib/contrast/agent/protect/policy/applies_sqli_rule.rb +1 -0
- data/lib/contrast/agent/protect/policy/rule_applicator.rb +1 -1
- data/lib/contrast/agent/protect/rule/base.rb +98 -66
- data/lib/contrast/agent/protect/rule/base_service.rb +49 -24
- data/lib/contrast/agent/protect/rule/bot_blocker/bot_blocker_input_classification.rb +98 -0
- data/lib/contrast/agent/protect/rule/bot_blocker.rb +81 -0
- data/lib/contrast/agent/protect/rule/cmd_injection.rb +30 -99
- data/lib/contrast/agent/protect/rule/cmdi/cmdi_backdoors.rb +132 -0
- data/lib/contrast/agent/protect/rule/cmdi/cmdi_base_rule.rb +169 -0
- data/lib/contrast/agent/protect/rule/cmdi/cmdi_chained_command.rb +69 -0
- data/lib/contrast/agent/protect/rule/cmdi/cmdi_dangerous_path.rb +68 -0
- data/lib/contrast/agent/protect/rule/cmdi/cmdi_input_classification.rb +2 -58
- data/lib/contrast/agent/protect/rule/default_scanner.rb +1 -1
- data/lib/contrast/agent/protect/rule/deserialization.rb +10 -19
- data/lib/contrast/agent/protect/rule/http_method_tampering/http_method_tampering_input_classification.rb +2 -2
- data/lib/contrast/agent/protect/rule/http_method_tampering.rb +0 -11
- data/lib/contrast/agent/protect/rule/no_sqli/no_sqli_input_classification.rb +29 -34
- data/lib/contrast/agent/protect/rule/no_sqli.rb +25 -18
- data/lib/contrast/agent/protect/rule/path_traversal/path_traversal_input_classification.rb +61 -0
- data/lib/contrast/agent/protect/rule/path_traversal/path_traversal_semantic_security_bypass.rb +114 -0
- data/lib/contrast/agent/protect/rule/path_traversal.rb +46 -18
- data/lib/contrast/agent/protect/rule/sql_sample_builder.rb +49 -29
- data/lib/contrast/agent/protect/rule/sqli/sqli_base_rule.rb +37 -0
- data/lib/contrast/agent/protect/rule/sqli/sqli_input_classification.rb +2 -62
- data/lib/contrast/agent/protect/rule/sqli/sqli_semantic/sqli_dangerous_functions.rb +67 -0
- data/lib/contrast/agent/protect/rule/sqli.rb +67 -22
- data/lib/contrast/agent/protect/rule/unsafe_file_upload/unsafe_file_upload_input_classification.rb +39 -63
- data/lib/contrast/agent/protect/rule/unsafe_file_upload.rb +6 -33
- data/lib/contrast/agent/protect/rule/xss/reflected_xss_input_classification.rb +58 -0
- data/lib/contrast/agent/protect/rule/xss.rb +14 -20
- data/lib/contrast/agent/protect/rule/xxe.rb +15 -30
- data/lib/contrast/agent/protect/rule.rb +3 -1
- data/lib/contrast/agent/reporting/attack_result/attack_result.rb +8 -0
- data/lib/contrast/agent/reporting/attack_result/rasp_rule_sample.rb +70 -36
- data/lib/contrast/agent/reporting/attack_result/response_type.rb +9 -9
- data/lib/contrast/agent/reporting/attack_result/user_input.rb +11 -0
- data/lib/contrast/agent/reporting/details/bot_blocker_details.rb +29 -0
- data/lib/contrast/agent/reporting/details/cmd_injection_details.rb +30 -0
- data/lib/contrast/agent/reporting/details/details.rb +18 -0
- data/lib/contrast/agent/reporting/details/http_method_tempering_details.rb +27 -0
- data/lib/contrast/agent/reporting/details/ip_denylist_details.rb +35 -0
- data/lib/contrast/agent/reporting/details/no_sqli_details.rb +36 -0
- data/lib/contrast/agent/reporting/details/path_traversal_details.rb +24 -0
- data/lib/contrast/agent/reporting/details/path_traversal_semantic_analysis_details.rb +32 -0
- data/lib/contrast/agent/reporting/details/protect_rule_details.rb +17 -0
- data/lib/contrast/agent/reporting/details/sqli_dangerous_functions.rb +22 -0
- data/lib/contrast/agent/reporting/details/sqli_details.rb +36 -0
- data/lib/contrast/agent/reporting/details/untrusted_deserialization_details.rb +27 -0
- data/lib/contrast/agent/reporting/details/virtual_patch_details.rb +30 -0
- data/lib/contrast/agent/reporting/details/xss_details.rb +33 -0
- data/lib/contrast/agent/reporting/details/xss_match.rb +30 -0
- data/lib/contrast/agent/reporting/details/xxe_details.rb +36 -0
- data/lib/contrast/agent/reporting/details/xxe_match.rb +25 -0
- data/lib/contrast/agent/reporting/details/xxe_wrapper.rb +25 -0
- data/lib/contrast/agent/reporting/input_analysis/details/bot_blocker_details.rb +27 -0
- data/lib/contrast/agent/reporting/input_analysis/details/protect_rule_details.rb +15 -0
- data/lib/contrast/agent/reporting/input_analysis/input_analysis.rb +1 -2
- data/lib/contrast/agent/reporting/input_analysis/input_analysis_result.rb +17 -3
- data/lib/contrast/agent/reporting/masker/masker.rb +80 -65
- data/lib/contrast/agent/reporting/masker/masker_utils.rb +1 -30
- data/lib/contrast/agent/reporting/reporter.rb +1 -15
- data/lib/contrast/agent/reporting/reporting_events/agent_startup.rb +2 -2
- data/lib/contrast/agent/reporting/reporting_events/application_activity.rb +84 -15
- data/lib/contrast/agent/reporting/reporting_events/application_defend_activity.rb +13 -25
- data/lib/contrast/agent/reporting/reporting_events/application_defend_attack_activity.rb +19 -24
- data/lib/contrast/agent/reporting/reporting_events/application_defend_attack_sample.rb +46 -126
- data/lib/contrast/agent/reporting/reporting_events/application_defend_attack_sample_activity.rb +5 -16
- data/lib/contrast/agent/reporting/reporting_events/application_defend_attacker_activity.rb +10 -18
- data/lib/contrast/agent/reporting/reporting_events/application_inventory_activity.rb +6 -14
- data/lib/contrast/agent/reporting/reporting_events/application_startup.rb +1 -1
- data/lib/contrast/agent/reporting/reporting_events/application_update.rb +0 -2
- data/lib/contrast/agent/reporting/reporting_events/architecture_component.rb +7 -22
- data/lib/contrast/agent/reporting/reporting_events/finding.rb +23 -53
- data/lib/contrast/agent/reporting/reporting_events/finding_event.rb +12 -9
- data/lib/contrast/agent/reporting/reporting_events/finding_event_signature.rb +1 -1
- data/lib/contrast/agent/reporting/reporting_events/finding_event_source.rb +23 -21
- data/lib/contrast/agent/reporting/reporting_events/finding_event_stack.rb +5 -18
- data/lib/contrast/agent/reporting/reporting_events/finding_event_taint_range.rb +1 -0
- data/lib/contrast/{api/decorators/trace_taint_range_tags.rb → agent/reporting/reporting_events/finding_event_taint_range_tags.rb} +7 -6
- data/lib/contrast/agent/reporting/reporting_events/finding_request.rb +40 -10
- data/lib/contrast/agent/reporting/reporting_events/library_discovery.rb +0 -1
- data/lib/contrast/agent/reporting/reporting_events/library_usage_observation.rb +1 -1
- data/lib/contrast/agent/reporting/reporting_events/observed_route.rb +2 -2
- data/lib/contrast/agent/reporting/reporting_events/poll.rb +1 -11
- data/lib/contrast/agent/reporting/reporting_events/preflight_message.rb +10 -14
- data/lib/contrast/agent/reporting/reporting_events/reporting_event.rb +11 -0
- data/lib/contrast/agent/reporting/reporting_events/route_coverage.rb +3 -1
- data/lib/contrast/agent/reporting/reporting_events/route_discovery.rb +12 -25
- data/lib/contrast/agent/reporting/reporting_events/route_discovery_observation.rb +8 -27
- data/lib/contrast/agent/reporting/reporting_utilities/audit.rb +3 -3
- data/lib/contrast/agent/reporting/reporting_utilities/build_preflight.rb +4 -7
- data/lib/contrast/agent/reporting/reporting_utilities/headers.rb +1 -1
- data/lib/contrast/agent/reporting/reporting_utilities/reporter_client.rb +2 -1
- data/lib/contrast/agent/reporting/reporting_utilities/reporter_client_utils.rb +3 -3
- data/lib/contrast/agent/reporting/reporting_utilities/response.rb +1 -1
- data/lib/contrast/agent/reporting/reporting_utilities/response_handler.rb +0 -3
- data/lib/contrast/agent/reporting/reporting_utilities/response_handler_utils.rb +1 -0
- data/lib/contrast/agent/reporting/settings/code_exclusion.rb +6 -1
- data/lib/contrast/agent/reporting/settings/exclusion_base.rb +18 -0
- data/lib/contrast/agent/reporting/settings/exclusions.rb +2 -1
- data/lib/contrast/agent/reporting/settings/input_exclusion.rb +9 -3
- data/lib/contrast/agent/reporting/settings/protect.rb +15 -15
- data/lib/contrast/agent/request.rb +4 -14
- data/lib/contrast/agent/request_context.rb +18 -24
- data/lib/contrast/agent/request_context_extend.rb +23 -164
- data/lib/contrast/agent/request_handler.rb +1 -11
- data/lib/contrast/agent/response.rb +0 -18
- data/lib/contrast/agent/telemetry/events/event.rb +1 -1
- data/lib/contrast/agent/telemetry/events/metric_event.rb +1 -1
- data/lib/contrast/agent/telemetry/events/startup_metrics_event.rb +3 -3
- data/lib/contrast/agent/thread_watcher.rb +3 -18
- data/lib/contrast/agent/version.rb +1 -1
- data/lib/contrast/agent.rb +0 -11
- data/lib/contrast/agent_lib/api/command_injection.rb +46 -0
- data/lib/contrast/agent_lib/api/init.rb +101 -0
- data/lib/contrast/agent_lib/api/input_tracing.rb +267 -0
- data/lib/contrast/agent_lib/api/method_tempering.rb +29 -0
- data/lib/contrast/agent_lib/api/panic.rb +87 -0
- data/lib/contrast/agent_lib/api/path_semantic_file_security_bypass.rb +40 -0
- data/lib/contrast/agent_lib/interface.rb +260 -0
- data/lib/contrast/agent_lib/interface_base.rb +118 -0
- data/lib/contrast/agent_lib/return_types/eval_result.rb +44 -0
- data/lib/contrast/agent_lib/test.rb +29 -0
- data/lib/contrast/api/communication/connection_status.rb +5 -5
- data/lib/contrast/components/agent.rb +13 -23
- data/lib/contrast/components/api.rb +10 -10
- data/lib/contrast/components/app_context.rb +9 -11
- data/lib/contrast/components/app_context_extend.rb +1 -26
- data/lib/contrast/components/assess.rb +92 -38
- data/lib/contrast/components/assess_rules.rb +36 -0
- data/lib/contrast/components/config.rb +49 -24
- data/lib/contrast/components/heap_dump.rb +1 -1
- data/lib/contrast/components/protect.rb +9 -6
- data/lib/contrast/components/ruby_component.rb +81 -0
- data/lib/contrast/components/sampling.rb +1 -1
- data/lib/contrast/components/security_logger.rb +23 -0
- data/lib/contrast/components/settings.rb +41 -85
- data/lib/contrast/config/base_configuration.rb +1 -1
- data/lib/contrast/config/protect_rule_configuration.rb +7 -7
- data/lib/contrast/config/protect_rules_configuration.rb +24 -48
- data/lib/contrast/config/server_configuration.rb +1 -1
- data/lib/contrast/config.rb +0 -6
- data/lib/contrast/configuration.rb +73 -18
- data/lib/contrast/extension/assess/array.rb +9 -0
- data/lib/contrast/extension/assess/exec_trigger.rb +3 -1
- data/lib/contrast/extension/assess/marshal.rb +3 -2
- data/lib/contrast/extension/assess/string.rb +0 -1
- data/lib/contrast/extension/delegator.rb +2 -0
- data/lib/contrast/extension/extension.rb +1 -1
- data/lib/contrast/framework/base_support.rb +0 -5
- data/lib/contrast/framework/grape/support.rb +1 -23
- data/lib/contrast/framework/manager.rb +3 -11
- data/lib/contrast/framework/rails/patch/action_controller_live_buffer.rb +1 -6
- data/lib/contrast/framework/rails/railtie.rb +0 -1
- data/lib/contrast/framework/rails/support.rb +5 -59
- data/lib/contrast/framework/sinatra/support.rb +2 -21
- data/lib/contrast/logger/cef_log.rb +21 -3
- data/lib/contrast/logger/log.rb +1 -11
- data/lib/contrast/tasks/config.rb +5 -10
- data/lib/contrast/utils/assess/event_limit_utils.rb +28 -12
- data/lib/contrast/utils/assess/trigger_method_utils.rb +10 -18
- data/lib/contrast/utils/duck_utils.rb +1 -0
- data/lib/contrast/utils/findings.rb +6 -5
- data/lib/contrast/utils/hash_digest.rb +9 -24
- data/lib/contrast/utils/hash_digest_extend.rb +6 -6
- data/lib/contrast/utils/input_classification_base.rb +156 -0
- data/lib/contrast/utils/invalid_configuration_util.rb +21 -58
- data/lib/contrast/utils/log_utils.rb +47 -17
- data/lib/contrast/utils/net_http_base.rb +2 -2
- data/lib/contrast/utils/os.rb +0 -20
- data/lib/contrast/utils/patching/policy/patch_utils.rb +3 -2
- data/lib/contrast/utils/response_utils.rb +0 -16
- data/lib/contrast/utils/stack_trace_utils.rb +3 -40
- data/lib/contrast/utils/string_utils.rb +19 -7
- data/lib/contrast/utils/telemetry_client.rb +13 -7
- data/lib/contrast.rb +7 -13
- data/resources/protect/policy.json +1 -2
- data/ruby-agent.gemspec +2 -5
- metadata +78 -137
- data/exe/contrast_service +0 -23
- data/lib/contrast/agent/protect/rule/cmdi/cmdi_worth_watching.rb +0 -64
- data/lib/contrast/agent/protect/rule/sqli/sqli_worth_watching.rb +0 -118
- data/lib/contrast/agent/protect/rule/unsafe_file_upload/unsafe_file_upload_matcher.rb +0 -45
- data/lib/contrast/agent/reaction_processor.rb +0 -47
- data/lib/contrast/agent/reporting/reporting_events/trace_event_source.rb +0 -30
- data/lib/contrast/agent/reporting/reporting_utilities/dtm_message.rb +0 -43
- data/lib/contrast/agent/service_heartbeat.rb +0 -35
- data/lib/contrast/api/communication/messaging_queue.rb +0 -129
- data/lib/contrast/api/communication/response_processor.rb +0 -90
- data/lib/contrast/api/communication/service_lifecycle.rb +0 -77
- data/lib/contrast/api/communication/socket.rb +0 -44
- data/lib/contrast/api/communication/socket_client.rb +0 -130
- data/lib/contrast/api/communication/speedracer.rb +0 -142
- data/lib/contrast/api/communication/tcp_socket.rb +0 -32
- data/lib/contrast/api/communication/unix_socket.rb +0 -28
- data/lib/contrast/api/communication.rb +0 -20
- data/lib/contrast/api/decorators/activity.rb +0 -33
- data/lib/contrast/api/decorators/address.rb +0 -59
- data/lib/contrast/api/decorators/agent_startup.rb +0 -57
- data/lib/contrast/api/decorators/application_settings.rb +0 -42
- data/lib/contrast/api/decorators/application_startup.rb +0 -56
- data/lib/contrast/api/decorators/architecture_component.rb +0 -36
- data/lib/contrast/api/decorators/bot_blocker.rb +0 -37
- data/lib/contrast/api/decorators/finding.rb +0 -29
- data/lib/contrast/api/decorators/http_request.rb +0 -137
- data/lib/contrast/api/decorators/input_analysis.rb +0 -18
- data/lib/contrast/api/decorators/instrumentation_mode.rb +0 -35
- data/lib/contrast/api/decorators/ip_denylist.rb +0 -37
- data/lib/contrast/api/decorators/message.rb +0 -71
- data/lib/contrast/api/decorators/rasp_rule_sample.rb +0 -58
- data/lib/contrast/api/decorators/response_type.rb +0 -17
- data/lib/contrast/api/decorators/route_coverage.rb +0 -91
- data/lib/contrast/api/decorators/server_features.rb +0 -25
- data/lib/contrast/api/decorators/trace_event.rb +0 -120
- data/lib/contrast/api/decorators/trace_event_object.rb +0 -63
- data/lib/contrast/api/decorators/trace_event_signature.rb +0 -69
- data/lib/contrast/api/decorators/trace_taint_range.rb +0 -52
- data/lib/contrast/api/decorators/user_input.rb +0 -51
- data/lib/contrast/api/decorators/virtual_patch.rb +0 -34
- data/lib/contrast/api/decorators.rb +0 -28
- data/lib/contrast/api/dtm.pb.rb +0 -852
- data/lib/contrast/api/settings.pb.rb +0 -500
- data/lib/contrast/api.rb +0 -16
- data/lib/contrast/components/contrast_service.rb +0 -88
- data/lib/contrast/config/assess_configuration.rb +0 -93
- data/lib/contrast/config/assess_rules_configuration.rb +0 -32
- data/lib/contrast/config/root_configuration.rb +0 -90
- data/lib/contrast/config/ruby_configuration.rb +0 -81
- data/lib/contrast/config/service_configuration.rb +0 -49
- data/lib/contrast/tasks/service.rb +0 -84
- data/lib/contrast/utils/input_classification.rb +0 -73
- data/lib/contrast/utils/preflight_util.rb +0 -13
- data/lib/protobuf/code_generator.rb +0 -129
- data/lib/protobuf/decoder.rb +0 -28
- data/lib/protobuf/deprecation.rb +0 -117
- data/lib/protobuf/descriptors/google/protobuf/compiler/plugin.pb.rb +0 -79
- data/lib/protobuf/descriptors/google/protobuf/descriptor.pb.rb +0 -360
- data/lib/protobuf/descriptors.rb +0 -3
- data/lib/protobuf/encoder.rb +0 -11
- data/lib/protobuf/enum.rb +0 -365
- data/lib/protobuf/exceptions.rb +0 -9
- data/lib/protobuf/field/base_field.rb +0 -380
- data/lib/protobuf/field/base_field_object_definitions.rb +0 -504
- data/lib/protobuf/field/bool_field.rb +0 -64
- data/lib/protobuf/field/bytes_field.rb +0 -67
- data/lib/protobuf/field/double_field.rb +0 -25
- data/lib/protobuf/field/enum_field.rb +0 -56
- data/lib/protobuf/field/field_array.rb +0 -102
- data/lib/protobuf/field/field_hash.rb +0 -122
- data/lib/protobuf/field/fixed32_field.rb +0 -25
- data/lib/protobuf/field/fixed64_field.rb +0 -28
- data/lib/protobuf/field/float_field.rb +0 -43
- data/lib/protobuf/field/int32_field.rb +0 -21
- data/lib/protobuf/field/int64_field.rb +0 -34
- data/lib/protobuf/field/integer_field.rb +0 -23
- data/lib/protobuf/field/message_field.rb +0 -51
- data/lib/protobuf/field/sfixed32_field.rb +0 -27
- data/lib/protobuf/field/sfixed64_field.rb +0 -28
- data/lib/protobuf/field/signed_integer_field.rb +0 -29
- data/lib/protobuf/field/sint32_field.rb +0 -21
- data/lib/protobuf/field/sint64_field.rb +0 -21
- data/lib/protobuf/field/string_field.rb +0 -51
- data/lib/protobuf/field/uint32_field.rb +0 -21
- data/lib/protobuf/field/uint64_field.rb +0 -21
- data/lib/protobuf/field/varint_field.rb +0 -77
- data/lib/protobuf/field.rb +0 -74
- data/lib/protobuf/generators/base.rb +0 -85
- data/lib/protobuf/generators/enum_generator.rb +0 -39
- data/lib/protobuf/generators/extension_generator.rb +0 -27
- data/lib/protobuf/generators/field_generator.rb +0 -193
- data/lib/protobuf/generators/file_generator.rb +0 -262
- data/lib/protobuf/generators/group_generator.rb +0 -122
- data/lib/protobuf/generators/message_generator.rb +0 -104
- data/lib/protobuf/generators/option_generator.rb +0 -17
- data/lib/protobuf/generators/printable.rb +0 -160
- data/lib/protobuf/generators/service_generator.rb +0 -50
- data/lib/protobuf/lifecycle.rb +0 -33
- data/lib/protobuf/logging.rb +0 -39
- data/lib/protobuf/message/fields.rb +0 -233
- data/lib/protobuf/message/serialization.rb +0 -85
- data/lib/protobuf/message.rb +0 -241
- data/lib/protobuf/optionable.rb +0 -72
- data/lib/protobuf/tasks/compile.rake +0 -80
- data/lib/protobuf/tasks.rb +0 -1
- data/lib/protobuf/varint.rb +0 -20
- data/lib/protobuf/varint_pure.rb +0 -31
- data/lib/protobuf/version.rb +0 -3
- data/lib/protobuf/wire_type.rb +0 -10
- data/lib/protobuf.rb +0 -91
- data/proto/dynamic_discovery.proto +0 -46
- data/proto/google/protobuf/compiler/plugin.proto +0 -183
- data/proto/google/protobuf/descriptor.proto +0 -911
- data/proto/rpc.proto +0 -71
- data/service_executables/.gitkeep +0 -0
- data/service_executables/VERSION +0 -1
- data/service_executables/linux/contrast-service +0 -0
- data/service_executables/mac/contrast-service +0 -0
@@ -2,7 +2,6 @@
|
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'contrast/agent/reporting/reporting_events/architecture_component'
|
5
|
-
require 'contrast/api/decorators/architecture_component'
|
6
5
|
require 'contrast/components/logger'
|
7
6
|
require 'contrast/utils/object_share'
|
8
7
|
require 'contrast/utils/timer'
|
@@ -25,25 +24,21 @@ module Contrast
|
|
25
24
|
LOCALHOST = 'localhost'
|
26
25
|
|
27
26
|
class << self
|
28
|
-
# Append the available database connection information to the message being sent to TeamServer.
|
29
|
-
# may be a Contrast::Api::Dtm::Activity or Contrast::Agent::Reporting::ApplicationUpdate.
|
30
|
-
# Both report the same
|
31
|
-
# Contrast::Api::Dtm::ArchitectureComponent, but have different names for their fields.
|
27
|
+
# Append the available database connection information to the message being sent to TeamServer.
|
32
28
|
#
|
33
|
-
# @param activity_or_update [Contrast::
|
34
|
-
# @param hash_or_str [Hash, String
|
29
|
+
# @param activity_or_update [Contrast::Agent::Reporting::ApplicationUpdate]
|
30
|
+
# @param hash_or_str [Hash, String] the database connection information
|
35
31
|
def append_db_config activity_or_update, hash_or_str = active_record_config
|
36
32
|
arr = build_from_db_config(hash_or_str)
|
37
33
|
return unless arr&.any?
|
38
34
|
|
39
|
-
arr.each do |
|
40
|
-
next unless
|
35
|
+
arr.each do |component|
|
36
|
+
next unless component
|
41
37
|
|
42
|
-
if activity_or_update.
|
43
|
-
activity_or_update.
|
38
|
+
if activity_or_update.cs__is_a?(Contrast::Agent::Reporting::ApplicationUpdate)
|
39
|
+
activity_or_update.components << component
|
44
40
|
else
|
45
|
-
|
46
|
-
activity_or_update.components << converted_comp
|
41
|
+
activity_or_update.attach_inventory(component)
|
47
42
|
end
|
48
43
|
end
|
49
44
|
rescue StandardError => e
|
@@ -74,11 +69,11 @@ module Contrast
|
|
74
69
|
# The classes we instrument in order to determine which, if any, database(s) an application connects to take
|
75
70
|
# either a Hash or a String as a parameter. We install this one patch into all of those methods, letting our
|
76
71
|
# code here, rather than at the patch level, make the determination of which path to call. We'll make that
|
77
|
-
# decision and then parse the given configuration to create a
|
78
|
-
# reporting.
|
72
|
+
# decision and then parse the given configuration to create a
|
73
|
+
# Contrast::Agent::Reporting::ArchitectureComponent for reporting.
|
79
74
|
#
|
80
75
|
# @param hash_or_str [Hash, String]
|
81
|
-
# @return [Array<Contrast::
|
76
|
+
# @return [Array<Contrast::Agent::Reporting::ArchitectureComponent>, nil]
|
82
77
|
def build_from_db_config hash_or_str
|
83
78
|
return unless hash_or_str
|
84
79
|
|
@@ -94,13 +89,13 @@ module Contrast
|
|
94
89
|
end
|
95
90
|
end
|
96
91
|
|
97
|
-
# Convert the Hash used to create a database connection into
|
98
|
-
# understandable by TeamServer.
|
92
|
+
# Convert the Hash used to create a database connection into a
|
93
|
+
# Contrast::Agent::Reporting::ArchitectureComponent understandable by TeamServer.
|
99
94
|
#
|
100
95
|
# @param hash [Hash] the information used to open a database connection
|
101
|
-
# @return [Array<Contrast::
|
96
|
+
# @return [Array<Contrast::Agent::Reporting::ArchitectureComponent>]
|
102
97
|
def build_from_db_hash hash
|
103
|
-
ac = Contrast::
|
98
|
+
ac = Contrast::Agent::Reporting::ArchitectureComponent.build_database
|
104
99
|
ac.vendor = hash[:adapter] || hash[ADAPTER] || Contrast::Utils::ObjectShare::EMPTY_STRING
|
105
100
|
ac.remote_host = host_from_hash(hash)
|
106
101
|
ac.remote_port = port_from_hash(hash)
|
@@ -131,7 +126,7 @@ module Contrast
|
|
131
126
|
# mysql+mysqlconnector://scott:tiger@localhost/foo # pragma: allowlist secret
|
132
127
|
#
|
133
128
|
# @param str [String] the DB connection string
|
134
|
-
# @return [Array<Contrast::
|
129
|
+
# @return [Array<Contrast::Agent::Reporting::ArchitectureComponent>, nil]
|
135
130
|
def build_from_db_string str
|
136
131
|
adapter, hosts, database = split_connection_str(str)
|
137
132
|
return unless adapter && hosts && database
|
@@ -140,7 +135,7 @@ module Contrast
|
|
140
135
|
hosts.split(Contrast::Utils::ObjectShare::COMMA).map do |s|
|
141
136
|
host, port = s.split(Contrast::Utils::ObjectShare::COLON)
|
142
137
|
|
143
|
-
ac = Contrast::
|
138
|
+
ac = Contrast::Agent::Reporting::ArchitectureComponent.build_database
|
144
139
|
ac.vendor = Contrast::Utils::StringUtils.force_utf8(adapter)
|
145
140
|
ac.remote_host = Contrast::Utils::StringUtils.force_utf8(host)
|
146
141
|
ac.remote_port = port.to_i
|
@@ -151,7 +146,7 @@ module Contrast
|
|
151
146
|
end
|
152
147
|
|
153
148
|
# Parse the given string used to connect to a database into its composite components, allowing for the
|
154
|
-
# generation of a Contrast::
|
149
|
+
# generation of a Contrast::Agent::Reporting::ArchitectureComponent
|
155
150
|
#
|
156
151
|
# @param str [String] the DB connection string
|
157
152
|
# @return [Array<String>, nil] the adapter, hosts, and database
|
@@ -73,12 +73,12 @@ module Contrast
|
|
73
73
|
private
|
74
74
|
|
75
75
|
# Startup the Agent as part of the initialization process:
|
76
|
-
# - start the
|
77
|
-
# - start the heartbeat thread, which
|
76
|
+
# - start the TeamServer sending thread, responsible for sending and processing messages
|
77
|
+
# - start the heartbeat thread, which handles periodic messages to TeamServer
|
78
78
|
# - start instrumenting libraries and do a 'catchup' patch for everything we didn't see get loaded
|
79
79
|
# - enable TracePoint, which handles all class loads and required instrumentation going forward
|
80
80
|
def agent_startup_routine
|
81
|
-
logger.debug_with_time('middleware: starting
|
81
|
+
logger.debug_with_time('middleware: starting reporting threads') do
|
82
82
|
Contrast::Agent.thread_watcher.ensure_running?
|
83
83
|
end
|
84
84
|
|
@@ -147,7 +147,7 @@ module Contrast
|
|
147
147
|
# which is being triggered when there is a failure within the pre-call with the agent
|
148
148
|
def pre_call_with_agent context, request_handler
|
149
149
|
with_contrast_scope do
|
150
|
-
context.
|
150
|
+
context.protect_input_analysis
|
151
151
|
request_handler.ruleset.prefilter
|
152
152
|
end
|
153
153
|
rescue StandardError => e
|
@@ -180,7 +180,6 @@ module Contrast
|
|
180
180
|
else
|
181
181
|
request_handler.ruleset.postfilter
|
182
182
|
request_handler.report_activity
|
183
|
-
request_handler.send_activity_messages # TODO: RUBY-1438 -- remove
|
184
183
|
end
|
185
184
|
end
|
186
185
|
# unsuccessful attack
|
@@ -56,6 +56,7 @@ module Contrast
|
|
56
56
|
unless Contrast::Agent::Assess.cs__object_method_prepended?(Marshal, :load, false)
|
57
57
|
apply_marshal_load_alias_patch
|
58
58
|
end
|
59
|
+
apply_array_join_prepend_patch if Contrast::Agent::Assess.cs__object_method_prepended?(Array, :join, true)
|
59
60
|
true
|
60
61
|
end
|
61
62
|
end
|
@@ -121,6 +122,11 @@ module Contrast
|
|
121
122
|
Marshal.alias_method(:cs__marshal_load, :load)
|
122
123
|
Marshal.alias_method(:load, :cs__marshal_load)
|
123
124
|
end
|
125
|
+
|
126
|
+
# Prepend Contrast::Extension::Assess::ContrastArray to pick up the ContrastArray#join method
|
127
|
+
def apply_array_join_prepend_patch
|
128
|
+
Array.prepend(Contrast::Extension::Assess::ContrastArray)
|
129
|
+
end
|
124
130
|
end
|
125
131
|
end
|
126
132
|
end
|
@@ -4,14 +4,21 @@
|
|
4
4
|
require 'contrast/agent/reporting/input_analysis/input_type'
|
5
5
|
require 'contrast/agent/reporting/input_analysis/score_level'
|
6
6
|
require 'contrast/agent/reporting/input_analysis/input_analysis'
|
7
|
+
require 'contrast/agent/protect/rule/bot_blocker'
|
8
|
+
require 'contrast/agent/protect/rule/bot_blocker/bot_blocker_input_classification'
|
9
|
+
require 'contrast/agent/protect/rule/cmdi/cmdi_input_classification'
|
10
|
+
require 'contrast/agent/protect/rule/no_sqli'
|
7
11
|
require 'contrast/agent/protect/rule/no_sqli/no_sqli_input_classification'
|
8
12
|
require 'contrast/agent/protect/rule/sqli/sqli_input_classification'
|
9
13
|
require 'contrast/agent/protect/rule/unsafe_file_upload/unsafe_file_upload_input_classification'
|
10
14
|
require 'contrast/agent/protect/rule/unsafe_file_upload'
|
15
|
+
require 'contrast/agent/protect/rule/path_traversal'
|
16
|
+
require 'contrast/agent/protect/rule/path_traversal/path_traversal_input_classification'
|
17
|
+
require 'contrast/agent/protect/rule/xss/reflected_xss_input_classification'
|
18
|
+
require 'contrast/agent/protect/rule/xss'
|
19
|
+
require 'contrast/agent/protect/rule/http_method_tampering/http_method_tampering_input_classification'
|
11
20
|
require 'contrast/components/logger'
|
12
21
|
require 'contrast/utils/object_share'
|
13
|
-
require 'contrast/agent/protect/rule/cmdi/cmdi_input_classification'
|
14
|
-
require 'contrast/agent/protect/rule/http_method_tampering/http_method_tampering_input_classification'
|
15
22
|
require 'json'
|
16
23
|
|
17
24
|
module Contrast
|
@@ -20,131 +27,143 @@ module Contrast
|
|
20
27
|
# InputAnalyzer will extract input form current request context and will analyze it.
|
21
28
|
# This will be used in for the SQLI and CMDI worth_watching_v2 implementations.
|
22
29
|
module InputAnalyzer
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
30
|
+
DISPOSITION_NAME = 'name'
|
31
|
+
DISPOSITION_FILENAME = 'filename'
|
32
|
+
DISPOSITION_KEYS = %w[Content-Disposition CONTENT_DISPOSITION].cs__freeze
|
33
|
+
|
34
|
+
class << self
|
35
|
+
include Contrast::Agent::Reporting::InputType
|
36
|
+
include Contrast::Agent::Reporting::ScoreLevel
|
37
|
+
include Contrast::Utils::ObjectShare
|
38
|
+
include Contrast::Components::Logger::InstanceMethods
|
39
|
+
|
40
|
+
PROTECT_RULES = {
|
41
|
+
sqli: {
|
42
|
+
rule_name: 'sql-injection',
|
43
|
+
classification: Contrast::Agent::Protect::Rule::SqliInputClassification
|
44
|
+
},
|
45
|
+
cmdi: {
|
46
|
+
rule_name: 'cmd-injection',
|
47
|
+
classification: Contrast::Agent::Protect::Rule::CmdiInputClassification
|
48
|
+
},
|
49
|
+
# method_tampering: {
|
50
|
+
# rule_name: 'method-tampering',
|
51
|
+
# classification: Contrast::Agent::Protect::Rule::HttpMethodTamperingInputClassification
|
52
|
+
# },
|
53
|
+
reflected_xss: {
|
54
|
+
rule_name: Contrast::Agent::Protect::Rule::Xss::NAME,
|
55
|
+
classification: Contrast::Agent::Protect::Rule::ReflectedXssInputClassification
|
56
|
+
},
|
57
|
+
bot_blocker: {
|
58
|
+
rule_name: Contrast::Agent::Protect::Rule::BotBlocker::NAME,
|
59
|
+
classification: Contrast::Agent::Protect::Rule::BotBlockerInputClassification
|
60
|
+
},
|
61
|
+
unsafe_file_upload: {
|
62
|
+
rule_name: Contrast::Agent::Protect::Rule::UnsafeFileUpload::NAME,
|
63
|
+
classification: Contrast::Agent::Protect::Rule::UnsafeFileUploadInputClassification
|
64
|
+
},
|
65
|
+
path_traversal: {
|
66
|
+
rule_name: Contrast::Agent::Protect::Rule::PathTraversal::NAME,
|
67
|
+
classification: Contrast::Agent::Protect::Rule::PathTraversalInputClassification
|
68
|
+
},
|
69
|
+
nosqli: {
|
70
|
+
rule_name: Contrast::Agent::Protect::Rule::NoSqli::NAME,
|
71
|
+
classification: Contrast::Agent::Protect::Rule::NoSqliInputClassification
|
72
|
+
}
|
73
|
+
}.cs__freeze
|
74
|
+
|
75
|
+
# This method with analyze the user input from the context of the
|
76
|
+
# current request and run each of the protect rules against all
|
77
|
+
# found input types
|
78
|
+
#
|
79
|
+
# @param request [Contrast::Agent::Request] current request context.
|
80
|
+
# @return input_analysis [Contrast::Agent::Reporting::InputAnalysis, nil]
|
81
|
+
def analyse request
|
82
|
+
return unless Contrast::PROTECT.enabled?
|
83
|
+
return if request.nil?
|
84
|
+
|
85
|
+
inputs = extract_input(request)
|
86
|
+
return unless inputs
|
87
|
+
|
88
|
+
input_analysis = Contrast::Agent::Reporting::InputAnalysis.new
|
89
|
+
input_analysis.request = request
|
90
|
+
# each rule against each input
|
91
|
+
input_classification(inputs, input_analysis)
|
92
|
+
input_analysis
|
93
|
+
end
|
94
|
+
|
95
|
+
private
|
96
|
+
|
97
|
+
# classify input by rule implementation of worth_watching_v2 for the rules supporting it.
|
98
|
+
#
|
99
|
+
# @param inputs [String, Array<String>] user input to be analysed.
|
100
|
+
# @param input_analysis [Contrast::Agent::Reporting::InputAnalysis] Here we will keep all the results
|
101
|
+
# for each protect rule.
|
102
|
+
# @return input_analysis [Contrast::Agent::Reporting::InputAnalysis, nil]
|
103
|
+
def input_classification inputs, input_analysis
|
104
|
+
# key = input type, value = user_input
|
105
|
+
inputs.each do |input_type, value|
|
106
|
+
next if value.nil? || value.empty?
|
107
|
+
|
108
|
+
PROTECT_RULES.each do |_key, rule|
|
109
|
+
protect_rule = Contrast::PROTECT.rule(rule[:rule_name])
|
110
|
+
logger.debug("Rule #{ rule[:rule_name] } not recognised in Protect rules") if protect_rule.nil?
|
111
|
+
|
112
|
+
# check if rule is enabled
|
113
|
+
next unless protect_rule&.enabled?
|
114
|
+
|
115
|
+
# method tampering doesn't take value
|
116
|
+
if rule[:rule_name] == Contrast::Agent::Protect::Rule::HttpMethodTampering::NAME
|
117
|
+
rule[:classification].send(:classify, rule[:rule_name], input_type, input_analysis)
|
118
|
+
else
|
119
|
+
rule[:classification].send(:classify, rule[:rule_name], input_type, value, input_analysis)
|
120
|
+
end
|
121
|
+
end
|
122
|
+
end
|
123
|
+
input_analysis
|
124
|
+
end
|
125
|
+
|
126
|
+
# Extract the inputs from the request context and label them with Protect
|
127
|
+
# input type tags. Each tag will contain one or more user inputs.
|
128
|
+
#
|
129
|
+
# This methods is to be expanded and modified as needed by other Protect rules
|
130
|
+
# and sub-rules for their requirements.
|
131
|
+
#
|
132
|
+
# @param request [Contrast::Agent::Request] current request context.
|
133
|
+
# @return inputs [Hash<Contrast::Agent::Protect::InputType => user_inputs>]
|
134
|
+
def extract_input request
|
135
|
+
inputs = {}
|
136
|
+
inputs[BODY] = request.body
|
137
|
+
inputs[COOKIE_NAME] = request.cookies.keys
|
138
|
+
inputs[COOKIE_VALUE] = request.cookies.values
|
139
|
+
inputs[HEADER] = request.headers
|
140
|
+
inputs[PARAMETER_NAME] = request.parameters.keys
|
141
|
+
inputs[PARAMETER_VALUE] = request.parameters.values
|
142
|
+
inputs[QUERYSTRING] = request.query_string
|
143
|
+
inputs[METHOD] = request.request_method
|
144
|
+
extract_multipart(inputs, request)
|
145
|
+
inputs.compact!
|
146
|
+
inputs
|
147
|
+
end
|
148
|
+
|
149
|
+
# Extract the filename and name of the Content Disposition Header.
|
150
|
+
#
|
151
|
+
# @param inputs [Hash<Contrast::Agent::Protect::InputType => user_inputs>]
|
152
|
+
# @param request [Contrast::Agent::Request] current request context.
|
153
|
+
def extract_multipart inputs, request
|
154
|
+
disposition = request.rack_request.env[DISPOSITION_KEYS[0]]
|
155
|
+
disposition = request.rack_request.env[DISPOSITION_KEYS[1]] if disposition.nil? || disposition.empty?
|
156
|
+
return unless disposition
|
157
|
+
|
158
|
+
pairs = {}
|
159
|
+
disposition.split(SEMICOLON).each do |elem|
|
160
|
+
new_pair = elem.strip.split(EQUALS, 2)
|
161
|
+
pairs[new_pair[0].downcase] = new_pair[1] if new_pair
|
162
|
+
end
|
163
|
+
inputs[MULTIPART_NAME] = pairs[DISPOSITION_NAME]
|
164
|
+
inputs[MULTIPART_FIELD_NAME] = pairs[DISPOSITION_FILENAME]
|
165
|
+
end
|
166
|
+
end
|
148
167
|
end
|
149
168
|
end
|
150
169
|
end
|
@@ -33,6 +33,10 @@ module Contrast
|
|
33
33
|
clazz = object.is_a?(Module) ? object : object.cs__class
|
34
34
|
class_name = clazz.cs__name
|
35
35
|
rule.infilter(Contrast::Agent::REQUEST_TRACKER.current, class_name, method, command)
|
36
|
+
# invoke cmdi sub-rules.
|
37
|
+
rule.sub_rules.each do |sub_rule|
|
38
|
+
sub_rule.infilter(Contrast::Agent::REQUEST_TRACKER.current, class_name, method, command)
|
39
|
+
end
|
36
40
|
end
|
37
41
|
|
38
42
|
protected
|
@@ -2,6 +2,7 @@
|
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'contrast/agent/protect/rule/path_traversal'
|
5
|
+
require 'contrast/agent/protect/rule/path_traversal/path_traversal_semantic_security_bypass'
|
5
6
|
require 'contrast/agent/protect/policy/rule_applicator'
|
6
7
|
require 'contrast/utils/object_share'
|
7
8
|
|
@@ -27,6 +28,9 @@ module Contrast
|
|
27
28
|
action = properties['action']
|
28
29
|
write_marker = write?(action, *args)
|
29
30
|
possible_write = write_marker && possible_write?(write_marker)
|
31
|
+
|
32
|
+
# Invoke semantic rules from here, not in a separate protect policy
|
33
|
+
invoke_semantic_rules(path, possible_write, object, method)
|
30
34
|
path_traversal_rule(path, possible_write, object, method)
|
31
35
|
|
32
36
|
# If the action was copy, we need to handle the write half of it.
|
@@ -37,6 +41,7 @@ module Contrast
|
|
37
41
|
dst = args[1]
|
38
42
|
return unless dst.is_a?(String)
|
39
43
|
|
44
|
+
invoke_semantic_rules(dst, true, object, method)
|
40
45
|
path_traversal_rule(dst, true, object, method)
|
41
46
|
end
|
42
47
|
|
@@ -75,6 +80,21 @@ module Contrast
|
|
75
80
|
logger.error('Error applying path traversal', e, module: object.cs__class.cs__name, method: method)
|
76
81
|
end
|
77
82
|
|
83
|
+
# @raise [Contrast::SecurityException] re-raises if some attack is blocked and raised from the infilter
|
84
|
+
def invoke_semantic_rules path, possible_write, object, method
|
85
|
+
return unless applies_to?(path, possible_write: possible_write)
|
86
|
+
|
87
|
+
rule.sub_rules.each do |sub_rule|
|
88
|
+
sub_rule.infilter(Contrast::Agent::REQUEST_TRACKER.current, method, path)
|
89
|
+
end
|
90
|
+
rescue Contrast::SecurityException => e
|
91
|
+
raise(e)
|
92
|
+
rescue StandardError => e
|
93
|
+
logger.error('Error applying path traversal semantic rule', e,
|
94
|
+
module: object.cs__class.cs__name,
|
95
|
+
method: method)
|
96
|
+
end
|
97
|
+
|
78
98
|
CS__SAFER_REL_PATHS = %w[public app log tmp].cs__freeze
|
79
99
|
def safer_abs_paths
|
80
100
|
@_safer_abs_paths ||= begin
|
@@ -66,7 +66,7 @@ module Contrast
|
|
66
66
|
raise(NoMethodError, 'This is abstract, override it.')
|
67
67
|
end
|
68
68
|
|
69
|
-
# The name of the rule, as expected by the Contrast
|
69
|
+
# The name of the rule, as expected by the Contrast UI.
|
70
70
|
#
|
71
71
|
# @return [String]
|
72
72
|
# @raise [NoMethodError] This is abstract method
|