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
|
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/utils/string_utils'
|
@@ -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
|
@@ -13,6 +13,7 @@ require 'contrast/api/decorators/message'
|
|
13
13
|
require 'contrast/api/decorators/agent_startup'
|
14
14
|
require 'contrast/api/decorators/application_startup'
|
15
15
|
require 'contrast/api/decorators/application_update'
|
16
|
+
require 'contrast/api/decorators/architecture_component'
|
16
17
|
require 'contrast/api/decorators/input_analysis'
|
17
18
|
require 'contrast/api/decorators/application_settings'
|
18
19
|
require 'contrast/api/decorators/server_features'
|
data/lib/contrast/api.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
|
require 'rubygems/version'
|
@@ -33,31 +33,22 @@ module Contrast
|
|
33
33
|
end
|
34
34
|
|
35
35
|
def ruleset
|
36
|
-
@_ruleset ||= Contrast::Agent::RuleSet.new(retrieve_protect_ruleset
|
36
|
+
@_ruleset ||= Contrast::Agent::RuleSet.new(retrieve_protect_ruleset.values)
|
37
37
|
end
|
38
38
|
|
39
39
|
def reset_ruleset
|
40
40
|
@_ruleset = nil
|
41
41
|
end
|
42
42
|
|
43
|
-
def patch_interpolation?
|
44
|
-
interpolation_patch_possible?
|
45
|
-
end
|
46
|
-
|
47
|
-
def rewrite_interpolation?
|
48
|
-
!interpolation_patch_possible?
|
49
|
-
end
|
50
|
-
|
51
43
|
def patch_yield?
|
52
44
|
@_patch_yield = !false?(::Contrast::CONFIG.root.agent.ruby.propagate_yield) if @_patch_yield.nil?
|
53
45
|
@_patch_yield
|
54
46
|
end
|
55
47
|
|
56
48
|
def interpolation_enabled?
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
@_interpolation_enabled
|
49
|
+
return @_interpolation_enabled unless @_interpolation_enabled.nil?
|
50
|
+
|
51
|
+
@_interpolation_enabled = !false?(::Contrast::CONFIG.root.agent.ruby.interpolate)
|
61
52
|
end
|
62
53
|
|
63
54
|
def omit_body?
|
@@ -93,16 +84,6 @@ module Contrast
|
|
93
84
|
|
94
85
|
protected
|
95
86
|
|
96
|
-
INTERPOLATION_HOOKABLE_VERSION = Gem::Version.new('2.6.0')
|
97
|
-
# Ruby exposed the C method for interpolation in version 2.6.0, meaning
|
98
|
-
# we can attempt to patch using Funchook for that version and later.
|
99
|
-
def interpolation_patch_possible?
|
100
|
-
if @_interpolation_patch_possible.nil?
|
101
|
-
@_interpolation_patch_possible = Gem::Version.new(RUBY_VERSION) >= INTERPOLATION_HOOKABLE_VERSION
|
102
|
-
end
|
103
|
-
@_interpolation_patch_possible
|
104
|
-
end
|
105
|
-
|
106
87
|
def retrieve_protect_ruleset
|
107
88
|
return {} unless enabled? && ::Contrast::PROTECT.enabled?
|
108
89
|
|
@@ -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/base'
|
@@ -14,7 +14,11 @@ module Contrast
|
|
14
14
|
include Contrast::Components::ComponentBase
|
15
15
|
|
16
16
|
def api_url
|
17
|
-
@_api_url ||=
|
17
|
+
@_api_url ||= begin
|
18
|
+
tmp = ::Contrast::CONFIG.root.api.url
|
19
|
+
tmp += '/Contrast' unless tmp.end_with?('/Contrast')
|
20
|
+
tmp
|
21
|
+
end
|
18
22
|
end
|
19
23
|
|
20
24
|
def api_key
|
@@ -28,6 +32,67 @@ module Contrast
|
|
28
32
|
def username
|
29
33
|
@_username ||= ::Contrast::CONFIG.root.api.user_name
|
30
34
|
end
|
35
|
+
|
36
|
+
def proxy_enabled?
|
37
|
+
return @_proxy_enabled unless @_proxy_enabled.nil?
|
38
|
+
|
39
|
+
@_proxy_enabled = true?(::Contrast::CONFIG.root.api.proxy.enable)
|
40
|
+
end
|
41
|
+
|
42
|
+
def proxy_url
|
43
|
+
@_proxy_url ||= ::Contrast::CONFIG.root.api.proxy.url
|
44
|
+
end
|
45
|
+
|
46
|
+
def request_audit_enable?
|
47
|
+
return @_request_audit_enable unless @_request_audit_enable.nil?
|
48
|
+
|
49
|
+
@_request_audit_enable = true?(::Contrast::CONFIG.root.api.request_audit.enable)
|
50
|
+
end
|
51
|
+
|
52
|
+
def request_audit_requests?
|
53
|
+
return @_request_audit_requests unless @_request_audit_requests.nil?
|
54
|
+
|
55
|
+
@_request_audit_requests = true?(::Contrast::CONFIG.root.api.request_audit.requests)
|
56
|
+
end
|
57
|
+
|
58
|
+
def request_audit_responses?
|
59
|
+
return @_request_audit_responses unless @_request_audit_responses.nil?
|
60
|
+
|
61
|
+
@_request_audit_responses = true?(::Contrast::CONFIG.root.api.request_audit.responses)
|
62
|
+
end
|
63
|
+
|
64
|
+
def request_audit_path
|
65
|
+
@_request_audit_path ||= ::Contrast::CONFIG.root.api.request_audit.path.to_s
|
66
|
+
end
|
67
|
+
|
68
|
+
def certification_enabled?
|
69
|
+
return @_certification_enabled unless @_certification_enabled.nil?
|
70
|
+
|
71
|
+
@_certification_enabled = certification_truly_enabled?(::Contrast::CONFIG.root.api.certificate)
|
72
|
+
end
|
73
|
+
|
74
|
+
def certification_ca_file
|
75
|
+
@_certification_ca_file ||= ::Contrast::CONFIG.root.api.certificate.ca_file
|
76
|
+
end
|
77
|
+
|
78
|
+
def certification_cert_file
|
79
|
+
@_certification_cert_file ||= ::Contrast::CONFIG.root.api.certificate.cert_file
|
80
|
+
end
|
81
|
+
|
82
|
+
def certification_key_file
|
83
|
+
@_certification_key_file ||= ::Contrast::CONFIG.root.api.certificate.key_file
|
84
|
+
end
|
85
|
+
|
86
|
+
private
|
87
|
+
|
88
|
+
def certification_truly_enabled? config_path
|
89
|
+
return false unless true?(config_path.enable)
|
90
|
+
return true if file_exists?(certification_ca_file) && valid_cert?(certification_ca_file)
|
91
|
+
return true if file_exists?(certification_cert_file) && valid_cert?(certification_cert_file)
|
92
|
+
return true if file_exists?(certification_key_file) && valid_cert?(certification_key_file)
|
93
|
+
|
94
|
+
false
|
95
|
+
end
|
31
96
|
end
|
32
97
|
end
|
33
98
|
end
|
@@ -1,10 +1,11 @@
|
|
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 'rubygems/version'
|
5
5
|
require 'contrast/api/decorators/agent_startup'
|
6
6
|
require 'contrast/api/decorators/application_startup'
|
7
7
|
require 'contrast/utils/object_share'
|
8
|
+
require 'contrast/components/app_context_extend'
|
8
9
|
|
9
10
|
module Contrast
|
10
11
|
module Components
|
@@ -15,6 +16,7 @@ module Contrast
|
|
15
16
|
# Specifically, this allows for querying the state of the Application,
|
16
17
|
# including the Client, Process, and Server information.
|
17
18
|
class Interface
|
19
|
+
include Contrast::Components::AppContextExtend
|
18
20
|
include Contrast::Components::ComponentBase
|
19
21
|
include Contrast::Components::Logger::InstanceMethods
|
20
22
|
|
@@ -23,10 +25,6 @@ module Contrast
|
|
23
25
|
DEFAULT_SERVER_NAME = 'localhost'
|
24
26
|
DEFAULT_SERVER_PATH = '/'
|
25
27
|
|
26
|
-
SUPPORTED_FRAMEWORKS = %w[rails sinatra grape rack].cs__freeze
|
27
|
-
|
28
|
-
SUPPORTED_SERVERS = %w[passenger puma thin unicorn].cs__freeze
|
29
|
-
|
30
28
|
def initialize
|
31
29
|
original_pid
|
32
30
|
end
|
@@ -50,9 +48,18 @@ module Contrast
|
|
50
48
|
end
|
51
49
|
end
|
52
50
|
|
51
|
+
def session_id
|
52
|
+
@_session_id ||= build_app_startup_message.session_id
|
53
|
+
end
|
54
|
+
|
55
|
+
def app_version
|
56
|
+
@_app_version ||= Contrast::CONFIG.root.application.version
|
57
|
+
end
|
58
|
+
|
53
59
|
def path
|
54
60
|
@_path ||= begin
|
55
61
|
tmp = ::Contrast::CONFIG.root.application.path
|
62
|
+
tmp = Contrast::Agent.framework_manager.application_root unless Contrast::Utils::StringUtils.present?(tmp)
|
56
63
|
Contrast::Utils::StringUtils.truncate(tmp, DEFAULT_APP_PATH)
|
57
64
|
rescue StandardError
|
58
65
|
DEFAULT_APP_PATH
|
@@ -80,67 +87,6 @@ module Contrast
|
|
80
87
|
end
|
81
88
|
end
|
82
89
|
|
83
|
-
def build_app_startup_message
|
84
|
-
Contrast::Api::Dtm::ApplicationCreate.build
|
85
|
-
end
|
86
|
-
|
87
|
-
def build_agent_startup_message
|
88
|
-
msg = Contrast::Api::Dtm::AgentStartup.build(server_name, server_path, server_type)
|
89
|
-
logger.info('Application context',
|
90
|
-
server_name: msg.server_name,
|
91
|
-
server_path: msg.server_path,
|
92
|
-
server_type: msg.server_type,
|
93
|
-
application_name: app_name,
|
94
|
-
application_path: path,
|
95
|
-
application_language: Contrast::Utils::ObjectShare::RUBY)
|
96
|
-
|
97
|
-
msg
|
98
|
-
end
|
99
|
-
|
100
|
-
def pid
|
101
|
-
Process.pid
|
102
|
-
end
|
103
|
-
|
104
|
-
def ppid
|
105
|
-
Process.ppid
|
106
|
-
end
|
107
|
-
|
108
|
-
def pgid
|
109
|
-
Process.getpgid(pid)
|
110
|
-
end
|
111
|
-
|
112
|
-
def client_id
|
113
|
-
@_client_id ||= [app_name, pgid].join('-')
|
114
|
-
end
|
115
|
-
|
116
|
-
def app_and_server_information
|
117
|
-
{
|
118
|
-
application_info: find_gem_information(SUPPORTED_FRAMEWORKS),
|
119
|
-
server_info: find_gem_information(SUPPORTED_SERVERS)
|
120
|
-
}
|
121
|
-
end
|
122
|
-
|
123
|
-
def find_gem_information arr
|
124
|
-
arr.each do |framework|
|
125
|
-
next unless Gem.loaded_specs.key?(framework)
|
126
|
-
|
127
|
-
loaded = Gem.loaded_specs[framework]
|
128
|
-
next unless loaded
|
129
|
-
|
130
|
-
name = loaded.instance_variable_get(:@name)
|
131
|
-
version = loaded.instance_variable_get(:@version).to_s
|
132
|
-
return [name, version].join(' ')
|
133
|
-
end
|
134
|
-
end
|
135
|
-
|
136
|
-
def instrument_middleware_stack?
|
137
|
-
!Contrast::Utils::JobServersRunning.job_servers_running?
|
138
|
-
end
|
139
|
-
|
140
|
-
def disabled_agent_rake_tasks
|
141
|
-
::Contrast::CONFIG.root.agent.ruby.disabled_agent_rake_tasks
|
142
|
-
end
|
143
|
-
|
144
90
|
# Determines if the Process we're currently in matches that of the
|
145
91
|
# Process in which the App Context instance was created.
|
146
92
|
# If it doesn't, that indicates the running context is in a new
|
@@ -0,0 +1,78 @@
|
|
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 Components
|
6
|
+
# A wrapper build around the Common Agent Configuration project to allow
|
7
|
+
# for access of the values contained in its
|
8
|
+
# parent_configuration_spec.yaml.
|
9
|
+
# Specifically, this allows for querying the state of the Application,
|
10
|
+
# including the Client, Process, and Server information.
|
11
|
+
module AppContextExtend
|
12
|
+
SUPPORTED_FRAMEWORKS = %w[rails sinatra grape rack].cs__freeze
|
13
|
+
SUPPORTED_SERVERS = %w[passenger puma thin unicorn].cs__freeze
|
14
|
+
|
15
|
+
def build_app_startup_message
|
16
|
+
@_build_app_startup_message ||= Contrast::Api::Dtm::ApplicationCreate.build
|
17
|
+
end
|
18
|
+
|
19
|
+
def build_agent_startup_message
|
20
|
+
msg = Contrast::Api::Dtm::AgentStartup.build(server_name, server_path, server_type)
|
21
|
+
logger.info('Application context',
|
22
|
+
server_name: msg.server_name,
|
23
|
+
server_path: msg.server_path,
|
24
|
+
server_type: msg.server_type,
|
25
|
+
application_name: app_name,
|
26
|
+
application_path: path,
|
27
|
+
application_language: Contrast::Utils::ObjectShare::RUBY)
|
28
|
+
|
29
|
+
msg
|
30
|
+
end
|
31
|
+
|
32
|
+
def pid
|
33
|
+
Process.pid
|
34
|
+
end
|
35
|
+
|
36
|
+
def ppid
|
37
|
+
Process.ppid
|
38
|
+
end
|
39
|
+
|
40
|
+
def pgid
|
41
|
+
Process.getpgid(pid)
|
42
|
+
end
|
43
|
+
|
44
|
+
def client_id
|
45
|
+
@_client_id ||= [app_name, pgid].join('-')
|
46
|
+
end
|
47
|
+
|
48
|
+
def app_and_server_information
|
49
|
+
{
|
50
|
+
application_info: find_gem_information(SUPPORTED_FRAMEWORKS),
|
51
|
+
server_info: find_gem_information(SUPPORTED_SERVERS)
|
52
|
+
}
|
53
|
+
end
|
54
|
+
|
55
|
+
def find_gem_information arr
|
56
|
+
arr.each do |framework|
|
57
|
+
next unless Gem.loaded_specs.key?(framework)
|
58
|
+
|
59
|
+
loaded = Gem.loaded_specs[framework]
|
60
|
+
next unless loaded
|
61
|
+
|
62
|
+
name = loaded.instance_variable_get(:@name)
|
63
|
+
version = loaded.instance_variable_get(:@version).to_s
|
64
|
+
return [name, version].join(' ')
|
65
|
+
end
|
66
|
+
nil
|
67
|
+
end
|
68
|
+
|
69
|
+
def instrument_middleware_stack?
|
70
|
+
!Contrast::Utils::JobServersRunning.job_servers_running?
|
71
|
+
end
|
72
|
+
|
73
|
+
def disabled_agent_rake_tasks
|
74
|
+
::Contrast::CONFIG.root.agent.ruby.disabled_agent_rake_tasks
|
75
|
+
end
|
76
|
+
end
|
77
|
+
end
|
78
|
+
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/base'
|
@@ -77,9 +77,8 @@ module Contrast
|
|
77
77
|
end
|
78
78
|
|
79
79
|
def track_frozen_sources?
|
80
|
-
|
81
|
-
@_track_frozen_sources
|
82
|
-
end
|
80
|
+
@_track_frozen_sources = !false?(::Contrast::CONFIG.root.agent.ruby.track_frozen_sources) if
|
81
|
+
@_track_frozen_sources.nil?
|
83
82
|
@_track_frozen_sources
|
84
83
|
end
|
85
84
|
|
@@ -89,10 +88,15 @@ module Contrast
|
|
89
88
|
end
|
90
89
|
|
91
90
|
def require_dynamic_sources?
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
91
|
+
return @_require_dynamic_sources unless @_require_dynamic_sources.nil?
|
92
|
+
|
93
|
+
@_require_dynamic_sources = !false?(::Contrast::CONFIG.root.assess.enable_dynamic_sources)
|
94
|
+
end
|
95
|
+
|
96
|
+
def non_request_tracking?
|
97
|
+
@_non_request_tracking = true?(::Contrast::CONFIG.root.agent.ruby.non_request_tracking) if
|
98
|
+
@_non_request_tracking.nil?
|
99
|
+
@_non_request_tracking
|
96
100
|
end
|
97
101
|
|
98
102
|
def tags
|
@@ -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
|
@@ -35,6 +35,29 @@ module Contrast
|
|
35
35
|
|
36
36
|
config_param.downcase == Contrast::Utils::ObjectShare::TRUE
|
37
37
|
end
|
38
|
+
|
39
|
+
# this method will check if a path could be possibly used
|
40
|
+
# So for example if we pass a path to a file - we'll check
|
41
|
+
# if there is actually that file and if it's with certain extension
|
42
|
+
#
|
43
|
+
# @param config_path [String,nil]
|
44
|
+
# @return [Boolean]
|
45
|
+
def valid_cert? config_path
|
46
|
+
return false if config_path.nil?
|
47
|
+
|
48
|
+
exts = %w[.pem .crt .cer].cs__freeze
|
49
|
+
return false unless exts.include?(File.extname(config_path))
|
50
|
+
|
51
|
+
true
|
52
|
+
end
|
53
|
+
|
54
|
+
# check if file exists at all
|
55
|
+
# @param path [String,nil]
|
56
|
+
def file_exists? path
|
57
|
+
return false unless path
|
58
|
+
|
59
|
+
File.exist? path
|
60
|
+
end
|
38
61
|
end
|
39
62
|
end
|
40
63
|
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/env_configuration_item'
|
@@ -80,27 +80,42 @@ module Contrast
|
|
80
80
|
API_KEY = "Invalid configuration. Missing a required connection value 'api_key' is not set."
|
81
81
|
API_SERVICE_KEY = "Invalid configuration. Missing a required connection value 'service_tag' is not set."
|
82
82
|
API_USERNAME = "Invalid configuration. Missing a required connection value 'user_name' is not set."
|
83
|
+
# The config has information about how to construct the logger. If the config is invalid, and you want to know
|
84
|
+
# about it, then you have a circular dependency if you try to log it, so we use basic proto_logger to do this
|
85
|
+
# job.
|
83
86
|
def validate
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
87
|
+
return false unless valid_session_metadata?
|
88
|
+
|
89
|
+
valid_api?
|
90
|
+
end
|
91
|
+
|
92
|
+
# The use can set either the application's session id or session metadata or neither, but never both.
|
93
|
+
#
|
94
|
+
# @return [boolean]
|
95
|
+
def valid_session_metadata?
|
96
|
+
if !session_id&.empty? && !session_metadata&.empty?
|
89
97
|
proto_logger.error(SESSION_VARIABLES)
|
90
98
|
return false
|
91
99
|
end
|
92
|
-
if bypass
|
93
|
-
msg = []
|
94
|
-
msg << API_URL unless api_url
|
95
|
-
msg << API_KEY unless api_key
|
96
|
-
msg << API_SERVICE_KEY unless api_service_key
|
97
|
-
msg << API_USERNAME unless api_username
|
98
|
-
msg.any? { |m| proto_logger.error(m) }
|
99
|
-
return false unless msg.empty?
|
100
|
-
end
|
101
100
|
true
|
102
101
|
end
|
103
102
|
|
103
|
+
# If the agent is to use the bypass to communicate with TeamServer directly, than it must have the
|
104
|
+
# configuration values required for that connection.
|
105
|
+
#
|
106
|
+
# @return [boolean]
|
107
|
+
def valid_api?
|
108
|
+
return true unless bypass
|
109
|
+
|
110
|
+
msg = []
|
111
|
+
msg << API_URL unless api_url
|
112
|
+
msg << API_KEY unless api_key
|
113
|
+
msg << API_SERVICE_KEY unless api_service_key
|
114
|
+
msg << API_USERNAME unless api_username
|
115
|
+
msg.any? { |m| proto_logger.error(m) }
|
116
|
+
msg.empty?
|
117
|
+
end
|
118
|
+
|
104
119
|
def env_overrides
|
105
120
|
# For env variables resembling CONTRAST__WHATEVER__NESTED_VALUE
|
106
121
|
# override raw.whatever.nested_value
|
@@ -120,7 +135,7 @@ module Contrast
|
|
120
135
|
# @return [String,nil] the value of the session id set in the
|
121
136
|
# configuration, or nil if unset
|
122
137
|
def session_id
|
123
|
-
|
138
|
+
root.application.session_id
|
124
139
|
end
|
125
140
|
|
126
141
|
# Typically, this would be accessed through
|
@@ -131,7 +146,7 @@ module Contrast
|
|
131
146
|
# @return [String,nil] the value of the session metadata set in the
|
132
147
|
# configuration, or nil if unset
|
133
148
|
def session_metadata
|
134
|
-
|
149
|
+
root.application.session_metadata
|
135
150
|
end
|
136
151
|
|
137
152
|
# Typically, the following values would be accessed through Contrast::Components::AppContext
|
@@ -140,7 +155,7 @@ module Contrast
|
|
140
155
|
#
|
141
156
|
# @return [String, nil]
|
142
157
|
def api_url
|
143
|
-
|
158
|
+
root.api.url
|
144
159
|
end
|
145
160
|
|
146
161
|
# Typically, the following values would be accessed through Contrast::Components::AppContext
|
@@ -149,7 +164,7 @@ module Contrast
|
|
149
164
|
#
|
150
165
|
# @return [String, nil]
|
151
166
|
def api_key
|
152
|
-
|
167
|
+
root.api.api_key
|
153
168
|
end
|
154
169
|
|
155
170
|
# Typically, the following values would be accessed through Contrast::Components::AppContext
|
@@ -158,7 +173,7 @@ module Contrast
|
|
158
173
|
#
|
159
174
|
# @return [String, nil]
|
160
175
|
def api_service_key
|
161
|
-
|
176
|
+
root.api.service_key
|
162
177
|
end
|
163
178
|
|
164
179
|
# Typically, the following values would be accessed through Contrast::Components::AppContext
|
@@ -167,7 +182,7 @@ module Contrast
|
|
167
182
|
#
|
168
183
|
# @return [String, nil]
|
169
184
|
def api_username
|
170
|
-
|
185
|
+
root.api.user_name
|
171
186
|
end
|
172
187
|
|
173
188
|
# Typically, the following values would be accessed through Contrast::Components::AppContext
|
@@ -176,7 +191,7 @@ module Contrast
|
|
176
191
|
#
|
177
192
|
# @return [String, nil]
|
178
193
|
def bypass
|
179
|
-
|
194
|
+
root.agent.service.bypass
|
180
195
|
end
|
181
196
|
|
182
197
|
# Typically, the following values would be accessed through Contrast::Components::AppContext
|
@@ -185,7 +200,7 @@ module Contrast
|
|
185
200
|
#
|
186
201
|
# @return [String, nil]
|
187
202
|
def logger_path
|
188
|
-
|
203
|
+
root.agent.logger.path
|
189
204
|
end
|
190
205
|
end
|
191
206
|
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 'monitor'
|
@@ -15,6 +15,7 @@ module Contrast
|
|
15
15
|
include Contrast::Components::ComponentBase
|
16
16
|
|
17
17
|
DEFAULT_SERVICE_LOG = 'contrast_service.log'
|
18
|
+
DEFAULT_SERVICE_LEVEL = :TRACE
|
18
19
|
# The Rails ActionDispatch regexp for localhost IP + literal localhost
|
19
20
|
# https://github.com/rails/rails/blob/master/actionpack/lib/action_dispatch/http/request.rb#L32
|
20
21
|
LOCALHOST = Regexp.union [/^127\.\d{1,3}\.\d{1,3}\.\d{1,3}$/, /^::1$/, /^0:0:0:0:0:0:0:1(%.*)?$/, /^localhost$/]
|
@@ -59,6 +60,10 @@ module Contrast
|
|
59
60
|
@_logger_path ||= ::Contrast::CONFIG.root.agent.service.logger.path || DEFAULT_SERVICE_LOG
|
60
61
|
end
|
61
62
|
|
63
|
+
def logger_level
|
64
|
+
@_logger_level ||= ::Contrast::CONFIG.root.agent.service.logger.level || DEFAULT_SERVICE_LEVEL
|
65
|
+
end
|
66
|
+
|
62
67
|
private
|
63
68
|
|
64
69
|
def disabled?
|
@@ -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/base'
|
@@ -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
|
@@ -21,6 +21,10 @@ module Contrast
|
|
21
21
|
@_analyze_libraries = !false?(::Contrast::CONFIG.root.inventory.analyze_libraries) if @_analyze_libraries.nil?
|
22
22
|
@_analyze_libraries
|
23
23
|
end
|
24
|
+
|
25
|
+
def tags
|
26
|
+
::Contrast::CONFIG.root.inventory&.tags
|
27
|
+
end
|
24
28
|
end
|
25
29
|
end
|
26
30
|
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/logger/log'
|
@@ -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/base'
|
@@ -54,12 +54,16 @@ module Contrast
|
|
54
54
|
end
|
55
55
|
|
56
56
|
def forcibly_disabled?
|
57
|
-
@_forcibly_disabled
|
57
|
+
return @_forcibly_disabled unless @_forcibly_disabled.nil?
|
58
|
+
|
59
|
+
@_forcibly_disabled = false?(::Contrast::CONFIG.root.protect.enable)
|
58
60
|
end
|
59
61
|
|
60
62
|
private
|
61
63
|
|
62
64
|
def forcibly_enabled?
|
65
|
+
return @_forcibly_enabled unless @_forcibly_enabled.nil?
|
66
|
+
|
63
67
|
@_forcibly_enabled ||= true?(::Contrast::CONFIG.root.protect.enable)
|
64
68
|
end
|
65
69
|
end
|