contrast-agent 4.13.0 → 5.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.simplecov +2 -1
- data/Gemfile +1 -1
- data/LICENSE.txt +1 -1
- data/Rakefile +1 -1
- data/exe/contrast_service +1 -1
- data/ext/build_funchook.rb +1 -1
- data/ext/cs__assess_array/cs__assess_array.c +1 -1
- data/ext/cs__assess_array/extconf.rb +1 -1
- data/ext/cs__assess_basic_object/cs__assess_basic_object.c +1 -1
- data/ext/cs__assess_basic_object/extconf.rb +1 -1
- data/ext/cs__assess_fiber_track/cs__assess_fiber_track.c +1 -1
- data/ext/cs__assess_fiber_track/extconf.rb +1 -1
- data/ext/cs__assess_hash/cs__assess_hash.c +1 -1
- data/ext/cs__assess_hash/extconf.rb +1 -1
- data/ext/cs__assess_kernel/cs__assess_kernel.c +1 -1
- data/ext/cs__assess_kernel/extconf.rb +1 -1
- data/ext/cs__assess_marshal_module/cs__assess_marshal_module.c +1 -1
- data/ext/cs__assess_marshal_module/extconf.rb +1 -1
- data/ext/cs__assess_module/cs__assess_module.c +1 -1
- data/ext/cs__assess_module/extconf.rb +1 -1
- data/ext/cs__assess_regexp/cs__assess_regexp.c +1 -1
- data/ext/cs__assess_regexp/extconf.rb +1 -1
- data/ext/cs__assess_string/cs__assess_string.c +1 -1
- data/ext/cs__assess_string/extconf.rb +1 -1
- data/ext/cs__assess_string_interpolation26/cs__assess_string_interpolation26.c +1 -1
- data/ext/cs__assess_string_interpolation26/extconf.rb +1 -1
- data/ext/cs__assess_yield_track/cs__assess_yield_track.c +1 -1
- data/ext/cs__assess_yield_track/extconf.rb +1 -1
- data/ext/cs__common/cs__common.c +1 -1
- data/ext/cs__common/extconf.rb +1 -1
- data/ext/cs__contrast_patch/cs__contrast_patch.c +1 -1
- data/ext/cs__contrast_patch/extconf.rb +1 -1
- data/ext/cs__os_information/cs__os_information.c +1 -1
- data/ext/cs__os_information/extconf.rb +1 -1
- data/ext/extconf_common.rb +1 -1
- data/lib/contrast/agent/assess/contrast_event.rb +7 -11
- data/lib/contrast/agent/assess/contrast_object.rb +1 -1
- data/lib/contrast/agent/assess/events/event_data.rb +30 -0
- data/lib/contrast/agent/assess/events/event_factory.rb +14 -6
- data/lib/contrast/agent/assess/events/source_event.rb +22 -3
- data/lib/contrast/agent/assess/finalizers/freeze.rb +1 -1
- data/lib/contrast/agent/assess/finalizers/hash.rb +1 -1
- data/lib/contrast/agent/assess/policy/dynamic_source_factory.rb +7 -7
- data/lib/contrast/agent/assess/policy/patcher.rb +1 -35
- data/lib/contrast/agent/assess/policy/policy.rb +1 -1
- data/lib/contrast/agent/assess/policy/policy_node.rb +7 -7
- data/lib/contrast/agent/assess/policy/policy_scanner.rb +6 -1
- data/lib/contrast/agent/assess/policy/preshift.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagation_method.rb +55 -28
- data/lib/contrast/agent/assess/policy/propagation_node.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/append.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/base.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/center.rb +2 -2
- data/lib/contrast/agent/assess/policy/propagator/custom.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/database_write.rb +6 -2
- data/lib/contrast/agent/assess/policy/propagator/insert.rb +5 -2
- data/lib/contrast/agent/assess/policy/propagator/keep.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/match_data.rb +7 -3
- data/lib/contrast/agent/assess/policy/propagator/next.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/prepend.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/rack_protection.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/remove.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/replace.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/reverse.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/select.rb +3 -2
- data/lib/contrast/agent/assess/policy/propagator/splat.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/split.rb +27 -25
- data/lib/contrast/agent/assess/policy/propagator/substitution.rb +3 -157
- data/lib/contrast/agent/assess/policy/propagator/substitution_utils.rb +190 -0
- data/lib/contrast/agent/assess/policy/propagator/trim.rb +9 -4
- data/lib/contrast/agent/assess/policy/propagator.rb +1 -1
- data/lib/contrast/agent/assess/policy/source_method.rb +39 -26
- data/lib/contrast/agent/assess/policy/source_node.rb +1 -1
- data/lib/contrast/agent/assess/policy/source_validation/cross_site_validator.rb +1 -1
- data/lib/contrast/agent/assess/policy/source_validation/source_validation.rb +1 -1
- data/lib/contrast/agent/assess/policy/trigger/reflected_xss.rb +7 -2
- data/lib/contrast/agent/assess/policy/trigger/xpath.rb +1 -1
- data/lib/contrast/agent/assess/policy/trigger_method.rb +68 -18
- data/lib/contrast/agent/assess/policy/trigger_node.rb +15 -7
- 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/trigger_validation.rb +1 -1
- data/lib/contrast/agent/assess/policy/trigger_validation/xss_validator.rb +2 -2
- data/lib/contrast/agent/assess/properties.rb +1 -1
- data/lib/contrast/agent/assess/property/evented.rb +25 -12
- data/lib/contrast/agent/assess/property/tagged.rb +52 -58
- data/lib/contrast/agent/assess/property/updated.rb +1 -1
- data/lib/contrast/agent/assess/rule/provider/hardcoded_key.rb +1 -19
- data/lib/contrast/agent/assess/rule/provider/hardcoded_password.rb +1 -13
- data/lib/contrast/agent/assess/rule/provider/hardcoded_value_rule.rb +42 -60
- data/lib/contrast/agent/assess/rule/provider.rb +1 -1
- data/lib/contrast/agent/assess/rule/response/autocomplete_rule.rb +130 -0
- data/lib/contrast/agent/assess/rule/response/base_rule.rb +117 -0
- data/lib/contrast/agent/assess/tag.rb +1 -1
- data/lib/contrast/agent/assess/tracker.rb +1 -1
- data/lib/contrast/agent/assess.rb +1 -2
- data/lib/contrast/agent/at_exit_hook.rb +1 -1
- data/lib/contrast/agent/deadzone/policy/deadzone_node.rb +13 -8
- data/lib/contrast/agent/deadzone/policy/policy.rb +1 -1
- data/lib/contrast/agent/disable_reaction.rb +1 -1
- data/lib/contrast/agent/exclusion_matcher.rb +1 -1
- data/lib/contrast/agent/inventory/database_config.rb +115 -77
- data/lib/contrast/agent/inventory/dependencies.rb +1 -1
- data/lib/contrast/agent/inventory/dependency_analysis.rb +1 -1
- data/lib/contrast/agent/inventory/dependency_usage_analysis.rb +3 -3
- data/lib/contrast/agent/inventory/policy/datastores.rb +1 -1
- data/lib/contrast/agent/inventory/policy/policy.rb +1 -1
- data/lib/contrast/agent/inventory/policy/trigger_node.rb +1 -1
- data/lib/contrast/agent/inventory.rb +1 -1
- data/lib/contrast/agent/metric_telemetry_event.rb +3 -3
- data/lib/contrast/agent/middleware.rb +8 -77
- data/lib/contrast/agent/module_data.rb +1 -1
- data/lib/contrast/agent/patching/policy/after_load_patch.rb +1 -1
- data/lib/contrast/agent/patching/policy/after_load_patcher.rb +1 -1
- data/lib/contrast/agent/patching/policy/method_policy.rb +31 -104
- data/lib/contrast/agent/patching/policy/method_policy_extend.rb +113 -0
- data/lib/contrast/agent/patching/policy/module_policy.rb +1 -1
- data/lib/contrast/agent/patching/policy/patch.rb +1 -1
- data/lib/contrast/agent/patching/policy/patch_status.rb +2 -26
- data/lib/contrast/agent/patching/policy/patcher.rb +13 -13
- data/lib/contrast/agent/patching/policy/policy.rb +1 -1
- data/lib/contrast/agent/patching/policy/policy_node.rb +1 -1
- data/lib/contrast/agent/patching/policy/trigger_node.rb +1 -1
- data/lib/contrast/agent/protect/policy/applies_command_injection_rule.rb +1 -1
- data/lib/contrast/agent/protect/policy/applies_deserialization_rule.rb +1 -1
- data/lib/contrast/agent/protect/policy/applies_no_sqli_rule.rb +1 -1
- data/lib/contrast/agent/protect/policy/applies_path_traversal_rule.rb +1 -1
- data/lib/contrast/agent/protect/policy/applies_sqli_rule.rb +1 -1
- data/lib/contrast/agent/protect/policy/applies_xxe_rule.rb +1 -1
- data/lib/contrast/agent/protect/policy/policy.rb +1 -1
- data/lib/contrast/agent/protect/policy/rule_applicator.rb +1 -1
- data/lib/contrast/agent/protect/policy/trigger_node.rb +1 -1
- data/lib/contrast/agent/protect/rule/base.rb +1 -1
- data/lib/contrast/agent/protect/rule/base_service.rb +1 -1
- data/lib/contrast/agent/protect/rule/cmd_injection.rb +1 -1
- data/lib/contrast/agent/protect/rule/default_scanner.rb +1 -1
- data/lib/contrast/agent/protect/rule/deserialization.rb +1 -1
- data/lib/contrast/agent/protect/rule/http_method_tampering.rb +1 -1
- data/lib/contrast/agent/protect/rule/no_sqli/mongo_no_sql_scanner.rb +1 -1
- data/lib/contrast/agent/protect/rule/no_sqli.rb +1 -1
- data/lib/contrast/agent/protect/rule/path_traversal.rb +1 -1
- data/lib/contrast/agent/protect/rule/sql_sample_builder.rb +1 -1
- data/lib/contrast/agent/protect/rule/sqli/default_sql_scanner.rb +1 -1
- data/lib/contrast/agent/protect/rule/sqli/mysql_sql_scanner.rb +1 -1
- data/lib/contrast/agent/protect/rule/sqli/postgres_sql_scanner.rb +2 -2
- data/lib/contrast/agent/protect/rule/sqli/sqlite_sql_scanner.rb +1 -1
- data/lib/contrast/agent/protect/rule/sqli.rb +1 -1
- data/lib/contrast/agent/protect/rule/unsafe_file_upload.rb +1 -1
- data/lib/contrast/agent/protect/rule/xss.rb +1 -1
- data/lib/contrast/agent/protect/rule/xxe/entity_wrapper.rb +1 -1
- data/lib/contrast/agent/protect/rule/xxe.rb +1 -1
- data/lib/contrast/agent/protect/rule.rb +1 -1
- data/lib/contrast/agent/reaction_processor.rb +1 -1
- data/lib/contrast/agent/reporting/report.rb +27 -0
- data/lib/contrast/agent/reporting/reporter.rb +115 -0
- data/lib/contrast/agent/reporting/reporting_events/application_inventory.rb +49 -0
- data/lib/contrast/agent/reporting/reporting_events/application_update.rb +82 -0
- data/lib/contrast/agent/reporting/reporting_events/architecture_component.rb +80 -0
- data/lib/contrast/agent/reporting/reporting_events/discovered_route.rb +59 -0
- data/lib/contrast/agent/reporting/reporting_events/finding.rb +185 -0
- data/lib/contrast/agent/reporting/reporting_events/finding_event.rb +264 -0
- data/lib/contrast/agent/reporting/reporting_events/finding_event_source.rb +57 -0
- data/lib/contrast/agent/reporting/reporting_events/finding_object.rb +90 -0
- data/lib/contrast/agent/reporting/reporting_events/finding_request.rb +121 -0
- data/lib/contrast/agent/reporting/reporting_events/finding_signature.rb +105 -0
- data/lib/contrast/agent/reporting/reporting_events/finding_stack.rb +67 -0
- data/lib/contrast/agent/reporting/reporting_events/finding_taint_range.rb +58 -0
- data/lib/contrast/agent/reporting/reporting_events/library_discovery.rb +93 -0
- data/lib/contrast/agent/reporting/reporting_events/library_usage_observation.rb +50 -0
- data/lib/contrast/agent/reporting/reporting_events/observed_library_usage.rb +54 -0
- data/lib/contrast/agent/reporting/reporting_events/observed_route.rb +66 -0
- data/lib/contrast/agent/reporting/reporting_events/preflight.rb +39 -0
- data/lib/contrast/agent/reporting/reporting_events/preflight_message.rb +75 -0
- data/lib/contrast/agent/reporting/reporting_events/reporting_event.rb +47 -0
- data/lib/contrast/agent/reporting/reporting_events/route_coverage.rb +76 -0
- data/lib/contrast/agent/reporting/reporting_events/route_discovery.rb +66 -0
- data/lib/contrast/agent/reporting/reporting_events/route_discovery_observation.rb +65 -0
- data/lib/contrast/agent/reporting/reporting_events/server_activity.rb +52 -0
- data/lib/contrast/agent/reporting/reporting_events/trace_event_source.rb +30 -0
- data/lib/contrast/agent/reporting/reporting_utilities/audit.rb +137 -0
- data/lib/contrast/agent/reporting/reporting_utilities/dtm_message.rb +67 -0
- data/lib/contrast/agent/reporting/reporting_utilities/endpoints.rb +165 -0
- data/lib/contrast/agent/reporting/reporting_utilities/headers.rb +55 -0
- data/lib/contrast/agent/reporting/reporting_utilities/reporter_client.rb +86 -0
- data/lib/contrast/agent/reporting/reporting_utilities/reporter_client_utils.rb +154 -0
- data/lib/contrast/agent/reporting/reporting_utilities/reporting_storage.rb +66 -0
- data/lib/contrast/agent/reporting/reporting_utilities/response.rb +30 -0
- data/lib/contrast/agent/reporting/reporting_utilities/response_handler.rb +57 -0
- data/lib/contrast/agent/reporting/reporting_utilities/response_handler_utils.rb +196 -0
- data/lib/contrast/agent/reporting/settings/application_settings.rb +67 -0
- data/lib/contrast/agent/reporting/settings/assess.rb +45 -0
- data/lib/contrast/agent/reporting/settings/assess_server_feature.rb +136 -0
- data/lib/contrast/agent/reporting/settings/exclusions.rb +123 -0
- data/lib/contrast/agent/reporting/settings/protect.rb +89 -0
- data/lib/contrast/agent/reporting/settings/protect_server_feature.rb +243 -0
- data/lib/contrast/agent/reporting/settings/reaction.rb +30 -0
- data/lib/contrast/agent/reporting/settings/server_features.rb +78 -0
- data/lib/contrast/agent/request.rb +46 -84
- data/lib/contrast/agent/request_context.rb +20 -131
- data/lib/contrast/agent/request_context_extend.rb +163 -0
- data/lib/contrast/agent/request_handler.rb +41 -5
- data/lib/contrast/agent/response.rb +25 -88
- data/lib/contrast/agent/rule_set.rb +1 -1
- data/lib/contrast/agent/scope.rb +1 -1
- data/lib/contrast/agent/service_heartbeat.rb +1 -1
- data/lib/contrast/agent/startup_metrics_telemetry_event.rb +73 -23
- data/lib/contrast/agent/static_analysis.rb +14 -4
- data/lib/contrast/agent/telemetry.rb +16 -8
- data/lib/contrast/agent/telemetry_event.rb +9 -10
- data/lib/contrast/agent/thread.rb +1 -1
- data/lib/contrast/agent/thread_watcher.rb +32 -6
- data/lib/contrast/agent/tracepoint_hook.rb +1 -4
- data/lib/contrast/agent/version.rb +2 -2
- data/lib/contrast/agent/worker_thread.rb +1 -1
- data/lib/contrast/agent.rb +16 -1
- data/lib/contrast/api/communication/connection_status.rb +11 -8
- data/lib/contrast/api/communication/messaging_queue.rb +38 -4
- data/lib/contrast/api/communication/response_processor.rb +22 -11
- data/lib/contrast/api/communication/service_lifecycle.rb +14 -4
- data/lib/contrast/api/communication/socket.rb +7 -9
- data/lib/contrast/api/communication/socket_client.rb +33 -13
- data/lib/contrast/api/communication/speedracer.rb +38 -2
- data/lib/contrast/api/communication/tcp_socket.rb +5 -4
- data/lib/contrast/api/communication/unix_socket.rb +2 -1
- data/lib/contrast/api/communication.rb +1 -1
- data/lib/contrast/api/decorators/address.rb +1 -1
- data/lib/contrast/api/decorators/agent_startup.rb +1 -1
- data/lib/contrast/api/decorators/application_settings.rb +1 -1
- data/lib/contrast/api/decorators/application_startup.rb +1 -1
- data/lib/contrast/api/decorators/application_update.rb +1 -1
- data/lib/contrast/api/decorators/architecture_component.rb +36 -0
- data/lib/contrast/api/decorators/finding.rb +29 -0
- data/lib/contrast/api/decorators/http_request.rb +3 -2
- data/lib/contrast/api/decorators/input_analysis.rb +1 -1
- data/lib/contrast/api/decorators/instrumentation_mode.rb +1 -1
- data/lib/contrast/api/decorators/library.rb +1 -1
- data/lib/contrast/api/decorators/library_usage_update.rb +1 -1
- data/lib/contrast/api/decorators/message.rb +1 -1
- data/lib/contrast/api/decorators/rasp_rule_sample.rb +1 -1
- data/lib/contrast/api/decorators/route_coverage.rb +1 -1
- data/lib/contrast/api/decorators/server_features.rb +1 -1
- data/lib/contrast/api/decorators/trace_event.rb +1 -1
- data/lib/contrast/api/decorators/trace_event_object.rb +1 -1
- data/lib/contrast/api/decorators/trace_event_signature.rb +1 -1
- data/lib/contrast/api/decorators/trace_taint_range.rb +1 -1
- data/lib/contrast/api/decorators/trace_taint_range_tags.rb +1 -1
- data/lib/contrast/api/decorators/user_input.rb +1 -1
- data/lib/contrast/api/decorators.rb +2 -1
- data/lib/contrast/api.rb +1 -1
- data/lib/contrast/components/agent.rb +5 -24
- data/lib/contrast/components/api.rb +67 -2
- data/lib/contrast/components/app_context.rb +12 -66
- data/lib/contrast/components/app_context_extend.rb +78 -0
- data/lib/contrast/components/assess.rb +12 -8
- data/lib/contrast/components/base.rb +24 -1
- data/lib/contrast/components/config.rb +38 -23
- data/lib/contrast/components/contrast_service.rb +6 -1
- data/lib/contrast/components/heap_dump.rb +1 -1
- data/lib/contrast/components/inventory.rb +5 -1
- data/lib/contrast/components/logger.rb +1 -1
- data/lib/contrast/components/protect.rb +6 -2
- data/lib/contrast/components/sampling.rb +3 -3
- data/lib/contrast/components/scope.rb +1 -1
- data/lib/contrast/components/settings.rb +25 -12
- data/lib/contrast/config/agent_configuration.rb +2 -2
- data/lib/contrast/config/api_configuration.rb +9 -4
- data/lib/contrast/config/api_proxy_configuration.rb +14 -0
- data/lib/contrast/config/application_configuration.rb +3 -4
- data/lib/contrast/config/assess_configuration.rb +4 -4
- data/lib/contrast/config/assess_rules_configuration.rb +1 -1
- data/lib/contrast/config/base_configuration.rb +18 -29
- data/lib/contrast/config/certification_configuration.rb +15 -0
- data/lib/contrast/config/env_variables.rb +3 -10
- data/lib/contrast/config/exception_configuration.rb +1 -1
- data/lib/contrast/config/heap_dump_configuration.rb +7 -7
- data/lib/contrast/config/inventory_configuration.rb +2 -6
- data/lib/contrast/config/logger_configuration.rb +1 -1
- data/lib/contrast/config/protect_configuration.rb +1 -1
- data/lib/contrast/config/protect_rule_configuration.rb +2 -2
- data/lib/contrast/config/protect_rules_configuration.rb +1 -1
- data/lib/contrast/config/request_audit_configuration.rb +18 -0
- data/lib/contrast/config/root_configuration.rb +1 -1
- data/lib/contrast/config/ruby_configuration.rb +10 -7
- data/lib/contrast/config/sampling_configuration.rb +1 -1
- data/lib/contrast/config/server_configuration.rb +1 -1
- data/lib/contrast/config/service_configuration.rb +2 -3
- data/lib/contrast/config.rb +1 -2
- data/lib/contrast/configuration.rb +2 -3
- data/lib/contrast/extension/assess/array.rb +9 -9
- data/lib/contrast/extension/assess/erb.rb +15 -5
- data/lib/contrast/extension/assess/eval_trigger.rb +3 -1
- data/lib/contrast/extension/assess/exec_trigger.rb +2 -1
- data/lib/contrast/extension/assess/fiber.rb +6 -3
- data/lib/contrast/extension/assess/hash.rb +1 -1
- data/lib/contrast/extension/assess/kernel.rb +8 -3
- data/lib/contrast/extension/assess/marshal.rb +6 -2
- data/lib/contrast/extension/assess/regexp.rb +8 -2
- data/lib/contrast/extension/assess/string.rb +8 -2
- data/lib/contrast/extension/assess.rb +1 -1
- data/lib/contrast/extension/delegator.rb +1 -1
- data/lib/contrast/extension/extension.rb +2 -4
- data/lib/contrast/extension/inventory.rb +1 -1
- data/lib/contrast/extension/kernel.rb +1 -1
- data/lib/contrast/extension/module.rb +1 -1
- data/lib/contrast/extension/protect/psych.rb +1 -1
- data/lib/contrast/extension/protect.rb +1 -1
- data/lib/contrast/extension/thread.rb +32 -13
- data/lib/contrast/framework/base_support.rb +5 -1
- data/lib/contrast/framework/grape/support.rb +25 -1
- data/lib/contrast/framework/manager.rb +33 -36
- data/lib/contrast/framework/manager_extend.rb +50 -0
- data/lib/contrast/framework/platform_version.rb +1 -1
- data/lib/contrast/framework/rack/patch/session_cookie.rb +1 -1
- data/lib/contrast/framework/rack/patch/support.rb +1 -1
- data/lib/contrast/framework/rack/support.rb +1 -1
- data/lib/contrast/framework/rails/patch/action_controller_live_buffer.rb +1 -1
- data/lib/contrast/framework/rails/patch/assess_configuration.rb +1 -1
- data/lib/contrast/framework/rails/patch/rails_application_configuration.rb +1 -1
- data/lib/contrast/framework/rails/patch/support.rb +1 -1
- data/lib/contrast/framework/rails/railtie.rb +2 -2
- data/lib/contrast/framework/rails/support.rb +46 -2
- data/lib/contrast/framework/sinatra/support.rb +26 -3
- data/lib/contrast/funchook/funchook.rb +21 -18
- data/lib/contrast/logger/application.rb +1 -1
- data/lib/contrast/logger/format.rb +1 -1
- data/lib/contrast/logger/log.rb +9 -104
- data/lib/contrast/logger/request.rb +1 -1
- data/lib/contrast/logger/time.rb +1 -1
- data/lib/contrast/security_exception.rb +1 -1
- data/lib/contrast/tasks/config.rb +1 -1
- data/lib/contrast/tasks/service.rb +1 -1
- data/lib/contrast/utils/assess/propagation_method_utils.rb +1 -1
- data/lib/contrast/utils/assess/property/tagged_utils.rb +24 -1
- data/lib/contrast/utils/assess/sampling_util.rb +4 -4
- data/lib/contrast/utils/assess/source_method_utils.rb +1 -1
- data/lib/contrast/utils/assess/split_utils.rb +23 -0
- data/lib/contrast/utils/assess/tracking_util.rb +21 -16
- data/lib/contrast/utils/assess/trigger_method_utils.rb +4 -3
- data/lib/contrast/utils/class_util.rb +19 -15
- data/lib/contrast/utils/duck_utils.rb +1 -1
- data/lib/contrast/utils/env_configuration_item.rb +2 -2
- data/lib/contrast/utils/exclude_key.rb +1 -1
- data/lib/contrast/utils/findings.rb +65 -0
- data/lib/contrast/utils/hash_digest.rb +46 -79
- data/lib/contrast/utils/hash_digest_extend.rb +129 -0
- data/lib/contrast/utils/head_dump_utils_extend.rb +74 -0
- data/lib/contrast/utils/heap_dump_util.rb +3 -66
- data/lib/contrast/utils/invalid_configuration_util.rb +32 -2
- data/lib/contrast/utils/io_util.rb +2 -2
- data/lib/contrast/utils/job_servers_running.rb +1 -1
- data/lib/contrast/utils/log_utils.rb +108 -0
- data/lib/contrast/utils/lru_cache.rb +1 -1
- data/lib/contrast/utils/metrics_hash.rb +2 -2
- data/lib/contrast/utils/middleware_utils.rb +87 -0
- data/lib/contrast/utils/net_http_base.rb +165 -0
- data/lib/contrast/utils/object_share.rb +2 -6
- data/lib/contrast/utils/os.rb +9 -5
- data/lib/contrast/utils/patching/policy/patch_utils.rb +63 -99
- data/lib/contrast/utils/patching/policy/patcher_utils.rb +1 -1
- data/lib/contrast/utils/preflight_util.rb +1 -1
- data/lib/contrast/utils/request_utils.rb +96 -0
- data/lib/contrast/utils/resource_loader.rb +1 -1
- data/lib/contrast/utils/response_utils.rb +97 -0
- data/lib/contrast/utils/sha256_builder.rb +1 -1
- data/lib/contrast/utils/stack_trace_utils.rb +1 -1
- data/lib/contrast/utils/string_utils.rb +69 -67
- data/lib/contrast/utils/tag_util.rb +11 -10
- data/lib/contrast/utils/telemetry.rb +11 -10
- data/lib/contrast/utils/telemetry_client.rb +90 -0
- data/lib/contrast/utils/telemetry_identifier.rb +18 -25
- data/lib/contrast/utils/thread_tracker.rb +1 -1
- data/lib/contrast/utils/timer.rb +1 -1
- data/lib/contrast-agent.rb +1 -1
- data/lib/contrast.rb +1 -1
- data/ruby-agent.gemspec +9 -10
- metadata +102 -49
- data/ext/cs__assess_active_record_named/cs__active_record_named.c +0 -46
- data/ext/cs__assess_active_record_named/cs__active_record_named.h +0 -11
- data/ext/cs__assess_active_record_named/extconf.rb +0 -5
- data/lib/contrast/agent/assess/policy/rewriter_patch.rb +0 -95
- data/lib/contrast/agent/class_reopener.rb +0 -258
- data/lib/contrast/agent/rewriter.rb +0 -259
- data/lib/contrast/config/default_value.rb +0 -17
- data/lib/contrast/framework/rails/rewrite/action_controller_railties_helper_inherited.rb +0 -37
- data/lib/contrast/framework/rails/rewrite/active_record_attribute_methods_read.rb +0 -41
- data/lib/contrast/framework/rails/rewrite/active_record_named.rb +0 -75
- data/lib/contrast/framework/rails/rewrite/active_record_time_zone_inherited.rb +0 -35
- data/lib/contrast/utils/requests_client.rb +0 -150
- data/lib/contrast/utils/ruby_ast_rewriter.rb +0 -82
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'contrast/api/dtm.pb'
|
@@ -10,7 +10,7 @@ module Contrast
|
|
10
10
|
module Framework
|
11
11
|
module Rails
|
12
12
|
# Used when Rails is present to define framework specific behavior
|
13
|
-
class Support
|
13
|
+
class Support # rubocop:disable Metrics/ClassLength
|
14
14
|
extend Contrast::Framework::BaseSupport
|
15
15
|
extend Contrast::Framework::Rails::Patch::Support
|
16
16
|
include Contrast::Components::Logger::InstanceMethods
|
@@ -78,6 +78,38 @@ module Contrast
|
|
78
78
|
nil
|
79
79
|
end
|
80
80
|
|
81
|
+
# Find the current route, based on the provided Request wrapper
|
82
|
+
#
|
83
|
+
# @param request[Contrast::Agent::Request]
|
84
|
+
# @return [Contrast::Agent::Reporting::RouteCoverage, nil] a Dtm describing the route
|
85
|
+
# matched to the request if a match was found.
|
86
|
+
def current_route_coverage request
|
87
|
+
return unless ::Rails.cs__respond_to?(:application)
|
88
|
+
|
89
|
+
# ActionDispatch::Journey::Path::Pattern::MatchData, Hash, ActionDispatch::Journey::Route, Array<String>
|
90
|
+
match, _params, route, path = get_full_route(request.rack_request)
|
91
|
+
unless route
|
92
|
+
logger.warn('Unable to determine the current route of this request')
|
93
|
+
return
|
94
|
+
end
|
95
|
+
|
96
|
+
original_url = request.rack_request.path_info
|
97
|
+
mounted_app = route&.app&.app
|
98
|
+
# Route is either the final rails route, or a router that points to a Sinatra controller.
|
99
|
+
if mounted_app && Contrast::Framework::Sinatra::Support.sinatra_controller?(mounted_app)
|
100
|
+
return mounted_new_sinatra_route(request, match, path, route, original_url)
|
101
|
+
end
|
102
|
+
if mounted_app && Contrast::Framework::Grape::Support.grape_controller?(mounted_app)
|
103
|
+
return mounted_new_grape_route(request, match, path, route, original_url)
|
104
|
+
end
|
105
|
+
|
106
|
+
new_route_coverage = Contrast::Agent::Reporting::RouteCoverage.new
|
107
|
+
new_route_coverage.attach_rails_data route, original_url
|
108
|
+
rescue StandardError => e
|
109
|
+
logger.warn('Unable to determine the current route of this request', e)
|
110
|
+
nil
|
111
|
+
end
|
112
|
+
|
81
113
|
# Copy a request for modification.
|
82
114
|
#
|
83
115
|
# @param env [::ActionDispatch::Request] original env.
|
@@ -155,6 +187,12 @@ module Contrast
|
|
155
187
|
Contrast::Framework::Sinatra::Support.current_route(new_req, route.app.app, original_url)
|
156
188
|
end
|
157
189
|
|
190
|
+
# @return [Contrast::Agent::Reporting::RouteCoverage, nil]
|
191
|
+
def mounted_new_sinatra_route request, match, path, route, original_url
|
192
|
+
new_req = unmounted_route(request, match, path)
|
193
|
+
Contrast::Framework::Sinatra::Support.current_route_coverage(new_req, route.app.app, original_url)
|
194
|
+
end
|
195
|
+
|
158
196
|
# @param request[Contrast::Agent::Request]
|
159
197
|
# @param match [ActionDispatch::Journey::Path::Pattern::MatchData]
|
160
198
|
# @param path [Array<String>] the path of this request, built out from each nested
|
@@ -167,6 +205,12 @@ module Contrast
|
|
167
205
|
Contrast::Framework::Grape::Support.current_route(new_req, route.app.app, original_url)
|
168
206
|
end
|
169
207
|
|
208
|
+
# @return [Contrast::Agent::Reporting::RouteCoverage, nil]
|
209
|
+
def mounted_new_grape_route request, match, path, route, original_url
|
210
|
+
new_req = unmounted_route(request, match, path)
|
211
|
+
Contrast::Framework::Grape::Support.current_route_coverage(new_req, route.app.app, original_url)
|
212
|
+
end
|
213
|
+
|
170
214
|
# Create a request copied from current request, but with the base path removed from path_info, as that's
|
171
215
|
# the mount.
|
172
216
|
#
|
@@ -1,7 +1,8 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'contrast/framework/base_support'
|
5
|
+
require 'contrast/agent/reporting/report'
|
5
6
|
|
6
7
|
module Contrast
|
7
8
|
module Framework
|
@@ -82,6 +83,27 @@ module Contrast
|
|
82
83
|
Contrast::Api::Dtm::RouteCoverage.from_sinatra_route(final_controller, method, route_pattern, full_route)
|
83
84
|
end
|
84
85
|
|
86
|
+
# Given the current request - return a RouteCoverage object
|
87
|
+
|
88
|
+
# @param request [Contrast::Agent::Request] a contrast tracked request.
|
89
|
+
# @param controller [::Sinatra::Base] optionally use this controller instead of global ::Sinatra::Base.
|
90
|
+
# @return [Contrast::Agent::Reporting::RouteCoverage, nil] a Dtm describing the route
|
91
|
+
# matched to the request if a match was found.
|
92
|
+
def current_route_coverage request, controller = ::Sinatra::Base, full_route = nil
|
93
|
+
return unless sinatra_controller?(controller)
|
94
|
+
|
95
|
+
method = request.env[::Rack::REQUEST_METHOD] # GET, PUT, POST, etc...
|
96
|
+
|
97
|
+
# Find route match--checking superclasses if necessary.
|
98
|
+
final_controller, route_pattern = _route_recurse(controller, method, _cleaned_route(request))
|
99
|
+
return unless final_controller
|
100
|
+
|
101
|
+
full_route ||= request.env[::Rack::PATH_INFO]
|
102
|
+
|
103
|
+
new_route_coverage = Contrast::Agent::Reporting::RouteCoverage.new
|
104
|
+
new_route_coverage.attach_rack_based_data final_controller, method, route_pattern, full_route
|
105
|
+
end
|
106
|
+
|
85
107
|
# Search object space for sinatra controllers--any class that subclasses ::Sinatra::Base.
|
86
108
|
#
|
87
109
|
# @return [Array<::Sinatra::Base>] sinatra controlelrs
|
@@ -100,13 +122,14 @@ module Contrast
|
|
100
122
|
#
|
101
123
|
# @param controller [Sinatra::Base, #routes] a Sinatra application.
|
102
124
|
# @param method [::Rack::REQUEST_METHOD] GET, POST, PUT, etc...
|
103
|
-
# @param
|
125
|
+
# @param route [String] the relative route passed from Rack.
|
104
126
|
# @return [Array[Sinatra::Base, Mustermann::Sinatra], nil] Either the controller that
|
105
127
|
# will handle the route along with the route pattern or nil if no match.
|
106
128
|
def _route_recurse controller, method, route
|
107
129
|
return if controller.nil? || controller.cs__class == NilClass
|
108
130
|
|
109
|
-
route_patterns = controller.routes.fetch(method) { [] }.
|
131
|
+
route_patterns = controller.routes.fetch(method) { [] }.
|
132
|
+
map(&:first)
|
110
133
|
route_pattern = route_patterns&.find do |matcher|
|
111
134
|
matcher.params(route) # ::Mustermann::Sinatra match.
|
112
135
|
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'contrast/components/logger'
|
@@ -17,26 +17,29 @@ module Funchook
|
|
17
17
|
|
18
18
|
AGENT_ROOT = File.join(__dir__, '..', '..', '..')
|
19
19
|
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
20
|
+
class << self
|
21
|
+
def resolve_path!
|
22
|
+
actual_path_segments = SEARCH_DIRS.product(ACCEPTABLE_FILES).find do |potential_funchook_path|
|
23
|
+
load_path = absolute_path(potential_funchook_path)
|
24
|
+
File.exist?(load_path)
|
25
|
+
end
|
26
|
+
|
27
|
+
if actual_path_segments.nil?
|
28
|
+
logger.warn('Unable to find funchook')
|
29
|
+
else
|
30
|
+
@path = absolute_path(actual_path_segments)
|
31
|
+
logger.info('Funchook found', path: @path)
|
32
|
+
end
|
33
|
+
@path
|
24
34
|
end
|
25
35
|
|
26
|
-
|
27
|
-
|
28
|
-
else
|
29
|
-
@path = absolute_path(actual_path_segments)
|
30
|
-
logger.info('Funchook found', path: @path)
|
36
|
+
def absolute_path path_array
|
37
|
+
File.absolute_path(File.join(AGENT_ROOT, *path_array))
|
31
38
|
end
|
32
|
-
@path
|
33
|
-
end
|
34
|
-
|
35
|
-
def self.absolute_path path_array
|
36
|
-
File.absolute_path(File.join(AGENT_ROOT, *path_array))
|
37
|
-
end
|
38
39
|
|
39
|
-
|
40
|
-
|
40
|
+
def available?
|
41
|
+
@_available = !!resolve_path! if @_available.nil?
|
42
|
+
@_available
|
43
|
+
end
|
41
44
|
end
|
42
45
|
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'contrast/utils/exclude_key'
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'ougai'
|
data/lib/contrast/logger/log.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'logger'
|
@@ -11,6 +11,7 @@ require 'contrast/logger/format'
|
|
11
11
|
require 'contrast/logger/request'
|
12
12
|
require 'contrast/logger/time'
|
13
13
|
require 'contrast/components/config'
|
14
|
+
require 'contrast/utils/log_utils'
|
14
15
|
|
15
16
|
module Contrast
|
16
17
|
# This module allows us to dynamically weave timing into our code, so that only when the time is actually needed do
|
@@ -26,9 +27,9 @@ module Contrast
|
|
26
27
|
# Add a method to the list of methods to be trace timed if logger set to TRACE. Enables trace timing after if
|
27
28
|
# logger set to TRACE.
|
28
29
|
#
|
29
|
-
# @
|
30
|
-
# @
|
31
|
-
# @
|
30
|
+
# @param: clazz [Class] the class of the method to time.
|
31
|
+
# @param: method [Symbol] the method to time.
|
32
|
+
# @param: method [String] optional custom logging message.
|
32
33
|
def add_method_to_trace_timing clazz, method, msg = nil
|
33
34
|
methods_to_time.append(METHOD_INFO.new(clazz, method, msg, false))
|
34
35
|
enable_trace_timing if logger.level == ::Ougai::Logging::TRACE
|
@@ -37,9 +38,9 @@ module Contrast
|
|
37
38
|
# Add a method to the list of methods to be trace timed if logger set to TRACE. Enables trace timing after if
|
38
39
|
# logger set to TRACE.
|
39
40
|
#
|
40
|
-
# @
|
41
|
-
# @
|
42
|
-
def trace_time_class_method meth_spec, class_method
|
41
|
+
# @param: meth_spec [METHOD_INFO] specs about the method to be timed.
|
42
|
+
# @param: class_method [Boolean] whether this is or isn't a class/module method.
|
43
|
+
def trace_time_class_method meth_spec, class_method # rubocop:disable Metrics/AbcSize
|
43
44
|
untimed_func_symbol = "untimed_#{ meth_spec.method_name }".to_sym
|
44
45
|
send_to = class_method ? meth_spec.clazz.cs__singleton_class : meth_spec.clazz
|
45
46
|
meth_spec.clazz.class_eval do
|
@@ -105,12 +106,7 @@ module Contrast
|
|
105
106
|
class Log
|
106
107
|
include Singleton
|
107
108
|
include ::Contrast::TraceTiming
|
108
|
-
|
109
|
-
DEFAULT_NAME = 'contrast.log'
|
110
|
-
DEFAULT_LEVEL = ::Ougai::Logging::Severity::INFO
|
111
|
-
VALID_LEVELS = ::Ougai::Logging::Severity::SEV_LABEL
|
112
|
-
STDOUT_STR = 'STDOUT'
|
113
|
-
STDERR_STR = 'STDERR'
|
109
|
+
include Contrast::Utils::LogUtils
|
114
110
|
|
115
111
|
attr_reader :previous_path, :previous_level
|
116
112
|
|
@@ -167,97 +163,6 @@ module Contrast
|
|
167
163
|
dir_name = File.dirname(File.absolute_path(path))
|
168
164
|
File.writable?(dir_name)
|
169
165
|
end
|
170
|
-
|
171
|
-
private
|
172
|
-
|
173
|
-
def build path: STDOUT_STR, level_const: DEFAULT_LEVEL
|
174
|
-
logger = case path
|
175
|
-
when STDOUT_STR, STDERR_STR
|
176
|
-
::Ougai::Logger.new(Object.cs__const_get(path))
|
177
|
-
else
|
178
|
-
::Ougai::Logger.new(path)
|
179
|
-
end
|
180
|
-
add_contrast_loggers(logger)
|
181
|
-
logger.progname = 'Contrast Agent'
|
182
|
-
logger.level = level_const
|
183
|
-
logger.formatter = Contrast::Logger::Format.new
|
184
|
-
logger.formatter.datetime_format = '%Y-%m-%dT%H:%M:%S.%L%z'
|
185
|
-
logger
|
186
|
-
end
|
187
|
-
|
188
|
-
def add_contrast_loggers logger
|
189
|
-
logger.extend(Contrast::Logger::Application)
|
190
|
-
logger.extend(Contrast::Logger::Request)
|
191
|
-
logger.extend(Contrast::Logger::Time)
|
192
|
-
end
|
193
|
-
|
194
|
-
# Determine the valid path to which to log, given the precedence of config > settings > default.
|
195
|
-
#
|
196
|
-
# @param log_file [String, nil] the file to which to log as provided by the settings retrieved from the
|
197
|
-
# TeamServer.
|
198
|
-
# @return [String] the path to which to log or STDOUT / STDERR if one of those values provided.
|
199
|
-
def find_valid_path log_file
|
200
|
-
config = ::Contrast::CONFIG.root.agent.logger
|
201
|
-
config_path = config&.path&.length.to_i.positive? ? config.path : nil
|
202
|
-
valid_path(config_path || log_file)
|
203
|
-
end
|
204
|
-
|
205
|
-
def valid_path path
|
206
|
-
path = path.nil? ? Contrast::Utils::ObjectShare::EMPTY_STRING : path
|
207
|
-
return path if path == STDOUT_STR
|
208
|
-
return path if path == STDERR_STR
|
209
|
-
|
210
|
-
path = DEFAULT_NAME if path.empty?
|
211
|
-
if write_permission?(path)
|
212
|
-
path
|
213
|
-
elsif write_permission?(DEFAULT_NAME)
|
214
|
-
# Log once when the path is invalid. We'll change to this path, so no
|
215
|
-
# need to log again.
|
216
|
-
if previous_path != DEFAULT_NAME
|
217
|
-
puts "[!] Unable to write to '#{ path }'. Writing to default log '#{ DEFAULT_NAME }' instead."
|
218
|
-
end
|
219
|
-
DEFAULT_NAME
|
220
|
-
else
|
221
|
-
# Log once when the path is invalid. We'll change to this path, so no
|
222
|
-
# need to log again.
|
223
|
-
puts "[!] Unable to write to '#{ path }'. Writing to standard out instead." if previous_path != STDOUT_STR
|
224
|
-
STDOUT_STR
|
225
|
-
end
|
226
|
-
end
|
227
|
-
|
228
|
-
# Determine the valid level to which to log, given the precedence of config > settings > default.
|
229
|
-
#
|
230
|
-
# @param log_level [String, nil] the level at which to log as provided by the settings retrieved from the
|
231
|
-
# TeamServer.
|
232
|
-
# @return [::Ougai::Logging::Severity] the level at which to log
|
233
|
-
def find_valid_level log_level
|
234
|
-
config = ::Contrast::CONFIG.root.agent.logger
|
235
|
-
config_level = config&.level&.length&.positive? ? config.level : nil
|
236
|
-
|
237
|
-
valid_level(config_level || log_level)
|
238
|
-
end
|
239
|
-
|
240
|
-
def valid_level level
|
241
|
-
level ||= DEFAULT_LEVEL
|
242
|
-
level = level.upcase
|
243
|
-
if VALID_LEVELS.include?(level)
|
244
|
-
Object.cs__const_get("::Ougai::Logging::Severity::#{ level }")
|
245
|
-
else
|
246
|
-
DEFAULT_LEVEL
|
247
|
-
end
|
248
|
-
rescue StandardError
|
249
|
-
DEFAULT_LEVEL
|
250
|
-
end
|
251
|
-
|
252
|
-
# Log that the Agent log has changed and include some default information at the start of the log.
|
253
|
-
def log_update
|
254
|
-
logger.debug('Initialized new contrast agent logger')
|
255
|
-
logger.debug_with_time('middleware: log environment') do
|
256
|
-
logger.application_environment
|
257
|
-
logger.application_configuration
|
258
|
-
logger.application_libraries
|
259
|
-
end
|
260
|
-
end
|
261
166
|
end
|
262
167
|
end
|
263
168
|
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'contrast/utils/timer'
|
data/lib/contrast/logger/time.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
module Contrast
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
module Contrast
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'yaml'
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'contrast/utils/os'
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
module Contrast
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
module Contrast
|
@@ -9,6 +9,29 @@ module Contrast
|
|
9
9
|
# This module includes simple methods for the tags like
|
10
10
|
# adding tags, getting tags, deleting tags and similar
|
11
11
|
module TaggedUtils
|
12
|
+
# Is the given tag present?
|
13
|
+
# Used in testing, so found by `be_tagged`, if you're grepping for it
|
14
|
+
#
|
15
|
+
# @param label [Symbol] the tag to check for
|
16
|
+
# @return [Boolean]
|
17
|
+
def tagged? label
|
18
|
+
tracked? && tags.key?(label)
|
19
|
+
end
|
20
|
+
|
21
|
+
# Similar to #tracked?, but limited to a given range.
|
22
|
+
#
|
23
|
+
# @param start [Integer] the inclusive start index to check.
|
24
|
+
# @param finish [Integer] the exclusive end index to check.
|
25
|
+
# @return [Boolean]
|
26
|
+
def any_tags_between? start, finish
|
27
|
+
return false unless tracked?
|
28
|
+
|
29
|
+
tags.each_value do |tag_array|
|
30
|
+
return true if tag_array.any? { |tag| tag.overlaps?(start, finish) }
|
31
|
+
end
|
32
|
+
false
|
33
|
+
end
|
34
|
+
|
12
35
|
# Given a tag name and range object, add a new tag to this
|
13
36
|
# collection. If the given range touches an existing tag,
|
14
37
|
# we'll combine the two, adjusting the existing one and
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'singleton'
|
@@ -29,13 +29,13 @@ module Contrast
|
|
29
29
|
end
|
30
30
|
|
31
31
|
def sample? request
|
32
|
-
history = request_history(request)
|
33
|
-
history.hit
|
34
|
-
|
35
32
|
# if sampling isn't enabled, we record all requests and take a
|
36
33
|
# default amount of responses
|
37
34
|
return [true, true] unless @enabled
|
38
35
|
|
36
|
+
history = request_history(request)
|
37
|
+
history.hit
|
38
|
+
|
39
39
|
# if we've exceeded this sample window, reset it
|
40
40
|
if history.elapsed >= @window_ms
|
41
41
|
history.reset_window
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
module Contrast
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
module Contrast
|
5
|
+
module Utils
|
6
|
+
module Assess
|
7
|
+
# This module extends the Split class which is specifically for String#split & String#grapheme_clusters
|
8
|
+
# propagation it propagates tag ranges from a string to elements within an untracked array
|
9
|
+
module SplitUtils
|
10
|
+
private
|
11
|
+
|
12
|
+
# Quick hook to the String#split propagation node in our Assess policy
|
13
|
+
#
|
14
|
+
# @return [Contrast::Agent::Assess::Policy::PropagationNode] String#split node
|
15
|
+
def split_node
|
16
|
+
@_split_node ||= Contrast::Agent::Assess::Policy::Policy.instance.propagators.find do |node|
|
17
|
+
node.class_name == 'String' && node.method_name == :split && node.instance_method?
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'contrast/agent/assess/tracker'
|
@@ -50,14 +50,9 @@ module Contrast
|
|
50
50
|
|
51
51
|
idx += 1
|
52
52
|
if Contrast::Utils::DuckUtils.iterable_hash?(obj)
|
53
|
-
obj
|
54
|
-
return true if _tracked?(k, idx) || _tracked?(v, idx)
|
55
|
-
end
|
56
|
-
false
|
53
|
+
handle_hash obj, idx
|
57
54
|
elsif Contrast::Utils::DuckUtils.iterable_enumerable?(obj)
|
58
|
-
obj
|
59
|
-
_tracked?(ele, idx) unless obj == ele
|
60
|
-
end
|
55
|
+
handle_enumerable obj, idx
|
61
56
|
else
|
62
57
|
Contrast::Agent::Assess::Tracker.tracked?(obj)
|
63
58
|
end
|
@@ -84,15 +79,9 @@ module Contrast
|
|
84
79
|
|
85
80
|
idx += 1
|
86
81
|
if Contrast::Utils::DuckUtils.iterable_hash?(obj)
|
87
|
-
obj
|
88
|
-
return true if _trackable?(k, idx)
|
89
|
-
return true if _trackable?(v, idx)
|
90
|
-
end
|
91
|
-
false
|
82
|
+
handle_hash obj, idx
|
92
83
|
elsif Contrast::Utils::DuckUtils.iterable_enumerable?(obj)
|
93
|
-
obj
|
94
|
-
_trackable?(ele, idx) unless obj == ele
|
95
|
-
end
|
84
|
+
handle_enumerable obj, idx
|
96
85
|
else
|
97
86
|
Contrast::Agent::Assess::Tracker.trackable?(obj)
|
98
87
|
end
|
@@ -103,6 +92,22 @@ module Contrast
|
|
103
92
|
logger.warn('Failed to determine trackable', e, module: obj.cs__class)
|
104
93
|
false
|
105
94
|
end
|
95
|
+
|
96
|
+
def handle_hash obj, idx
|
97
|
+
caller_method = caller(1..1).first[/`.*'/][1..-2].to_sym
|
98
|
+
obj.each_pair do |k, v|
|
99
|
+
return true if send(caller_method, k, idx)
|
100
|
+
return true if send(caller_method, v, idx)
|
101
|
+
end
|
102
|
+
false
|
103
|
+
end
|
104
|
+
|
105
|
+
def handle_enumerable obj, idx
|
106
|
+
caller_method = caller(1..1).first[/`.*'/][1..-2].to_sym
|
107
|
+
obj.any? do |ele|
|
108
|
+
send(caller_method, ele, idx) unless obj == ele
|
109
|
+
end
|
110
|
+
end
|
106
111
|
end
|
107
112
|
end
|
108
113
|
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
module Contrast
|
@@ -19,12 +19,13 @@ module Contrast
|
|
19
19
|
|
20
20
|
# Find the request for this finding. This assumes, for now, that if there is an active request, then that
|
21
21
|
# is the request to report. Otherwise, we'll use the first request found in the events of the
|
22
|
-
# source_object.
|
22
|
+
# source_object if the non request tracking flag is set.
|
23
23
|
#
|
24
24
|
# @param source [Object,nil] some Object used as the source of a trigger event
|
25
25
|
# @return [Contrast::Agent::Request,nil] the request from which the dataflow on the request originated.
|
26
26
|
def find_request source
|
27
27
|
return Contrast::Agent::REQUEST_TRACKER.current.request if Contrast::Agent::REQUEST_TRACKER.current
|
28
|
+
return unless ::Contrast::ASSESS.non_request_tracking?
|
28
29
|
return unless (properties = Contrast::Agent::Assess::Tracker.properties(source))
|
29
30
|
|
30
31
|
find_event_request(properties.event)
|
@@ -103,7 +104,7 @@ module Contrast
|
|
103
104
|
# @param object [Object] the Object on which the method was invoked
|
104
105
|
# @param ret [Object] the Return of the invoked method
|
105
106
|
# @param args [Array<Object>] the Arguments with which the method was invoked
|
106
|
-
def apply_dataflow_rule trigger_node, source, object, ret, *args
|
107
|
+
def apply_dataflow_rule trigger_node, source, object, ret, *args # rubocop:disable Metrics/PerceivedComplexity
|
107
108
|
return unless source
|
108
109
|
|
109
110
|
if Contrast::Agent::Assess::Tracker.trackable?(source)
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
require 'contrast/extension/module'
|
@@ -54,7 +54,7 @@ module Contrast
|
|
54
54
|
# Once we move to 2.7+, we can combine the caches using ID b/c the memory location stops being the id
|
55
55
|
#
|
56
56
|
# @param object [Object, nil] the entity to convert to a String
|
57
|
-
# @return [String] the human readable form of the String, as defined by
|
57
|
+
# @return [String, Object] the human readable form of the String, as defined by
|
58
58
|
# https://bitbucket.org/contrastsecurity/assess-specifications/src/master/vulnerability/capture-snapshot.md
|
59
59
|
def to_contrast_string object
|
60
60
|
# Only treat object like a string if it actually is a string+ some subclasses of String override string
|
@@ -66,19 +66,23 @@ module Contrast
|
|
66
66
|
else
|
67
67
|
return @lru_cache[object.__id__] if @lru_cache.key? object.__id__
|
68
68
|
|
69
|
-
@lru_cache[object.__id__] =
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
69
|
+
@lru_cache[object.__id__] = convert_object object
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
73
|
+
def convert_object object
|
74
|
+
if object.nil?
|
75
|
+
Contrast::Utils::ObjectShare::NIL_STRING
|
76
|
+
elsif object.cs__is_a?(Symbol)
|
77
|
+
":#{ object }"
|
78
|
+
elsif object.cs__is_a?(Module) || object.cs__is_a?(Class)
|
79
|
+
"#{ object.cs__name }@#{ object.__id__ }"
|
80
|
+
elsif object.cs__is_a?(Regexp)
|
81
|
+
object.source
|
82
|
+
elsif use_to_s?(object)
|
83
|
+
object.to_s
|
84
|
+
else
|
85
|
+
"#{ object.cs__class.cs__name }@#{ object.__id__ }"
|
82
86
|
end
|
83
87
|
end
|
84
88
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
module Contrast
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (c)
|
1
|
+
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
module Contrast
|
@@ -39,7 +39,7 @@ module Contrast
|
|
39
39
|
def self.resolve_corrected_path path
|
40
40
|
tmp_path = path.dup
|
41
41
|
start_match = START_UNDERSCORE.match(tmp_path)
|
42
|
-
tmp_path = tmp_path[start_match.offset(0).last
|
42
|
+
tmp_path = tmp_path[start_match.offset(0).last..] if start_match
|
43
43
|
|
44
44
|
tmp_path.gsub!(REPEATING_UNDERSCORE, '__')
|
45
45
|
|