contrast-agent 3.10.2 → 3.13.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.dockerignore +0 -1
- data/.flayignore +1 -0
- data/.gitignore +1 -1
- data/.simplecov +5 -2
- data/Rakefile +31 -0
- data/ext/build_funchook.rb +13 -19
- data/ext/cs__assess_active_record_named/cs__active_record_named.c +12 -14
- data/ext/cs__assess_active_record_named/cs__active_record_named.h +1 -0
- data/ext/cs__assess_active_record_named/extconf.rb +3 -0
- data/ext/cs__assess_array/cs__assess_array.c +5 -6
- data/ext/cs__assess_array/cs__assess_array.h +1 -0
- data/ext/cs__assess_array/extconf.rb +3 -0
- data/ext/cs__assess_basic_object/cs__assess_basic_object.c +13 -11
- data/ext/cs__assess_basic_object/cs__assess_basic_object.h +2 -1
- data/ext/cs__assess_basic_object/extconf.rb +3 -0
- data/ext/cs__assess_fiber_track/cs__assess_fiber_track.c +6 -11
- data/ext/cs__assess_fiber_track/cs__assess_fiber_track.h +3 -4
- data/ext/cs__assess_fiber_track/extconf.rb +3 -0
- data/ext/cs__assess_hash/cs__assess_hash.c +40 -17
- data/ext/cs__assess_hash/cs__assess_hash.h +4 -6
- data/ext/cs__assess_hash/extconf.rb +3 -0
- data/ext/cs__assess_kernel/cs__assess_kernel.c +11 -9
- data/ext/cs__assess_kernel/cs__assess_kernel.h +1 -0
- data/ext/cs__assess_kernel/extconf.rb +3 -0
- data/ext/cs__assess_marshal_module/cs__assess_marshal_module.c +3 -6
- data/ext/cs__assess_marshal_module/extconf.rb +3 -0
- data/ext/cs__assess_module/cs__assess_module.c +16 -14
- data/ext/cs__assess_module/cs__assess_module.h +3 -0
- data/ext/cs__assess_module/extconf.rb +3 -0
- data/ext/cs__assess_regexp/cs__assess_regexp.c +13 -9
- data/ext/cs__assess_regexp/cs__assess_regexp.h +1 -0
- data/ext/cs__assess_regexp/extconf.rb +3 -0
- data/ext/cs__assess_string/cs__assess_string.c +5 -8
- data/ext/cs__assess_string/cs__assess_string.h +2 -1
- data/ext/cs__assess_string/extconf.rb +3 -0
- data/ext/cs__assess_string_interpolation26/cs__assess_string_interpolation26.c +3 -8
- data/ext/cs__assess_string_interpolation26/cs__assess_string_interpolation26.h +3 -3
- data/ext/cs__assess_string_interpolation26/extconf.rb +3 -0
- data/ext/cs__assess_yield_track/cs__assess_yield_track.c +1 -5
- data/ext/cs__assess_yield_track/cs__assess_yield_track.h +1 -2
- data/ext/cs__assess_yield_track/extconf.rb +3 -0
- data/ext/cs__common/cs__common.c +104 -1
- data/ext/cs__common/cs__common.h +37 -0
- data/ext/cs__common/extconf.rb +3 -16
- data/ext/cs__contrast_patch/cs__contrast_patch.h +1 -6
- data/ext/cs__contrast_patch/extconf.rb +3 -0
- data/ext/cs__protect_kernel/cs__protect_kernel.c +23 -12
- data/ext/cs__protect_kernel/cs__protect_kernel.h +1 -0
- data/ext/cs__protect_kernel/extconf.rb +3 -0
- data/ext/extconf_common.rb +3 -29
- data/lib/contrast.rb +4 -2
- data/lib/contrast/agent.rb +46 -31
- data/lib/contrast/agent/assess.rb +1 -11
- data/lib/contrast/agent/assess/contrast_event.rb +39 -224
- data/lib/contrast/agent/assess/events/event_factory.rb +25 -0
- data/lib/contrast/agent/assess/events/source_event.rb +79 -0
- data/lib/contrast/agent/assess/insulator.rb +0 -4
- data/lib/contrast/agent/assess/policy/dynamic_source_factory.rb +1 -1
- data/lib/contrast/agent/assess/policy/patcher.rb +6 -2
- data/lib/contrast/agent/assess/policy/policy_node.rb +5 -106
- data/lib/contrast/agent/assess/policy/policy_scanner.rb +2 -2
- data/lib/contrast/agent/assess/policy/preshift.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagation_method.rb +69 -35
- data/lib/contrast/agent/assess/policy/propagation_node.rb +7 -2
- data/lib/contrast/agent/assess/policy/propagator.rb +1 -0
- data/lib/contrast/agent/assess/policy/propagator/base.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/custom.rb +1 -1
- data/lib/contrast/agent/assess/policy/propagator/database_write.rb +1 -3
- data/lib/contrast/agent/assess/policy/propagator/insert.rb +1 -4
- data/lib/contrast/agent/assess/policy/propagator/match_data.rb +88 -0
- data/lib/contrast/agent/assess/policy/propagator/remove.rb +6 -11
- data/lib/contrast/agent/assess/policy/propagator/select.rb +35 -22
- data/lib/contrast/agent/assess/policy/propagator/split.rb +28 -8
- data/lib/contrast/agent/assess/policy/propagator/substitution.rb +6 -4
- data/lib/contrast/agent/assess/policy/propagator/trim.rb +6 -10
- data/lib/contrast/agent/assess/policy/rewriter_patch.rb +37 -26
- data/lib/contrast/agent/assess/policy/source_method.rb +21 -22
- data/lib/contrast/agent/assess/policy/source_node.rb +0 -15
- data/lib/contrast/agent/assess/policy/trigger/reflected_xss.rb +90 -0
- data/lib/contrast/agent/assess/policy/trigger/xpath.rb +57 -0
- data/lib/contrast/agent/assess/policy/trigger_method.rb +29 -52
- data/lib/contrast/agent/assess/policy/trigger_node.rb +23 -11
- data/lib/contrast/agent/assess/policy/trigger_validation/ssrf_validator.rb +2 -31
- data/lib/contrast/agent/assess/properties.rb +4 -380
- data/lib/contrast/agent/assess/property/evented.rb +78 -0
- data/lib/contrast/agent/assess/property/tagged.rb +339 -0
- data/lib/contrast/agent/assess/rule/base.rb +1 -20
- data/lib/contrast/agent/assess/rule/provider/hardcoded_value_rule.rb +6 -7
- data/lib/contrast/agent/assess/rule/redos.rb +4 -5
- data/lib/contrast/agent/assess/tag.rb +51 -26
- data/lib/contrast/agent/at_exit_hook.rb +18 -13
- data/lib/contrast/agent/class_reopener.rb +23 -8
- data/lib/contrast/agent/deadzone/policy/policy.rb +2 -2
- data/lib/contrast/agent/disable_reaction.rb +3 -4
- data/lib/contrast/agent/exclusion_matcher.rb +9 -50
- data/lib/contrast/agent/inventory/policy/datastores.rb +53 -0
- data/lib/contrast/agent/inventory/policy/policy.rb +1 -1
- data/lib/contrast/agent/middleware.rb +95 -266
- data/lib/contrast/agent/module_data.rb +2 -1
- data/lib/contrast/agent/patching/policy/after_load_patch.rb +13 -3
- data/lib/contrast/agent/patching/policy/after_load_patcher.rb +59 -47
- data/lib/contrast/agent/patching/policy/method_policy.rb +3 -3
- data/lib/contrast/agent/patching/policy/module_policy.rb +0 -25
- data/lib/contrast/agent/patching/policy/patch.rb +97 -23
- data/lib/contrast/agent/patching/policy/patcher.rb +28 -30
- data/lib/contrast/agent/patching/policy/policy.rb +10 -10
- data/lib/contrast/agent/patching/policy/policy_node.rb +5 -13
- data/lib/contrast/agent/patching/policy/trigger_node.rb +2 -5
- data/lib/contrast/agent/protect/policy/applies_command_injection_rule.rb +63 -0
- data/lib/contrast/agent/protect/policy/applies_deserialization_rule.rb +52 -0
- data/lib/contrast/agent/protect/policy/applies_no_sqli_rule.rb +68 -0
- data/lib/contrast/agent/protect/policy/applies_path_traversal_rule.rb +117 -0
- data/lib/contrast/agent/protect/policy/applies_sqli_rule.rb +54 -0
- data/lib/contrast/agent/protect/policy/applies_xxe_rule.rb +129 -0
- data/lib/contrast/agent/protect/policy/policy.rb +6 -6
- data/lib/contrast/agent/protect/policy/rule_applicator.rb +51 -0
- data/lib/contrast/agent/protect/rule.rb +0 -5
- data/lib/contrast/agent/protect/rule/base.rb +38 -68
- data/lib/contrast/agent/protect/rule/base_service.rb +4 -2
- data/lib/contrast/agent/protect/rule/cmd_injection.rb +12 -15
- data/lib/contrast/agent/protect/rule/default_scanner.rb +0 -13
- data/lib/contrast/agent/protect/rule/deserialization.rb +2 -0
- data/lib/contrast/agent/protect/rule/http_method_tampering.rb +4 -9
- data/lib/contrast/agent/protect/rule/no_sqli.rb +4 -4
- data/lib/contrast/agent/protect/rule/path_traversal.rb +6 -10
- data/lib/contrast/agent/protect/rule/sqli.rb +5 -4
- data/lib/contrast/agent/protect/rule/unsafe_file_upload.rb +2 -0
- data/lib/contrast/agent/protect/rule/xss.rb +2 -0
- data/lib/contrast/agent/protect/rule/xxe.rb +11 -4
- data/lib/contrast/agent/railtie.rb +3 -8
- data/lib/contrast/agent/reaction_processor.rb +7 -7
- data/lib/contrast/agent/request.rb +93 -339
- data/lib/contrast/agent/request_context.rb +27 -30
- data/lib/contrast/agent/request_handler.rb +35 -0
- data/lib/contrast/agent/response.rb +22 -100
- data/lib/contrast/agent/rewriter.rb +22 -10
- data/lib/contrast/agent/rule_set.rb +49 -0
- data/lib/contrast/agent/scope.rb +1 -7
- data/lib/contrast/agent/service_heartbeat.rb +9 -12
- data/lib/contrast/agent/static_analysis.rb +41 -0
- data/lib/contrast/agent/thread.rb +1 -1
- data/lib/contrast/agent/thread_watcher.rb +49 -0
- data/lib/contrast/agent/tracepoint_hook.rb +1 -5
- data/lib/contrast/agent/version.rb +1 -1
- data/lib/contrast/agent/worker_thread.rb +24 -0
- data/lib/contrast/api.rb +4 -6
- data/lib/contrast/api/communication.rb +20 -0
- data/lib/contrast/api/communication/connection_status.rb +41 -0
- data/lib/contrast/api/communication/messaging_queue.rb +79 -0
- data/lib/contrast/api/communication/response_processor.rb +77 -0
- data/lib/contrast/api/communication/service_lifecycle.rb +61 -0
- data/lib/contrast/api/communication/socket.rb +45 -0
- data/lib/contrast/api/communication/socket_client.rb +76 -0
- data/lib/contrast/api/communication/speedracer.rb +111 -0
- data/lib/contrast/api/communication/tcp_socket.rb +31 -0
- data/lib/contrast/api/communication/unix_socket.rb +27 -0
- data/lib/contrast/api/decorators.rb +24 -0
- data/lib/contrast/api/decorators/address.rb +60 -0
- data/lib/contrast/api/decorators/application_settings.rb +41 -0
- data/lib/contrast/api/decorators/application_update.rb +57 -0
- data/lib/contrast/api/decorators/http_request.rb +139 -0
- data/lib/contrast/api/decorators/input_analysis.rb +17 -0
- data/lib/contrast/api/decorators/message.rb +75 -0
- data/lib/contrast/api/decorators/rasp_rule_sample.rb +28 -0
- data/lib/contrast/api/decorators/route_coverage.rb +57 -0
- data/lib/contrast/api/decorators/server_features.rb +24 -0
- data/lib/contrast/api/decorators/trace_event.rb +99 -0
- data/lib/contrast/api/decorators/trace_event_object.rb +57 -0
- data/lib/contrast/api/decorators/trace_event_signature.rb +46 -0
- data/lib/contrast/api/decorators/trace_taint_range.rb +51 -0
- data/lib/contrast/api/decorators/trace_taint_range_tags.rb +109 -0
- data/lib/contrast/api/decorators/user_input.rb +40 -0
- data/lib/contrast/components/agent.rb +34 -24
- data/lib/contrast/components/app_context.rb +39 -39
- data/lib/contrast/components/assess.rb +25 -15
- data/lib/contrast/components/config.rb +11 -14
- data/lib/contrast/components/contrast_service.rb +23 -71
- data/lib/contrast/components/heap_dump.rb +12 -8
- data/lib/contrast/components/interface.rb +16 -23
- data/lib/contrast/components/inventory.rb +5 -1
- data/lib/contrast/components/logger.rb +3 -68
- data/lib/contrast/components/protect.rb +40 -4
- data/lib/contrast/components/sampling.rb +22 -11
- data/lib/contrast/components/scope.rb +2 -52
- data/lib/contrast/components/settings.rb +36 -23
- data/lib/contrast/config/base_configuration.rb +1 -0
- data/lib/contrast/config/default_value.rb +1 -0
- data/lib/contrast/config/protect_rule_configuration.rb +0 -14
- data/lib/contrast/config/protect_rules_configuration.rb +0 -1
- data/lib/contrast/configuration.rb +2 -2
- data/lib/contrast/{extensions/ruby_core → extension}/assess.rb +12 -16
- data/lib/contrast/extension/assess/array.rb +77 -0
- data/lib/contrast/{extensions/ruby_core → extension}/assess/assess_extension.rb +28 -24
- data/lib/contrast/{extensions/ruby_core → extension}/assess/erb.rb +0 -8
- data/lib/contrast/extension/assess/eval_trigger.rb +78 -0
- data/lib/contrast/{extensions/ruby_core → extension}/assess/exec_trigger.rb +7 -9
- data/lib/contrast/extension/assess/fiber.rb +113 -0
- data/lib/contrast/extension/assess/hash.rb +39 -0
- data/lib/contrast/extension/assess/kernel.rb +110 -0
- data/lib/contrast/extension/assess/regexp.rb +84 -0
- data/lib/contrast/{extensions/ruby_core → extension}/assess/string.rb +19 -11
- data/lib/contrast/{extensions/ruby_core → extension}/delegator.rb +0 -0
- data/lib/contrast/{extensions/ruby_core → extension}/inventory.rb +2 -3
- data/lib/contrast/extension/kernel.rb +54 -0
- data/lib/contrast/{extensions/ruby_core → extension}/module.rb +0 -0
- data/lib/contrast/{extensions/ruby_core → extension}/protect.rb +2 -2
- data/lib/contrast/extension/protect/kernel.rb +44 -0
- data/lib/contrast/{extensions/ruby_core → extension}/protect/psych.rb +1 -1
- data/lib/contrast/{extensions/ruby_core → extension}/thread.rb +0 -0
- data/lib/contrast/framework/base_support.rb +28 -19
- data/lib/contrast/framework/manager.rb +57 -15
- data/lib/contrast/framework/platform_version.rb +1 -0
- data/lib/contrast/framework/rack/patch/session_cookie.rb +126 -0
- data/lib/contrast/framework/rack/patch/support.rb +24 -0
- data/lib/contrast/framework/rack/support.rb +22 -0
- data/lib/contrast/framework/rails/patch/action_controller_live_buffer.rb +41 -0
- data/lib/contrast/framework/rails/patch/assess_configuration.rb +102 -0
- data/lib/contrast/framework/rails/patch/rails_application_configuration.rb +31 -0
- data/lib/contrast/framework/rails/patch/support.rb +67 -0
- data/lib/contrast/framework/rails/rewrite/action_controller_railties_helper_inherited.rb +34 -0
- data/lib/contrast/framework/rails/rewrite/active_record_attribute_methods_read.rb +39 -0
- data/lib/contrast/framework/rails/rewrite/active_record_named.rb +73 -0
- data/lib/contrast/framework/rails/rewrite/active_record_time_zone_inherited.rb +33 -0
- data/lib/contrast/framework/rails/support.rb +86 -0
- data/lib/contrast/framework/sinatra/patch/base.rb +83 -0
- data/lib/contrast/framework/sinatra/patch/support.rb +27 -0
- data/lib/contrast/framework/sinatra/support.rb +98 -0
- data/lib/contrast/funchook/funchook.rb +45 -0
- data/lib/contrast/logger/application.rb +80 -0
- data/lib/contrast/logger/format.rb +51 -0
- data/lib/contrast/logger/log.rb +149 -0
- data/lib/contrast/logger/time.rb +50 -0
- data/lib/contrast/tasks/config.rb +54 -0
- data/lib/contrast/tasks/service.rb +3 -13
- data/lib/contrast/utils/assess/sampling_util.rb +4 -9
- data/lib/contrast/utils/assess/tracking_util.rb +51 -20
- data/lib/contrast/utils/boolean_util.rb +2 -2
- data/lib/contrast/utils/class_util.rb +24 -3
- data/lib/contrast/utils/gemfile_reader.rb +7 -5
- data/lib/contrast/utils/hash_digest.rb +13 -13
- data/lib/contrast/utils/heap_dump_util.rb +12 -11
- data/lib/contrast/utils/invalid_configuration_util.rb +3 -19
- data/lib/contrast/utils/inventory_util.rb +4 -9
- data/lib/contrast/utils/io_util.rb +1 -11
- data/lib/contrast/utils/job_servers_running.rb +6 -4
- data/lib/contrast/utils/object_share.rb +1 -29
- data/lib/contrast/utils/os.rb +16 -28
- data/lib/contrast/utils/stack_trace_utils.rb +85 -182
- data/lib/contrast/utils/string_utils.rb +18 -2
- data/lib/contrast/utils/tag_util.rb +12 -2
- data/lib/contrast/utils/thread_tracker.rb +1 -14
- data/lib/contrast/utils/timer.rb +1 -57
- data/resources/assess/policy.json +42 -71
- data/resources/inventory/policy.json +2 -2
- data/resources/protect/policy.json +15 -15
- data/ruby-agent.gemspec +14 -7
- data/service_executables/VERSION +1 -1
- data/service_executables/linux/contrast-service +0 -0
- data/service_executables/mac/contrast-service +0 -0
- metadata +153 -164
- data/ext/cs__assess_regexp_track/cs__assess_regexp_track.c +0 -63
- data/ext/cs__assess_regexp_track/cs__assess_regexp_track.h +0 -29
- data/ext/cs__assess_regexp_track/extconf.rb +0 -2
- data/funchook/Makefile +0 -29
- data/funchook/autom4te.cache/output.0 +0 -4976
- data/funchook/autom4te.cache/requests +0 -78
- data/funchook/autom4te.cache/traces.0 +0 -364
- data/funchook/config.log +0 -490
- data/funchook/config.status +0 -1016
- data/funchook/configure +0 -4976
- data/funchook/src/Makefile +0 -70
- data/funchook/src/config.h +0 -101
- data/funchook/src/config.h.in +0 -100
- data/funchook/src/decoder.o +0 -0
- data/funchook/src/distorm.o +0 -0
- data/funchook/src/funchook.o +0 -0
- data/funchook/src/funchook_io.o +0 -0
- data/funchook/src/funchook_syscall.o +0 -0
- data/funchook/src/funchook_unix.o +0 -0
- data/funchook/src/funchook_x86.o +0 -0
- data/funchook/src/instructions.o +0 -0
- data/funchook/src/insts.o +0 -0
- data/funchook/src/libfunchook.so +0 -0
- data/funchook/src/mnemonics.o +0 -0
- data/funchook/src/operands.o +0 -0
- data/funchook/src/os_func.o +0 -0
- data/funchook/src/os_func_unix.o +0 -0
- data/funchook/src/prefix.o +0 -0
- data/funchook/src/printf_base.o +0 -0
- data/funchook/src/textdefs.o +0 -0
- data/funchook/src/wstring.o +0 -0
- data/funchook/test/Makefile +0 -43
- data/funchook/test/funchook_test +0 -0
- data/funchook/test/libfunchook_test.so +0 -0
- data/funchook/test/test_main.o +0 -0
- data/funchook/test/x86_64_test.o +0 -0
- data/lib/contrast/agent/assess/adjusted_span.rb +0 -25
- data/lib/contrast/agent/assess/frozen_properties.rb +0 -41
- data/lib/contrast/agent/assess/rule/csrf.rb +0 -66
- data/lib/contrast/agent/assess/rule/csrf/csrf_action.rb +0 -28
- data/lib/contrast/agent/assess/rule/csrf/csrf_applicator.rb +0 -73
- data/lib/contrast/agent/assess/rule/csrf/csrf_watcher.rb +0 -132
- data/lib/contrast/agent/assess/rule/response_scanning_rule.rb +0 -47
- data/lib/contrast/agent/assess/rule/response_watcher.rb +0 -36
- data/lib/contrast/agent/assess/rule/watcher.rb +0 -36
- data/lib/contrast/agent/feature_state.rb +0 -376
- data/lib/contrast/agent/logger_manager.rb +0 -116
- data/lib/contrast/agent/protect/rule/csrf.rb +0 -118
- data/lib/contrast/agent/protect/rule/csrf/csrf_evaluator.rb +0 -103
- data/lib/contrast/agent/protect/rule/csrf/csrf_token_injector.rb +0 -85
- data/lib/contrast/agent/settings_state.rb +0 -152
- data/lib/contrast/agent/socket_client.rb +0 -128
- data/lib/contrast/api/connection_status.rb +0 -49
- data/lib/contrast/api/socket.rb +0 -43
- data/lib/contrast/api/speedracer.rb +0 -184
- data/lib/contrast/api/tcp_socket.rb +0 -31
- data/lib/contrast/api/unix_socket.rb +0 -25
- data/lib/contrast/delegators.rb +0 -9
- data/lib/contrast/delegators/application_update.rb +0 -32
- data/lib/contrast/extensions/framework/rack/cookie.rb +0 -24
- data/lib/contrast/extensions/framework/rack/request.rb +0 -24
- data/lib/contrast/extensions/framework/rack/response.rb +0 -23
- data/lib/contrast/extensions/framework/rails/action_controller_railties_helper_inherited.rb +0 -20
- data/lib/contrast/extensions/framework/rails/active_record.rb +0 -26
- data/lib/contrast/extensions/framework/rails/active_record_named.rb +0 -53
- data/lib/contrast/extensions/framework/rails/active_record_time_zone_inherited.rb +0 -21
- data/lib/contrast/extensions/framework/rails/buffer.rb +0 -28
- data/lib/contrast/extensions/framework/rails/configuration.rb +0 -27
- data/lib/contrast/extensions/framework/sinatra/base.rb +0 -59
- data/lib/contrast/extensions/ruby_core/assess/array.rb +0 -59
- data/lib/contrast/extensions/ruby_core/assess/basic_object.rb +0 -15
- data/lib/contrast/extensions/ruby_core/assess/fiber.rb +0 -124
- data/lib/contrast/extensions/ruby_core/assess/hash.rb +0 -22
- data/lib/contrast/extensions/ruby_core/assess/kernel.rb +0 -95
- data/lib/contrast/extensions/ruby_core/assess/module.rb +0 -14
- data/lib/contrast/extensions/ruby_core/assess/regexp.rb +0 -206
- data/lib/contrast/extensions/ruby_core/assess/tilt_template_trigger.rb +0 -73
- data/lib/contrast/extensions/ruby_core/assess/xpath_library_trigger.rb +0 -40
- data/lib/contrast/extensions/ruby_core/eval_trigger.rb +0 -52
- data/lib/contrast/extensions/ruby_core/inventory/datastores.rb +0 -37
- data/lib/contrast/extensions/ruby_core/protect/applies_command_injection_rule.rb +0 -72
- data/lib/contrast/extensions/ruby_core/protect/applies_deserialization_rule.rb +0 -60
- data/lib/contrast/extensions/ruby_core/protect/applies_no_sqli_rule.rb +0 -83
- data/lib/contrast/extensions/ruby_core/protect/applies_path_traversal_rule.rb +0 -123
- data/lib/contrast/extensions/ruby_core/protect/applies_sqli_rule.rb +0 -65
- data/lib/contrast/extensions/ruby_core/protect/applies_xxe_rule.rb +0 -143
- data/lib/contrast/extensions/ruby_core/protect/kernel.rb +0 -30
- data/lib/contrast/framework/rails_support.rb +0 -88
- data/lib/contrast/framework/sinatra_application_helper.rb +0 -49
- data/lib/contrast/framework/sinatra_support.rb +0 -94
- data/lib/contrast/framework/view_technologies_descriptor.rb +0 -20
- data/lib/contrast/internal_exception.rb +0 -8
- data/lib/contrast/utils/cache.rb +0 -69
- data/lib/contrast/utils/comment_range.rb +0 -19
- data/lib/contrast/utils/data_store_util.rb +0 -23
- data/lib/contrast/utils/environment_util.rb +0 -81
- data/lib/contrast/utils/performs_logging.rb +0 -152
- data/lib/contrast/utils/rack_assess_session_cookie.rb +0 -104
- data/lib/contrast/utils/rails_assess_configuration.rb +0 -95
- data/lib/contrast/utils/random_util.rb +0 -22
- data/lib/contrast/utils/service_response_util.rb +0 -110
- data/lib/contrast/utils/service_sender_util.rb +0 -106
- data/lib/contrast/utils/sinatra_helper.rb +0 -55
- data/resources/csrf/inject.js +0 -44
- data/resources/factory-bot-spec/spec_helper.rb +0 -30
- data/resources/rubocops/kernel/catch_cop.rb +0 -37
- data/resources/rubocops/kernel/require_cop.rb +0 -37
- data/resources/rubocops/kernel/require_relative_cop.rb +0 -33
- data/resources/rubocops/module/autoload_cop.rb +0 -37
- data/resources/rubocops/module/const_defined_cop.rb +0 -37
- data/resources/rubocops/module/const_get_cop.rb +0 -37
- data/resources/rubocops/module/const_set_cop.rb +0 -37
- data/resources/rubocops/module/constants_cop.rb +0 -37
- data/resources/rubocops/module/name_cop.rb +0 -37
- data/resources/rubocops/object/class_cop.rb +0 -37
- data/resources/rubocops/object/freeze_cop.rb +0 -37
- data/resources/rubocops/object/frozen_cop.rb +0 -37
- data/resources/rubocops/object/is_a_cop.rb +0 -37
- data/resources/rubocops/object/method_cop.rb +0 -37
- data/resources/rubocops/object/respond_to_cop.rb +0 -37
- data/resources/rubocops/object/singleton_class_cop.rb +0 -37
- data/resources/rubocops/regexp/spelling_cop.rb +0 -44
- data/resources/rubocops/thread/new_cop.rb +0 -39
- data/resources/ruby-spec/ancestors_spec.rb +0 -70
- data/resources/ruby-spec/modulo_spec.rb +0 -831
- data/resources/ruby-spec/parameters_spec.rb +0 -261
- data/resources/ruby-spec/ruby_spec_spec_helper.rb +0 -35
@@ -0,0 +1,80 @@
|
|
1
|
+
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
cs__scoped_require 'contrast/components/interface'
|
5
|
+
|
6
|
+
module Contrast
|
7
|
+
module Logger
|
8
|
+
# # Our decorator for the Ougai logger allowing for the logging of the
|
9
|
+
# application environment, used to provide context during troubleshooting.
|
10
|
+
module Application
|
11
|
+
include Contrast::Components::Interface
|
12
|
+
access_component :config
|
13
|
+
|
14
|
+
ENV_KEYS = %w[HOME PWD RACK_ENV RAILS_ENV RUBY_VERSION GEM_HOME GEM_PATH].cs__freeze
|
15
|
+
# Utility method to log some current ruby and rails information from environment
|
16
|
+
def application_environment
|
17
|
+
return unless info?
|
18
|
+
|
19
|
+
info('Process environment information',
|
20
|
+
p_id: Process.pid,
|
21
|
+
pp_id: Process.ppid,
|
22
|
+
agent_version: Contrast::Agent::VERSION)
|
23
|
+
ENV.each do |env_key, env_value|
|
24
|
+
env_key = env_key.to_s
|
25
|
+
next unless ENV_KEYS.include?(env_key) ||
|
26
|
+
(env_key.start_with?(Contrast::Components::Config::CONTRAST_ENV_MARKER) &&
|
27
|
+
!env_key.start_with?(Contrast::Components::Config::CONTRAST_ENV_MARKER + 'API'))
|
28
|
+
|
29
|
+
info('Environment settings', key: env_key, value: env_value)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
def application_configuration
|
34
|
+
return unless info?
|
35
|
+
|
36
|
+
loggable = CONFIG.raw.send(:load_config)
|
37
|
+
loggable.delete('api')
|
38
|
+
info('Current configuration', configuration: JSON.pretty_generate(loggable))
|
39
|
+
end
|
40
|
+
|
41
|
+
def application_libraries
|
42
|
+
if debug?
|
43
|
+
log_all_libraries
|
44
|
+
elsif info?
|
45
|
+
log_specific_libraries
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
FRAMEWORKS = %w[rails sinatra grape].cs__freeze
|
50
|
+
WEB_SERVERS = %w[agoo falcon hoof iodine mongrel mongrel2 passenger puma rack skinny thin trinidad unicorn webrick yarn].cs__freeze
|
51
|
+
LIBRARIES = %w[excon json mongo moped mysql nokogiri oga ox pg psych sqlite3 typhoeus yaml].cs__freeze
|
52
|
+
def log_specific_libraries
|
53
|
+
FRAMEWORKS.each(&cs__method(:log_gem_data))
|
54
|
+
WEB_SERVERS.each(&cs__method(:log_gem_data))
|
55
|
+
LIBRARIES.each(&cs__method(:log_gem_data))
|
56
|
+
end
|
57
|
+
|
58
|
+
private
|
59
|
+
|
60
|
+
def log_all_libraries
|
61
|
+
return unless debug?
|
62
|
+
|
63
|
+
Gem.loaded_specs.each_pair do |_name, gem_spec|
|
64
|
+
debug('Gem loaded',
|
65
|
+
gem_name: gem_spec.name,
|
66
|
+
gem_version: gem_spec.version.to_s)
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
def log_gem_data gem_name
|
71
|
+
gem_spec = Gem.loaded_specs[gem_name]
|
72
|
+
return unless gem_spec
|
73
|
+
|
74
|
+
info('Gem loaded',
|
75
|
+
gem_name: gem_spec.name,
|
76
|
+
gem_version: gem_spec.version.to_s)
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
80
|
+
end
|
@@ -0,0 +1,51 @@
|
|
1
|
+
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
cs__scoped_require 'ougai'
|
5
|
+
cs__scoped_require 'contrast/utils/thread_tracker'
|
6
|
+
|
7
|
+
module Contrast
|
8
|
+
module Logger
|
9
|
+
# Our format for the Ougai logger allowing for custom log format that
|
10
|
+
# extends the behavior of the default Ougai logger
|
11
|
+
class Format < Ougai::Formatters::Bunyan
|
12
|
+
LOG_TRACKER = Contrast::Utils::ThreadTracker.new
|
13
|
+
# Our override of the _call method to add in the extra data that we want,
|
14
|
+
# based on
|
15
|
+
# https://github.com/tilfin/ougai/blob/1fe4fc2587be8eabc47d36dc57ee2814f8a0162b/lib/ougai/formatters/bunyan.rb#L26
|
16
|
+
# By default, it adds:
|
17
|
+
# name: progname || @app_name,
|
18
|
+
# hostname: @hostname,
|
19
|
+
# pid: $$,
|
20
|
+
# level: to_level(severity),
|
21
|
+
# time: time,
|
22
|
+
# v: 0
|
23
|
+
# and we add the fields from #format_hash
|
24
|
+
def _call severity, time, progname, data
|
25
|
+
super(severity,
|
26
|
+
time,
|
27
|
+
progname,
|
28
|
+
format_hash.merge(data)
|
29
|
+
)
|
30
|
+
end
|
31
|
+
|
32
|
+
private
|
33
|
+
|
34
|
+
# The extra values to add to the Bunyan hash. Because this is unique per
|
35
|
+
# thread, we'll create it once and then store it, rather than create a
|
36
|
+
# new hash on every log call.
|
37
|
+
# @return [Hash{Symbol => Object}] the extra data to log
|
38
|
+
# tid: current thread id
|
39
|
+
def format_hash
|
40
|
+
hash = LOG_TRACKER.get(:thread_id_hash)
|
41
|
+
unless hash
|
42
|
+
hash = {
|
43
|
+
tid: Thread.current.object_id
|
44
|
+
}
|
45
|
+
LOG_TRACKER.set(:thread_id_hash, hash)
|
46
|
+
end
|
47
|
+
hash
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
@@ -0,0 +1,149 @@
|
|
1
|
+
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
cs__scoped_require 'logger'
|
5
|
+
cs__scoped_require 'ougai'
|
6
|
+
cs__scoped_require 'singleton'
|
7
|
+
|
8
|
+
cs__scoped_require 'contrast/components/interface'
|
9
|
+
cs__scoped_require 'contrast/extension/module'
|
10
|
+
cs__scoped_require 'contrast/logger/application'
|
11
|
+
cs__scoped_require 'contrast/logger/format'
|
12
|
+
cs__scoped_require 'contrast/logger/time'
|
13
|
+
|
14
|
+
module Contrast
|
15
|
+
module Logger
|
16
|
+
# This class functions to serve as a wrapper around our logging, as we need
|
17
|
+
# to be able to dynamically update level based on updates to TeamServer.
|
18
|
+
class Log
|
19
|
+
include Singleton
|
20
|
+
include Contrast::Components::Interface
|
21
|
+
access_component :config
|
22
|
+
|
23
|
+
DEFAULT_NAME = 'contrast.log'
|
24
|
+
DEFAULT_LEVEL = ::Ougai::Logging::Severity::INFO
|
25
|
+
VALID_LEVELS = ::Ougai::Logging::Severity::SEV_LABEL
|
26
|
+
STDOUT_STR = 'STDOUT'
|
27
|
+
STDERR_STR = 'STDERR'
|
28
|
+
|
29
|
+
attr_reader :previous_path,
|
30
|
+
:previous_level
|
31
|
+
|
32
|
+
def initialize
|
33
|
+
update
|
34
|
+
end
|
35
|
+
|
36
|
+
# Given new settings from TeamServer, update our logging to use the new
|
37
|
+
# file and level, assuming they weren't set by local configuration.
|
38
|
+
#
|
39
|
+
# @param log_file [String] the file to which to log
|
40
|
+
# @param log_level [String] the level at which to log
|
41
|
+
def update log_file = nil, log_level = nil
|
42
|
+
config = CONFIG.root.agent.logger
|
43
|
+
|
44
|
+
config_path = config.path&.length.to_i.positive? ? config.path : nil
|
45
|
+
config_level = config.level&.length&.positive? ? config.level : nil
|
46
|
+
|
47
|
+
# config > settings > default
|
48
|
+
path = valid_path(config_path || log_file)
|
49
|
+
level_const = valid_level(config_level || log_level)
|
50
|
+
|
51
|
+
# don't needlessly recreate logger
|
52
|
+
return if @_logger && (path == previous_path) && (level_const == previous_level)
|
53
|
+
|
54
|
+
@previous_path = path
|
55
|
+
@previous_level = level_const
|
56
|
+
|
57
|
+
@_logger = build(path: path, level_const: level_const)
|
58
|
+
log_update
|
59
|
+
rescue StandardError => e
|
60
|
+
if logger
|
61
|
+
logger.error('Unable to process update to LoggerManager.', e)
|
62
|
+
else
|
63
|
+
puts 'Unable to process update to LoggerManager.'
|
64
|
+
puts e.backtrace.join("\n")
|
65
|
+
end
|
66
|
+
end
|
67
|
+
|
68
|
+
def logger
|
69
|
+
@_logger
|
70
|
+
end
|
71
|
+
|
72
|
+
# StringIO is a valid path because it logs directly to a string buffer
|
73
|
+
def write_permission? path
|
74
|
+
return false if path.nil?
|
75
|
+
return true if path.is_a?(StringIO)
|
76
|
+
return File.writable?(path) if File.exist?(path)
|
77
|
+
|
78
|
+
dir_name = File.dirname(File.absolute_path(path))
|
79
|
+
File.writable?(dir_name)
|
80
|
+
end
|
81
|
+
|
82
|
+
private
|
83
|
+
|
84
|
+
def build path: STDOUT_STR, level_const: DEFAULT_LEVEL
|
85
|
+
logger = case path
|
86
|
+
when STDOUT_STR, STDERR_STR
|
87
|
+
::Ougai::Logger.new(Object.cs__const_get(path))
|
88
|
+
else
|
89
|
+
::Ougai::Logger.new(path)
|
90
|
+
end
|
91
|
+
add_contrast_loggers(logger)
|
92
|
+
logger.progname = 'Contrast Agent'
|
93
|
+
logger.level = level_const
|
94
|
+
logger.formatter = Contrast::Logger::Format.new
|
95
|
+
logger.formatter.datetime_format = '%Y-%m-%dT%H:%M:%S.%L%z'
|
96
|
+
logger
|
97
|
+
end
|
98
|
+
|
99
|
+
def add_contrast_loggers logger
|
100
|
+
logger.extend(Contrast::Logger::Application)
|
101
|
+
logger.extend(Contrast::Logger::Time)
|
102
|
+
end
|
103
|
+
|
104
|
+
def valid_path path
|
105
|
+
path = path.nil? ? Contrast::Utils::ObjectShare::EMPTY_STRING : path
|
106
|
+
return path if path == STDOUT_STR
|
107
|
+
return path if path == STDERR_STR
|
108
|
+
|
109
|
+
path = DEFAULT_NAME if path.empty?
|
110
|
+
if write_permission?(path)
|
111
|
+
path
|
112
|
+
elsif write_permission?(DEFAULT_NAME)
|
113
|
+
# Log once when the path is invalid. We'll change to this path, so no
|
114
|
+
# need to log again.
|
115
|
+
puts "[!] Unable to write to '#{ path }'. Writing to default log '#{ DEFAULT_NAME }' instead." if previous_path != DEFAULT_NAME
|
116
|
+
DEFAULT_NAME
|
117
|
+
else
|
118
|
+
# Log once when the path is invalid. We'll change to this path, so no
|
119
|
+
# need to log again.
|
120
|
+
puts "[!] Unable to write to '#{ path }'. Writing to standard out instead." if previous_path != STDOUT_STR
|
121
|
+
STDOUT_STR
|
122
|
+
end
|
123
|
+
end
|
124
|
+
|
125
|
+
def valid_level level
|
126
|
+
level ||= DEFAULT_LEVEL
|
127
|
+
level = level.upcase
|
128
|
+
if VALID_LEVELS.include?(level)
|
129
|
+
Object.cs__const_get("::Ougai::Logging::Severity::#{ level }")
|
130
|
+
else
|
131
|
+
DEFAULT_LEVEL
|
132
|
+
end
|
133
|
+
rescue StandardError
|
134
|
+
DEFAULT_LEVEL
|
135
|
+
end
|
136
|
+
|
137
|
+
# Log that the Agent log has changed and include some default information
|
138
|
+
# at the start of the log.
|
139
|
+
def log_update
|
140
|
+
logger.debug('Initialized new contrast agent logger')
|
141
|
+
logger.debug_with_time('middleware: log environment') do
|
142
|
+
logger.application_environment
|
143
|
+
logger.application_configuration
|
144
|
+
logger.application_libraries
|
145
|
+
end
|
146
|
+
end
|
147
|
+
end
|
148
|
+
end
|
149
|
+
end
|
@@ -0,0 +1,50 @@
|
|
1
|
+
# Copyright (c) 2020 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 Logger
|
6
|
+
# Our decorator for the Ougai logger allowing for timing and with_level
|
7
|
+
# methods.
|
8
|
+
module Time
|
9
|
+
# Log the message at the given level.
|
10
|
+
#
|
11
|
+
# @param level [String] the name of the method to use. Should be one of
|
12
|
+
# trace, debug, info, warn, error
|
13
|
+
# @param message [String] the message to log
|
14
|
+
def with_level level, message
|
15
|
+
send(level.to_sym, message)
|
16
|
+
end
|
17
|
+
|
18
|
+
# Log, at the debug level, the action with a message including the time
|
19
|
+
# it took for the wrapped function to complete.
|
20
|
+
#
|
21
|
+
# @param msgs [Array<Object>] the arguments to pass to the logger.
|
22
|
+
# msgs[0] will be modified to include the elapsed time.
|
23
|
+
# @param block [Block, Proc] the block to execute
|
24
|
+
def debug_with_time *msgs, &block
|
25
|
+
log_with_time(:debug, *msgs, &block)
|
26
|
+
end
|
27
|
+
|
28
|
+
# Log, at the trace level, the action with a message including the time
|
29
|
+
# it took for the wrapped function to complete.
|
30
|
+
#
|
31
|
+
# @param msgs [Array<Object>] the arguments to pass to the logger.
|
32
|
+
# msgs[0] will be modified to include the elapsed time.
|
33
|
+
# @param block [Block, Proc] the block to execute
|
34
|
+
def trace_with_time *msgs, &block
|
35
|
+
log_with_time(:trace, *msgs, &block)
|
36
|
+
end
|
37
|
+
|
38
|
+
private
|
39
|
+
|
40
|
+
def log_with_time level, *msgs
|
41
|
+
a = Contrast::Utils::Timer.now_ms
|
42
|
+
ret = yield if block_given?
|
43
|
+
z = Contrast::Utils::Timer.now_ms
|
44
|
+
msgs[0] = "#{ msgs[0] }: pid=#{ Process.pid }, elapsed=#{ z - a }ms"
|
45
|
+
send(level, *msgs)
|
46
|
+
ret
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
@@ -0,0 +1,54 @@
|
|
1
|
+
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
cs__scoped_require 'yaml'
|
5
|
+
|
6
|
+
module Contrast
|
7
|
+
# A Rake task to generate a contrast_security.yaml file with some basic settings
|
8
|
+
module Config
|
9
|
+
extend Rake::DSL
|
10
|
+
include Contrast::Components::Interface
|
11
|
+
DEFAULT_CONFIG = {
|
12
|
+
'api' => {
|
13
|
+
'url' => 'Enter your Contrast URL ex: https://app.contrastsecurity.com/Contrast',
|
14
|
+
'api_key' => 'Enter your Contrast api key',
|
15
|
+
'service_key' => 'Enter your Contrast service key',
|
16
|
+
'user_name' => 'Enter your Contrast user name'
|
17
|
+
},
|
18
|
+
'agent' => {
|
19
|
+
'service' => {
|
20
|
+
'logger' => {
|
21
|
+
'path' => 'contrast_service.log',
|
22
|
+
'level' => 'ERROR' # DEBUG | INFO | WARN | ERROR
|
23
|
+
},
|
24
|
+
'socket' => '/tmp/contrast_service.sock'
|
25
|
+
},
|
26
|
+
'logger' => {
|
27
|
+
'level' => 'ERROR',
|
28
|
+
'path' => 'contrast_agent.log'
|
29
|
+
}
|
30
|
+
}
|
31
|
+
}.cs__freeze
|
32
|
+
|
33
|
+
namespace :contrast do
|
34
|
+
namespace :config do
|
35
|
+
desc 'Create a contrast_security.yaml in the applications root directory'
|
36
|
+
task :create do
|
37
|
+
execution_directory = Dir.pwd
|
38
|
+
target_path = File.join(execution_directory, 'contrast_security.yaml')
|
39
|
+
if File.exist?(target_path)
|
40
|
+
puts 'WARNING: contrast_security.yaml already exists'
|
41
|
+
else
|
42
|
+
File.open(target_path, 'w') do |f|
|
43
|
+
f.write(YAML.dump(DEFAULT_CONFIG))
|
44
|
+
end
|
45
|
+
|
46
|
+
puts "Created contrast_security.yaml at #{ target_path }"
|
47
|
+
puts 'Open the file and enter your Contrast Security api keys or set them via environment variables'
|
48
|
+
puts 'Visit our documentation site for more details: https://docs.contrastsecurity.com/installation-rubyconfig.html'
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
@@ -33,14 +33,8 @@ module Contrast
|
|
33
33
|
|
34
34
|
# Stop the service if it is running
|
35
35
|
def self.stop_service
|
36
|
-
|
37
|
-
|
38
|
-
pid = `for /f "tokens=2 delims=," %a in ('tasklist /nh /fi "imagename eq Contrast_Service.exe" /fo csv') do @echo %a`
|
39
|
-
`Taskkill /PID #{ pid } /F` if pid
|
40
|
-
else
|
41
|
-
pid = `ps aux | grep contrast-servic[e] | awk '{print $2}'`
|
42
|
-
`kill #{ pid }` if pid
|
43
|
-
end
|
36
|
+
pid = `ps aux | grep contrast-servic[e] | awk '{print $2}'`
|
37
|
+
`kill #{ pid }` if pid
|
44
38
|
end
|
45
39
|
|
46
40
|
namespace :contrast do
|
@@ -49,8 +43,6 @@ module Contrast
|
|
49
43
|
task :start do
|
50
44
|
if Contrast::Utils::OS.running?
|
51
45
|
puts 'Contrast Service already running. No need to start'
|
52
|
-
elsif !CONTRAST_SERVICE.enabled?
|
53
|
-
puts 'Contrast Service disabled by configuration. Not starting.'
|
54
46
|
else
|
55
47
|
start_service
|
56
48
|
end
|
@@ -64,10 +56,8 @@ module Contrast
|
|
64
56
|
task :status do
|
65
57
|
if Contrast::Utils::OS.running?
|
66
58
|
puts 'online'
|
67
|
-
elsif CONTRAST_SERVICE.enabled?
|
68
|
-
puts 'offline'
|
69
59
|
else
|
70
|
-
puts '
|
60
|
+
puts 'offline'
|
71
61
|
end
|
72
62
|
end
|
73
63
|
end
|
@@ -19,7 +19,8 @@ module Contrast
|
|
19
19
|
end
|
20
20
|
|
21
21
|
def update
|
22
|
-
|
22
|
+
self.class.reset_sampling_control
|
23
|
+
@enabled = self.class.sampling_enabled?
|
23
24
|
@baseline = self.class.sampling_control[:baseline]
|
24
25
|
@request_frequency = self.class.sampling_control[:request_frequency]
|
25
26
|
@response_frequency = self.class.sampling_control[:response_frequency]
|
@@ -28,10 +29,6 @@ module Contrast
|
|
28
29
|
true
|
29
30
|
end
|
30
31
|
|
31
|
-
def reset
|
32
|
-
@requests.clear
|
33
|
-
end
|
34
|
-
|
35
32
|
def sample? request
|
36
33
|
history = request_history(request)
|
37
34
|
history.hit
|
@@ -64,20 +61,18 @@ module Contrast
|
|
64
61
|
|
65
62
|
# RequestHistory tracks one requests history per time window
|
66
63
|
class RequestHistory
|
67
|
-
|
64
|
+
attr_reader :window_start, :window_hit
|
68
65
|
|
69
66
|
def initialize
|
70
67
|
@window_start = Contrast::Utils::Timer.now_ms
|
71
|
-
@total_hit = 0
|
72
68
|
@window_hit = 0
|
73
69
|
end
|
74
70
|
|
75
71
|
def elapsed
|
76
|
-
Contrast::Utils::Timer.now_ms -
|
72
|
+
Contrast::Utils::Timer.now_ms - window_start
|
77
73
|
end
|
78
74
|
|
79
75
|
def hit cnt = 1
|
80
|
-
@total_hit += cnt
|
81
76
|
@window_hit += cnt
|
82
77
|
end
|
83
78
|
|