contrast-agent 4.14.1 → 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 +1 -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 +2 -2
- 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 +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 +1 -1
- 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 -5
- 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 +37 -24
- data/lib/contrast/agent/assess/policy/trigger_node.rb +1 -1
- 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 +1 -1
- 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 +1 -1
- 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 +7 -59
- 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 +1 -1
- data/lib/contrast/agent/middleware.rb +3 -2
- 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 +28 -15
- data/lib/contrast/agent/patching/policy/method_policy_extend.rb +12 -10
- 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 +1 -5
- 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 +7 -1
- data/lib/contrast/agent/reporting/reporter.rb +21 -48
- 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 +138 -43
- 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 +20 -6
- data/lib/contrast/agent/reporting/reporting_events/preflight_message.rb +36 -17
- data/lib/contrast/agent/reporting/reporting_events/reporting_event.rb +28 -18
- 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 +22 -12
- 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 +74 -156
- data/lib/contrast/agent/reporting/reporting_utilities/reporter_client_utils.rb +154 -0
- data/lib/contrast/agent/reporting/reporting_utilities/reporting_storage.rb +1 -1
- 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 +44 -3
- data/lib/contrast/agent/request_context.rb +20 -7
- data/lib/contrast/agent/request_context_extend.rb +26 -1
- data/lib/contrast/agent/request_handler.rb +41 -5
- data/lib/contrast/agent/response.rb +23 -15
- 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 +34 -7
- data/lib/contrast/agent/static_analysis.rb +13 -3
- data/lib/contrast/agent/telemetry.rb +1 -1
- data/lib/contrast/agent/telemetry_event.rb +1 -1
- data/lib/contrast/agent/thread.rb +1 -1
- data/lib/contrast/agent/thread_watcher.rb +3 -3
- 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 +4 -4
- data/lib/contrast/api/communication/connection_status.rb +1 -1
- data/lib/contrast/api/communication/messaging_queue.rb +4 -4
- data/lib/contrast/api/communication/response_processor.rb +9 -5
- data/lib/contrast/api/communication/service_lifecycle.rb +1 -1
- data/lib/contrast/api/communication/socket.rb +1 -1
- data/lib/contrast/api/communication/socket_client.rb +4 -1
- data/lib/contrast/api/communication/speedracer.rb +1 -1
- data/lib/contrast/api/communication/tcp_socket.rb +1 -1
- data/lib/contrast/api/communication/unix_socket.rb +1 -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 +1 -17
- 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 +18 -9
- data/lib/contrast/components/app_context.rb +2 -1
- data/lib/contrast/components/app_context_extend.rb +1 -1
- data/lib/contrast/components/assess.rb +12 -8
- data/lib/contrast/components/base.rb +1 -1
- data/lib/contrast/components/config.rb +30 -15
- data/lib/contrast/components/contrast_service.rb +1 -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 +1 -1
- data/lib/contrast/components/scope.rb +1 -1
- data/lib/contrast/components/settings.rb +25 -12
- data/lib/contrast/config/agent_configuration.rb +1 -1
- data/lib/contrast/config/api_configuration.rb +2 -2
- data/lib/contrast/config/api_proxy_configuration.rb +1 -1
- data/lib/contrast/config/application_configuration.rb +1 -1
- data/lib/contrast/config/assess_configuration.rb +1 -1
- data/lib/contrast/config/assess_rules_configuration.rb +1 -1
- data/lib/contrast/config/base_configuration.rb +1 -1
- data/lib/contrast/config/certification_configuration.rb +1 -1
- data/lib/contrast/config/env_variables.rb +1 -1
- data/lib/contrast/config/exception_configuration.rb +1 -1
- data/lib/contrast/config/heap_dump_configuration.rb +1 -1
- data/lib/contrast/config/inventory_configuration.rb +1 -1
- 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 +1 -1
- data/lib/contrast/config/protect_rules_configuration.rb +1 -1
- data/lib/contrast/config/request_audit_configuration.rb +1 -1
- data/lib/contrast/config/root_configuration.rb +1 -1
- data/lib/contrast/config/ruby_configuration.rb +4 -1
- 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 +1 -1
- data/lib/contrast/config.rb +1 -1
- data/lib/contrast/configuration.rb +1 -1
- data/lib/contrast/extension/assess/array.rb +4 -2
- 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 +1 -1
- data/lib/contrast/framework/base_support.rb +5 -1
- data/lib/contrast/framework/grape/support.rb +25 -1
- data/lib/contrast/framework/manager.rb +26 -5
- data/lib/contrast/framework/manager_extend.rb +1 -1
- 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 +1 -1
- data/lib/contrast/framework/rails/support.rb +46 -2
- data/lib/contrast/framework/sinatra/support.rb +24 -2
- 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 +1 -1
- 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 +1 -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 +1 -1
- data/lib/contrast/utils/assess/trigger_method_utils.rb +3 -2
- data/lib/contrast/utils/class_util.rb +1 -1
- 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 +5 -2
- data/lib/contrast/utils/hash_digest.rb +36 -6
- data/lib/contrast/utils/hash_digest_extend.rb +44 -1
- data/lib/contrast/utils/head_dump_utils_extend.rb +1 -1
- data/lib/contrast/utils/heap_dump_util.rb +1 -1
- data/lib/contrast/utils/invalid_configuration_util.rb +6 -5
- data/lib/contrast/utils/io_util.rb +1 -1
- data/lib/contrast/utils/job_servers_running.rb +1 -1
- data/lib/contrast/utils/log_utils.rb +1 -1
- 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 +1 -1
- data/lib/contrast/utils/net_http_base.rb +14 -7
- data/lib/contrast/utils/object_share.rb +1 -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 +9 -1
- data/lib/contrast/utils/resource_loader.rb +1 -1
- data/lib/contrast/utils/response_utils.rb +1 -1
- 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 +2 -1
- data/lib/contrast/utils/telemetry.rb +1 -1
- data/lib/contrast/utils/telemetry_client.rb +1 -1
- data/lib/contrast/utils/telemetry_identifier.rb +1 -1
- 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 +4 -5
- metadata +58 -30
- 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/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/ruby_ast_rewriter.rb +0 -82
- data/lib/contrast/utils/substitution_utils.rb +0 -167
@@ -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/job_servers_running'
|
@@ -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,7 +122,7 @@ 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
|
@@ -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'
|
@@ -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
|
@@ -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'
|
@@ -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)
|
@@ -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'
|
@@ -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
|
|
@@ -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 'contrast/components/logger'
|
@@ -44,9 +44,11 @@ module Contrast
|
|
44
44
|
#
|
45
45
|
# We make sure the content-type is present before reporting, because some
|
46
46
|
# findings do require it for validation.
|
47
|
+
#
|
48
|
+
# @return [true, nil]
|
47
49
|
def report_collected_findings
|
48
|
-
return if Contrast::Agent::REQUEST_TRACKER.current&.response&.content_type.nil?
|
49
50
|
return if @_collection.empty?
|
51
|
+
return if Contrast::Agent::REQUEST_TRACKER.current&.response&.content_type.nil?
|
50
52
|
|
51
53
|
while @_collection.any?
|
52
54
|
finding = @_collection.pop
|
@@ -56,6 +58,7 @@ module Contrast
|
|
56
58
|
finding[:ret],
|
57
59
|
finding[:args]
|
58
60
|
end
|
61
|
+
true
|
59
62
|
end
|
60
63
|
end
|
61
64
|
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 'digest'
|
@@ -24,16 +24,35 @@ module Contrast
|
|
24
24
|
CLASS_CONSTANT_NAME_KEY = 'name'
|
25
25
|
CLASS_LINE_NO_KEY = 'lineNo'
|
26
26
|
|
27
|
+
# Update to CRC checksum the finding route and verb if finding route
|
28
|
+
# [Contrast::Api::Dtm::RouteCoverage] is available else update the passed
|
29
|
+
# request or Contrast::REQUEST_TRACKER.current.request uri and used request
|
30
|
+
# method.
|
31
|
+
#
|
32
|
+
# @param finding [Contrast::Api::Dtm::Finding] finding to be reported
|
33
|
+
# @param request [Contrast::Agent::Request] our wrapper around the Rack::Request.
|
34
|
+
# @return checksum [Integer, nil] returns nil if there is no request context or tracking
|
35
|
+
# is disabled.
|
27
36
|
def update_on_request finding, request
|
37
|
+
context = Contrast::Agent::REQUEST_TRACKER.current
|
38
|
+
return unless context || ::Contrast::ASSESS.non_request_tracking?
|
39
|
+
|
28
40
|
if (route = finding.routes[0])
|
29
|
-
update(route.route)
|
30
|
-
update(route.verb)
|
31
|
-
elsif request ||=
|
32
|
-
update(request.normalized_uri)
|
33
|
-
update(request.request_method)
|
41
|
+
update(route.route) # the normalized URL used to access the method in the route.
|
42
|
+
update(route.verb) # the HTTP Verb used to access the method in the route.
|
43
|
+
elsif request ||= context&.request
|
44
|
+
update(request.normalized_uri) # the normalized URL used to access the method in the route.
|
45
|
+
update(request.request_method) # The HTTP method used in the request
|
34
46
|
end
|
35
47
|
end
|
36
48
|
|
49
|
+
# Update to CRC checksum the event source name and source type.
|
50
|
+
# Expects Contrast::Api::Dtm::TraceEvent || Contrast::Agent::Assess::Events::SourceEvent
|
51
|
+
#
|
52
|
+
# @param events [Protobuf::Field::FieldArray<Contrast::Api::Dtm::TraceEvent>,
|
53
|
+
# <Contrast::Agent::Assess::Events::SourceEvent>]
|
54
|
+
# Array of TraceEvents
|
55
|
+
# @return checksum [Integer, nil] returns nil if there is no events
|
37
56
|
def update_on_sources events
|
38
57
|
return unless events&.any?
|
39
58
|
|
@@ -64,12 +83,23 @@ module Contrast
|
|
64
83
|
@crc32 = 0
|
65
84
|
end
|
66
85
|
|
86
|
+
# Converts given string to CRC checksum. CRC32 checksum ensures that If error
|
87
|
+
# of a single bit occurs, the CRC checksum will fail, regardless of any other
|
88
|
+
# property of the transmitted data, including its length. Called several times
|
89
|
+
# with previous CRC to recalculate the new output.
|
90
|
+
#
|
91
|
+
# @param str [String]
|
92
|
+
# @return @crc32 [Integer, nil] updated value of crc 32 bit integer checksum or
|
93
|
+
# nil if passed string is nil or empty
|
67
94
|
def update str
|
68
95
|
return unless str
|
69
96
|
|
70
97
|
@crc32 = Zlib.crc32(str, @crc32)
|
71
98
|
end
|
72
99
|
|
100
|
+
# Casts current CRC checksum to String
|
101
|
+
#
|
102
|
+
# @return @crc32 [String] String representation of CRC32 checksum
|
73
103
|
def finish
|
74
104
|
@crc32.to_s
|
75
105
|
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 'digest'
|
@@ -13,6 +13,11 @@ module Contrast
|
|
13
13
|
# specification shared across all agent teams. The spec can be found here:
|
14
14
|
# https://bitbucket.org/contrastsecurity/assess-specifications/src/master/vulnerability/preflight.md
|
15
15
|
module HashDigestExtend
|
16
|
+
# Generates the hash checksum for the request. Converts the request method, uri,
|
17
|
+
# param names and content length to CRC checksum and returns string representation
|
18
|
+
#
|
19
|
+
# @param request [Contrast::Agent::Request] our wrapper around the Rack::Request.
|
20
|
+
# @return checksum [String] String representation of CRC32 checksum
|
16
21
|
def generate_request_hash request
|
17
22
|
hash = new
|
18
23
|
hash.update(request.request_method)
|
@@ -25,6 +30,14 @@ module Contrast
|
|
25
30
|
hash.finish
|
26
31
|
end
|
27
32
|
|
33
|
+
# Generates the hash checksum for the event, either dataflow,
|
34
|
+
# crypto(crypto-bad-ciphers, crypto-bad-mac) rules or trigger event
|
35
|
+
# and returns string representation.
|
36
|
+
#
|
37
|
+
# @param finding [Contrast::Api::Dtm::Finding] to be reported
|
38
|
+
# @param source [Object] the source of the Trigger Event
|
39
|
+
# @param request [Contrast::Agent::Request] our wrapper around the Rack::Request.
|
40
|
+
# @return checksum [String] String representation of CRC32 checksum
|
28
41
|
def generate_event_hash finding, source, request
|
29
42
|
return generate_dataflow_hash(finding, request) if finding.events.length.to_i > 1
|
30
43
|
|
@@ -34,6 +47,11 @@ module Contrast
|
|
34
47
|
generate_trigger_hash(finding, request)
|
35
48
|
end
|
36
49
|
|
50
|
+
# Generates the hash checksum for configurations. Converts the finding rule_id, session_id and configPath and
|
51
|
+
# to CRC32 checksum and returns string representation to be appended to Contrast::Api::Dtm::Finding
|
52
|
+
#
|
53
|
+
# @param finding [Contrast::Api::Dtm::Finding] to be reported
|
54
|
+
# @return checksum [String] String representation of CRC32 checksum.
|
37
55
|
def generate_config_hash finding
|
38
56
|
hash = new
|
39
57
|
hash.update(finding.rule_id)
|
@@ -44,6 +62,11 @@ module Contrast
|
|
44
62
|
hash.finish
|
45
63
|
end
|
46
64
|
|
65
|
+
# Generates the hash checksum for class scanning. Converts the rule_id, finding.properties(source, name)
|
66
|
+
# to CRC32 checksum and returns string representation.
|
67
|
+
#
|
68
|
+
# @param finding [Contrast::Api::Dtm::Finding] to be reported
|
69
|
+
# @return checksum [String] String representation of CRC32 checksum.
|
47
70
|
def generate_class_scanning_hash finding
|
48
71
|
hash = new
|
49
72
|
hash.update(finding.rule_id)
|
@@ -59,6 +82,14 @@ module Contrast
|
|
59
82
|
|
60
83
|
private
|
61
84
|
|
85
|
+
# Generates the hash checksum for crypto(crypto-bad-ciphers, crypto-bad-mac) rules.
|
86
|
+
# used in #generate_event_hash.
|
87
|
+
#
|
88
|
+
#
|
89
|
+
# @param finding [Contrast::Api::Dtm::Finding] to be reported
|
90
|
+
# @param algorithm [Object] the source of the Trigger Event
|
91
|
+
# @param request [Contrast::Agent::Request] our wrapper around the Rack::Request.
|
92
|
+
# @return checksum [String] String representation of CRC32 checksum
|
62
93
|
def generate_crypto_hash finding, algorithm, request
|
63
94
|
hash = new
|
64
95
|
hash.update(finding.rule_id)
|
@@ -67,6 +98,12 @@ module Contrast
|
|
67
98
|
hash.finish
|
68
99
|
end
|
69
100
|
|
101
|
+
# Generates the hash checksum for dataflow when the finding events are more than one
|
102
|
+
# used in #generate_event_hash.
|
103
|
+
#
|
104
|
+
# @param finding [Contrast::Api::Dtm::Finding] to be reported
|
105
|
+
# @param request [Contrast::Agent::Request] our wrapper around the Rack::Request.
|
106
|
+
# @return checksum [String] String representation of CRC32 checksum
|
70
107
|
def generate_dataflow_hash finding, request
|
71
108
|
hash = new
|
72
109
|
hash.update(finding.rule_id)
|
@@ -75,6 +112,12 @@ module Contrast
|
|
75
112
|
hash.finish
|
76
113
|
end
|
77
114
|
|
115
|
+
# Generates the hash checksum for trigger
|
116
|
+
# used in #generate_event_hash.
|
117
|
+
#
|
118
|
+
# @param finding [Contrast::Api::Dtm::Finding] to be reported
|
119
|
+
# @param request [Contrast::Agent::Request] our wrapper around the Rack::Request.
|
120
|
+
# @return checksum [String] String representation of CRC32 checksum
|
78
121
|
def generate_trigger_hash finding, request
|
79
122
|
hash = new
|
80
123
|
hash.update(finding.rule_id)
|
@@ -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 'objspace'
|
@@ -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/policy/trigger_method'
|
@@ -33,9 +33,10 @@ module Contrast
|
|
33
33
|
hash = Contrast::Utils::HashDigest.generate_config_hash(finding)
|
34
34
|
finding.hash_code = Contrast::Utils::StringUtils.force_utf8(hash)
|
35
35
|
finding.preflight = Contrast::Utils::PreflightUtil.create_preflight(finding)
|
36
|
-
Contrast::Agent::
|
37
|
-
|
38
|
-
|
36
|
+
if Contrast::Agent::Reporter.enabled? # TODO: RUBY-1438 -- remove
|
37
|
+
cs__report_new_finding(hash, rule_id, user_provided_options, call_location)
|
38
|
+
else
|
39
|
+
Contrast::Agent::Assess::Policy::TriggerMethod.report_finding(finding)
|
39
40
|
end
|
40
41
|
end
|
41
42
|
rescue StandardError => e
|
@@ -52,7 +53,7 @@ module Contrast
|
|
52
53
|
ruby_finding = Contrast::Agent::Reporting::Finding.new rule_id
|
53
54
|
ruby_finding.hash_code = hash_code
|
54
55
|
set_new_finding_properties(ruby_finding, user_provided_options, call_location)
|
55
|
-
Contrast::Agent.
|
56
|
+
Contrast::Agent.reporter&.send_event_immediately(new_preflight)
|
56
57
|
Contrast::Agent::Reporting::ReportingStorage[hash_code] = ruby_finding
|
57
58
|
end
|
58
59
|
|
@@ -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'
|
@@ -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'
|
@@ -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
|