contrast-agent 3.10.2 → 3.11.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (266) hide show
  1. checksums.yaml +4 -4
  2. data/.simplecov +5 -2
  3. data/ext/build_funchook.rb +13 -17
  4. data/ext/cs__assess_active_record_named/cs__active_record_named.c +5 -12
  5. data/ext/cs__assess_active_record_named/extconf.rb +3 -0
  6. data/ext/cs__assess_array/cs__assess_array.c +3 -5
  7. data/ext/cs__assess_array/extconf.rb +3 -0
  8. data/ext/cs__assess_basic_object/cs__assess_basic_object.c +10 -4
  9. data/ext/cs__assess_basic_object/extconf.rb +3 -0
  10. data/ext/cs__assess_fiber_track/cs__assess_fiber_track.c +4 -3
  11. data/ext/cs__assess_fiber_track/cs__assess_fiber_track.h +3 -3
  12. data/ext/cs__assess_fiber_track/extconf.rb +3 -0
  13. data/ext/cs__assess_hash/cs__assess_hash.c +40 -17
  14. data/ext/cs__assess_hash/cs__assess_hash.h +4 -6
  15. data/ext/cs__assess_hash/extconf.rb +3 -0
  16. data/ext/cs__assess_kernel/cs__assess_kernel.c +10 -8
  17. data/ext/cs__assess_kernel/cs__assess_kernel.h +1 -0
  18. data/ext/cs__assess_kernel/extconf.rb +3 -0
  19. data/ext/cs__assess_marshal_module/cs__assess_marshal_module.c +3 -6
  20. data/ext/cs__assess_marshal_module/extconf.rb +3 -0
  21. data/ext/cs__assess_module/cs__assess_module.c +13 -9
  22. data/ext/cs__assess_module/extconf.rb +3 -0
  23. data/ext/cs__assess_regexp/cs__assess_regexp.c +13 -9
  24. data/ext/cs__assess_regexp/cs__assess_regexp.h +1 -0
  25. data/ext/cs__assess_regexp/extconf.rb +3 -0
  26. data/ext/cs__assess_string/cs__assess_string.c +5 -8
  27. data/ext/cs__assess_string/cs__assess_string.h +2 -1
  28. data/ext/cs__assess_string/extconf.rb +3 -0
  29. data/ext/cs__assess_string_interpolation26/cs__assess_string_interpolation26.c +2 -2
  30. data/ext/cs__assess_string_interpolation26/cs__assess_string_interpolation26.h +3 -3
  31. data/ext/cs__assess_string_interpolation26/extconf.rb +3 -0
  32. data/ext/cs__assess_yield_track/cs__assess_yield_track.h +1 -1
  33. data/ext/cs__assess_yield_track/extconf.rb +3 -0
  34. data/ext/cs__common/cs__common.c +79 -0
  35. data/ext/cs__common/cs__common.h +34 -0
  36. data/ext/cs__common/extconf.rb +9 -8
  37. data/ext/cs__contrast_patch/cs__contrast_patch.h +1 -6
  38. data/ext/cs__contrast_patch/extconf.rb +3 -0
  39. data/ext/cs__protect_kernel/cs__protect_kernel.c +20 -11
  40. data/ext/cs__protect_kernel/extconf.rb +3 -0
  41. data/ext/extconf_common.rb +10 -8
  42. data/funchook/autom4te.cache/output.0 +1 -13
  43. data/funchook/autom4te.cache/requests +44 -45
  44. data/funchook/autom4te.cache/traces.0 +0 -3
  45. data/funchook/config.log +378 -217
  46. data/funchook/config.status +23 -24
  47. data/funchook/configure +1 -13
  48. data/funchook/src/Makefile +7 -7
  49. data/funchook/src/config.h +2 -2
  50. data/funchook/src/decoder.o +0 -0
  51. data/funchook/src/distorm.o +0 -0
  52. data/funchook/src/funchook.o +0 -0
  53. data/funchook/src/funchook_io.o +0 -0
  54. data/funchook/src/funchook_syscall.o +0 -0
  55. data/funchook/src/funchook_unix.o +0 -0
  56. data/funchook/src/funchook_x86.o +0 -0
  57. data/funchook/src/instructions.o +0 -0
  58. data/funchook/src/insts.o +0 -0
  59. data/funchook/src/libfunchook.dylib +0 -0
  60. data/funchook/src/mnemonics.o +0 -0
  61. data/funchook/src/operands.o +0 -0
  62. data/funchook/src/os_func.o +0 -0
  63. data/funchook/src/os_func_unix.o +0 -0
  64. data/funchook/src/prefix.o +0 -0
  65. data/funchook/src/printf_base.o +0 -0
  66. data/funchook/src/textdefs.o +0 -0
  67. data/funchook/src/wstring.o +0 -0
  68. data/funchook/test/Makefile +2 -2
  69. data/funchook/test/funchook_test +0 -0
  70. data/funchook/test/libfunchook_test.so +0 -0
  71. data/funchook/test/libfunchook_test.so.dSYM/Contents/Info.plist +20 -0
  72. data/funchook/test/libfunchook_test.so.dSYM/Contents/Resources/DWARF/libfunchook_test.so +0 -0
  73. data/funchook/test/test_main.o +0 -0
  74. data/funchook/test/x86_64_test.o +0 -0
  75. data/lib/contrast.rb +1 -0
  76. data/lib/contrast/agent.rb +21 -15
  77. data/lib/contrast/agent/assess.rb +1 -2
  78. data/lib/contrast/agent/assess/adjusted_span.rb +3 -1
  79. data/lib/contrast/agent/assess/contrast_event.rb +16 -62
  80. data/lib/contrast/agent/assess/events/event_factory.rb +25 -0
  81. data/lib/contrast/agent/assess/events/source_event.rb +83 -0
  82. data/lib/contrast/agent/assess/insulator.rb +0 -4
  83. data/lib/contrast/agent/assess/policy/patcher.rb +5 -2
  84. data/lib/contrast/agent/assess/policy/policy_node.rb +0 -7
  85. data/lib/contrast/agent/assess/policy/policy_scanner.rb +1 -1
  86. data/lib/contrast/agent/assess/policy/preshift.rb +1 -1
  87. data/lib/contrast/agent/assess/policy/propagation_method.rb +65 -33
  88. data/lib/contrast/agent/assess/policy/propagation_node.rb +2 -1
  89. data/lib/contrast/agent/assess/policy/propagator.rb +1 -0
  90. data/lib/contrast/agent/assess/policy/propagator/match_data.rb +80 -0
  91. data/lib/contrast/agent/assess/policy/propagator/select.rb +35 -22
  92. data/lib/contrast/agent/assess/policy/propagator/split.rb +26 -6
  93. data/lib/contrast/agent/assess/policy/propagator/substitution.rb +2 -0
  94. data/lib/contrast/agent/assess/policy/rewriter_patch.rb +37 -26
  95. data/lib/contrast/agent/assess/policy/source_method.rb +20 -20
  96. data/lib/contrast/agent/assess/policy/source_node.rb +0 -15
  97. data/lib/contrast/agent/assess/policy/trigger_method.rb +29 -40
  98. data/lib/contrast/agent/assess/policy/trigger_node.rb +3 -6
  99. data/lib/contrast/agent/assess/policy/trigger_validation/ssrf_validator.rb +2 -31
  100. data/lib/contrast/agent/assess/properties.rb +5 -3
  101. data/lib/contrast/agent/assess/rule/base.rb +1 -5
  102. data/lib/contrast/agent/assess/rule/csrf/csrf_applicator.rb +2 -22
  103. data/lib/contrast/agent/assess/rule/csrf/csrf_watcher.rb +5 -1
  104. data/lib/contrast/agent/assess/rule/provider/hardcoded_value_rule.rb +2 -2
  105. data/lib/contrast/agent/assess/rule/redos.rb +4 -4
  106. data/lib/contrast/agent/assess/tag.rb +24 -14
  107. data/lib/contrast/agent/at_exit_hook.rb +16 -13
  108. data/lib/contrast/agent/class_reopener.rb +14 -4
  109. data/lib/contrast/agent/deadzone/policy/policy.rb +2 -2
  110. data/lib/contrast/agent/disable_reaction.rb +3 -4
  111. data/lib/contrast/agent/exclusion_matcher.rb +8 -48
  112. data/lib/contrast/agent/feature_state.rb +45 -75
  113. data/lib/contrast/agent/logger.rb +173 -0
  114. data/lib/contrast/agent/middleware.rb +87 -250
  115. data/lib/contrast/agent/module_data.rb +2 -1
  116. data/lib/contrast/agent/patching/policy/after_load_patch.rb +2 -1
  117. data/lib/contrast/agent/patching/policy/after_load_patcher.rb +21 -4
  118. data/lib/contrast/agent/patching/policy/method_policy.rb +3 -3
  119. data/lib/contrast/agent/patching/policy/module_policy.rb +0 -25
  120. data/lib/contrast/agent/patching/policy/patch.rb +96 -23
  121. data/lib/contrast/agent/patching/policy/patcher.rb +19 -19
  122. data/lib/contrast/agent/patching/policy/policy.rb +7 -7
  123. data/lib/contrast/agent/patching/policy/policy_node.rb +2 -10
  124. data/lib/contrast/agent/patching/policy/trigger_node.rb +1 -4
  125. data/lib/contrast/agent/protect/rule/base.rb +14 -33
  126. data/lib/contrast/agent/protect/rule/base_service.rb +3 -1
  127. data/lib/contrast/agent/protect/rule/cmd_injection.rb +10 -13
  128. data/lib/contrast/agent/protect/rule/csrf.rb +2 -1
  129. data/lib/contrast/agent/protect/rule/csrf/csrf_evaluator.rb +11 -14
  130. data/lib/contrast/agent/protect/rule/default_scanner.rb +0 -13
  131. data/lib/contrast/agent/protect/rule/deserialization.rb +2 -0
  132. data/lib/contrast/agent/protect/rule/http_method_tampering.rb +2 -2
  133. data/lib/contrast/agent/protect/rule/no_sqli.rb +4 -4
  134. data/lib/contrast/agent/protect/rule/path_traversal.rb +5 -4
  135. data/lib/contrast/agent/protect/rule/sqli.rb +1 -0
  136. data/lib/contrast/agent/protect/rule/unsafe_file_upload.rb +2 -0
  137. data/lib/contrast/agent/protect/rule/xss.rb +2 -0
  138. data/lib/contrast/agent/protect/rule/xxe.rb +10 -4
  139. data/lib/contrast/agent/railtie.rb +2 -8
  140. data/lib/contrast/agent/reaction_processor.rb +5 -5
  141. data/lib/contrast/agent/request.rb +9 -12
  142. data/lib/contrast/agent/request_context.rb +12 -14
  143. data/lib/contrast/agent/request_handler.rb +35 -0
  144. data/lib/contrast/agent/response.rb +33 -30
  145. data/lib/contrast/agent/rewriter.rb +22 -10
  146. data/lib/contrast/agent/rule_set.rb +49 -0
  147. data/lib/contrast/agent/scope.rb +0 -6
  148. data/lib/contrast/agent/service_heartbeat.rb +1 -2
  149. data/lib/contrast/agent/settings_state.rb +10 -74
  150. data/lib/contrast/agent/socket_client.rb +17 -11
  151. data/lib/contrast/agent/static_analysis.rb +42 -0
  152. data/lib/contrast/agent/thread.rb +1 -1
  153. data/lib/contrast/agent/tracepoint_hook.rb +1 -5
  154. data/lib/contrast/agent/version.rb +1 -1
  155. data/lib/contrast/api.rb +1 -1
  156. data/lib/contrast/api/decorators.rb +14 -0
  157. data/lib/contrast/api/decorators/application_settings.rb +37 -0
  158. data/lib/contrast/api/decorators/application_update.rb +66 -0
  159. data/lib/contrast/api/decorators/exclusion.rb +20 -0
  160. data/lib/contrast/api/decorators/input_analysis.rb +17 -0
  161. data/lib/contrast/api/decorators/server_features.rb +24 -0
  162. data/lib/contrast/api/speedracer.rb +27 -23
  163. data/lib/contrast/api/tcp_socket.rb +0 -2
  164. data/lib/contrast/components/agent.rb +27 -22
  165. data/lib/contrast/components/app_context.rb +18 -43
  166. data/lib/contrast/components/config.rb +7 -5
  167. data/lib/contrast/components/contrast_service.rb +0 -4
  168. data/lib/contrast/components/heap_dump.rb +12 -8
  169. data/lib/contrast/components/interface.rb +11 -10
  170. data/lib/contrast/components/logger.rb +3 -68
  171. data/lib/contrast/components/sampling.rb +22 -11
  172. data/lib/contrast/components/settings.rb +18 -5
  173. data/lib/contrast/config/base_configuration.rb +1 -0
  174. data/lib/contrast/config/default_value.rb +1 -0
  175. data/lib/contrast/config/protect_rule_configuration.rb +0 -14
  176. data/lib/contrast/extensions/framework/rails/action_controller_inheritance.rb +39 -0
  177. data/lib/contrast/extensions/framework/rails/active_record_named.rb +13 -8
  178. data/lib/contrast/extensions/ruby_core/assess.rb +1 -2
  179. data/lib/contrast/extensions/ruby_core/assess/assess_extension.rb +27 -22
  180. data/lib/contrast/extensions/ruby_core/assess/erb.rb +0 -8
  181. data/lib/contrast/extensions/ruby_core/assess/exec_trigger.rb +6 -8
  182. data/lib/contrast/extensions/ruby_core/assess/fiber.rb +88 -100
  183. data/lib/contrast/extensions/ruby_core/assess/hash.rb +32 -15
  184. data/lib/contrast/extensions/ruby_core/assess/kernel.rb +28 -27
  185. data/lib/contrast/extensions/ruby_core/assess/regexp.rb +74 -196
  186. data/lib/contrast/extensions/ruby_core/assess/string.rb +15 -7
  187. data/lib/contrast/extensions/ruby_core/assess/tilt_template_trigger.rb +29 -24
  188. data/lib/contrast/extensions/ruby_core/assess/xpath_library_trigger.rb +2 -2
  189. data/lib/contrast/extensions/ruby_core/eval_trigger.rb +0 -1
  190. data/lib/contrast/extensions/ruby_core/inventory/datastores.rb +2 -2
  191. data/lib/contrast/extensions/ruby_core/protect/applies_command_injection_rule.rb +9 -20
  192. data/lib/contrast/extensions/ruby_core/protect/applies_deserialization_rule.rb +9 -19
  193. data/lib/contrast/extensions/ruby_core/protect/applies_no_sqli_rule.rb +10 -27
  194. data/lib/contrast/extensions/ruby_core/protect/applies_path_traversal_rule.rb +13 -21
  195. data/lib/contrast/extensions/ruby_core/protect/applies_sqli_rule.rb +11 -23
  196. data/lib/contrast/extensions/ruby_core/protect/applies_xxe_rule.rb +62 -78
  197. data/lib/contrast/extensions/ruby_core/protect/rule_applicator.rb +50 -0
  198. data/lib/contrast/framework/base_support.rb +10 -0
  199. data/lib/contrast/framework/manager.rb +28 -2
  200. data/lib/contrast/framework/platform_version.rb +1 -0
  201. data/lib/contrast/framework/rails_support.rb +16 -0
  202. data/lib/contrast/framework/sinatra_support.rb +12 -2
  203. data/lib/contrast/framework/view_technologies_descriptor.rb +1 -0
  204. data/lib/contrast/tasks/service.rb +2 -8
  205. data/lib/contrast/utils/assess/sampling_util.rb +4 -9
  206. data/lib/contrast/utils/assess/tracking_util.rb +7 -1
  207. data/lib/contrast/utils/boolean_util.rb +2 -2
  208. data/lib/contrast/utils/cache.rb +0 -11
  209. data/lib/contrast/utils/class_util.rb +20 -1
  210. data/lib/contrast/utils/gemfile_reader.rb +5 -3
  211. data/lib/contrast/utils/hash_digest.rb +0 -4
  212. data/lib/contrast/utils/heap_dump_util.rb +12 -11
  213. data/lib/contrast/utils/invalid_configuration_util.rb +1 -1
  214. data/lib/contrast/utils/inventory_util.rb +2 -2
  215. data/lib/contrast/utils/io_util.rb +1 -11
  216. data/lib/contrast/utils/job_servers_running.rb +2 -2
  217. data/lib/contrast/utils/object_share.rb +1 -27
  218. data/lib/contrast/utils/os.rb +1 -25
  219. data/lib/contrast/utils/rack_assess_session_cookie.rb +3 -3
  220. data/lib/contrast/utils/rails_assess_configuration.rb +3 -3
  221. data/lib/contrast/utils/service_response_util.rb +27 -53
  222. data/lib/contrast/utils/service_sender_util.rb +9 -5
  223. data/lib/contrast/utils/sinatra_helper.rb +0 -6
  224. data/lib/contrast/utils/stack_trace_utils.rb +86 -182
  225. data/lib/contrast/utils/string_utils.rb +18 -2
  226. data/lib/contrast/utils/tag_util.rb +11 -1
  227. data/lib/contrast/utils/thread_tracker.rb +2 -2
  228. data/lib/contrast/utils/timer.rb +0 -40
  229. data/resources/assess/policy.json +33 -21
  230. data/resources/protect/policy.json +9 -9
  231. data/ruby-agent.gemspec +6 -3
  232. metadata +76 -51
  233. data/ext/cs__assess_regexp_track/cs__assess_regexp_track.c +0 -63
  234. data/ext/cs__assess_regexp_track/cs__assess_regexp_track.h +0 -29
  235. data/ext/cs__assess_regexp_track/extconf.rb +0 -2
  236. data/funchook/src/libfunchook.so +0 -0
  237. data/lib/contrast/agent/assess/frozen_properties.rb +0 -41
  238. data/lib/contrast/agent/logger_manager.rb +0 -116
  239. data/lib/contrast/delegators.rb +0 -9
  240. data/lib/contrast/delegators/application_update.rb +0 -32
  241. data/lib/contrast/utils/comment_range.rb +0 -19
  242. data/lib/contrast/utils/environment_util.rb +0 -81
  243. data/lib/contrast/utils/performs_logging.rb +0 -152
  244. data/resources/factory-bot-spec/spec_helper.rb +0 -30
  245. data/resources/rubocops/kernel/catch_cop.rb +0 -37
  246. data/resources/rubocops/kernel/require_cop.rb +0 -37
  247. data/resources/rubocops/kernel/require_relative_cop.rb +0 -33
  248. data/resources/rubocops/module/autoload_cop.rb +0 -37
  249. data/resources/rubocops/module/const_defined_cop.rb +0 -37
  250. data/resources/rubocops/module/const_get_cop.rb +0 -37
  251. data/resources/rubocops/module/const_set_cop.rb +0 -37
  252. data/resources/rubocops/module/constants_cop.rb +0 -37
  253. data/resources/rubocops/module/name_cop.rb +0 -37
  254. data/resources/rubocops/object/class_cop.rb +0 -37
  255. data/resources/rubocops/object/freeze_cop.rb +0 -37
  256. data/resources/rubocops/object/frozen_cop.rb +0 -37
  257. data/resources/rubocops/object/is_a_cop.rb +0 -37
  258. data/resources/rubocops/object/method_cop.rb +0 -37
  259. data/resources/rubocops/object/respond_to_cop.rb +0 -37
  260. data/resources/rubocops/object/singleton_class_cop.rb +0 -37
  261. data/resources/rubocops/regexp/spelling_cop.rb +0 -44
  262. data/resources/rubocops/thread/new_cop.rb +0 -39
  263. data/resources/ruby-spec/ancestors_spec.rb +0 -70
  264. data/resources/ruby-spec/modulo_spec.rb +0 -831
  265. data/resources/ruby-spec/parameters_spec.rb +0 -261
  266. data/resources/ruby-spec/ruby_spec_spec_helper.rb +0 -35
@@ -1,63 +0,0 @@
1
- /* Copyright (c) 2020 Contrast Security, Inc. See
2
- * https://www.contrastsecurity.com/enduser-terms-0317a for more details. */
3
-
4
- #include "cs__assess_regexp_track.h"
5
- #include <funchook.h>
6
- #include <ruby.h>
7
-
8
- static VALUE rb_reg_match_pre_hook(VALUE match) {
9
- VALUE result = rb_reg_match_pre_original(match);
10
- result = rb_funcall(regexp_class, track_rb_pre_match, 2, match, result);
11
- return result;
12
- }
13
-
14
- static VALUE rb_reg_match_post_hook(VALUE match) {
15
- VALUE result = rb_reg_match_post_original(match);
16
- result = rb_funcall(regexp_class, track_rb_post_match, 2, match, result);
17
- return result;
18
- }
19
-
20
- static VALUE rb_reg_match_last_hook(VALUE match) {
21
- VALUE result = rb_reg_match_last_original(match);
22
- result =
23
- rb_funcall(regexp_class, track_rb_reg_match_last, 2, match, result);
24
- return result;
25
- }
26
-
27
- static VALUE rb_reg_nth_match_hook(int nth, VALUE match) {
28
- VALUE result = rb_reg_nth_match_original(nth, match);
29
- result = rb_funcall(regexp_class, track_rb_n_match, 2, match, result);
30
- return result;
31
- }
32
-
33
- static int install_regexp_hooks() {
34
- funchook_t *funchook = funchook_create();
35
-
36
- rb_reg_match_pre_original = rb_reg_match_pre;
37
- funchook_prepare(funchook, (void **)&rb_reg_match_pre_original,
38
- rb_reg_match_pre_hook);
39
-
40
- rb_reg_match_post_original = rb_reg_match_post;
41
- funchook_prepare(funchook, (void **)&rb_reg_match_post_original,
42
- rb_reg_match_post_hook);
43
-
44
- rb_reg_match_last_original = rb_reg_match_last;
45
- funchook_prepare(funchook, (void **)&rb_reg_match_last_original,
46
- rb_reg_match_last_hook);
47
-
48
- rb_reg_nth_match_original = rb_reg_nth_match;
49
- funchook_prepare(funchook, (void **)&rb_reg_nth_match_original,
50
- rb_reg_nth_match_hook);
51
-
52
- funchook_install(funchook, 0);
53
- return 0;
54
- }
55
-
56
- void Init_cs__assess_regexp_track(void) {
57
- regexp_class = rb_define_class("Regexp", rb_cObject);
58
- track_rb_n_match = rb_intern("track_rb_n_match");
59
- track_rb_pre_match = rb_intern("track_rb_pre_match");
60
- track_rb_post_match = rb_intern("track_rb_post_match");
61
- track_rb_reg_match_last = rb_intern("track_rb_reg_match_last");
62
- install_regexp_hooks();
63
- }
@@ -1,29 +0,0 @@
1
- #include <funchook.h>
2
- #include <ruby.h>
3
-
4
- static VALUE regexp_class;
5
- static VALUE track_rb_n_match;
6
- static VALUE track_rb_pre_match;
7
- static VALUE track_rb_post_match;
8
- static VALUE track_rb_reg_match_last;
9
-
10
- VALUE rb_reg_match_pre(VALUE match);
11
- static VALUE *(*rb_reg_match_pre_original)(VALUE match);
12
-
13
- VALUE rb_reg_match_post(VALUE match);
14
- static VALUE *(*rb_reg_match_post_original)(VALUE match);
15
-
16
- VALUE rb_reg_match_last(VALUE match);
17
- static VALUE *(*rb_reg_match_last_original)(VALUE match);
18
-
19
- VALUE rb_reg_nth_match(int nth, VALUE match);
20
- static VALUE *(*rb_reg_nth_match_original)(int nth, VALUE match);
21
-
22
- static VALUE rb_reg_match_pre_hook(VALUE match);
23
- static VALUE rb_reg_match_post_hook(VALUE match);
24
- static VALUE rb_reg_match_last_hook(VALUE match);
25
- static VALUE rb_reg_nth_match_hook(int nth, VALUE match);
26
-
27
- static int install_regexp_hooks();
28
-
29
- void Init_cs__assess_regexp_track(void);
@@ -1,2 +0,0 @@
1
- $TO_MAKE = File.basename(__dir__)
2
- require_relative '../extconf_common'
Binary file
@@ -1,41 +0,0 @@
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 'set'
5
- cs__scoped_require 'base64'
6
- cs__scoped_require 'contrast/utils/tag_util'
7
- cs__scoped_require 'contrast/utils/prevent_serialization'
8
-
9
- module Contrast
10
- module Agent
11
- module Assess
12
- # This class is used as an NoOP version of Properties. We'll pass this to
13
- # any attempt to access Properties on a frozen object including
14
- # AssessExtension iff that object did not have Properties before it was
15
- # placed in a frozen state.
16
- class FrozenProperties
17
- include Contrast::Utils::PreventSerialization
18
-
19
- def events
20
- Contrast::Utils::ObjectShare::EMPTY_ARRAY
21
- end
22
-
23
- def properties
24
- Contrast::Utils::ObjectShare::EMPTY_HASH
25
- end
26
-
27
- def tracked?
28
- false
29
- end
30
-
31
- def tagged? _label
32
- false
33
- end
34
-
35
- def any_tags_between? _start, _finish
36
- false
37
- end
38
- end
39
- end
40
- end
41
- end
@@ -1,116 +0,0 @@
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
-
6
- cs__scoped_require 'contrast/extensions/ruby_core/module'
7
- cs__scoped_require 'contrast/components/interface'
8
-
9
- module Contrast
10
- module Agent
11
- # This class functions to serve as a wrapper around our logging, as we need
12
- # to be able to dynamically update level based on updates to TeamServer.
13
- class LoggerManager
14
- include Contrast::Components::Interface
15
- access_component :app_context, :logging, :config
16
-
17
- DEFAULT_NAME = 'contrast.log'
18
- DEFAULT_LEVEL = ::Logger::INFO
19
- VALID_LEVELS = %w[INFO WARN DEBUG FATAL UNKNOWN ERROR].cs__freeze
20
- STDOUT_STR = 'STDOUT'
21
- STDERR_STR = 'STDERR'
22
-
23
- attr_reader :current,
24
- :previous_path,
25
- :previous_level
26
-
27
- def initialize
28
- update
29
- rescue StandardError => e
30
- Contrast::Agent::FeatureState::Logging::FALLBACK.puts 'Unable to initialize regular logger in LoggerManager.'
31
- Contrast::Agent::FeatureState::Logging::FALLBACK.puts e.backtrace.join(Contrast::Utils::ObjectShare::NEW_LINE)
32
- end
33
-
34
- def update log_file = nil, log_level = nil
35
- config = CONFIG.root.agent.logger
36
-
37
- config_path = config.path&.length.to_i.positive? ? config.path : nil
38
- config_level = config.level&.length&.positive? ? config.level : nil
39
-
40
- # config > settings > default
41
- path = valid_path(config_path || log_file)
42
- level_const = valid_level(config_level || log_level)
43
-
44
- # don't needlessly recreate logger
45
- return if @current && (path == previous_path) && (level_const == previous_level)
46
-
47
- @previous_path = path
48
- @previous_level = level_const
49
-
50
- @current = build(path: path, level_const: level_const)
51
-
52
- @current.debug { 'Initialized new contrast agent logger' }
53
-
54
- self
55
- rescue StandardError => e
56
- Contrast::Agent::FeatureState::Logging::FALLBACK.puts 'Unable to process update to LoggerManager.'
57
- Contrast::Agent::FeatureState::Logging::FALLBACK.puts e.backtrace.join(Contrast::Utils::ObjectShare::NEW_LINE)
58
- end
59
-
60
- private
61
-
62
- def default_progname
63
- 'Contrast Agent'
64
- end
65
-
66
- def build path: STDOUT_STR, progname: default_progname, level_const: DEFAULT_LEVEL
67
- current = case path
68
- when STDOUT_STR, STDERR_STR
69
- ::Logger.new(Object.cs__const_get(path))
70
- else
71
- ::Logger.new(path)
72
- end
73
-
74
- current.progname = progname
75
- current.level = level_const
76
-
77
- current.formatter = proc do |severity_f, datetime_f, progname_f, msg_f|
78
- "#{ datetime_f.strftime('%Y-%m-%d %H:%M:%S,%L') } [#{ progname_f }] #{ severity_f } - #{ msg_f }\n"
79
- end
80
-
81
- current
82
- end
83
-
84
- def valid_path path
85
- path = path.nil? ? Contrast::Utils::ObjectShare::EMPTY_STRING : path
86
- return path if path == STDOUT_STR
87
- return path if path == STDERR_STR
88
-
89
- path = DEFAULT_NAME if path.empty?
90
- if Contrast::Utils::IOUtil.write_permission?(path)
91
- path
92
- else
93
- if File.directory?(path)
94
- Contrast::Agent::FeatureState::Logging::FALLBACK.puts "Unable to create log in directory: #{ path }. \n Writing to standard out instead"
95
- else
96
- Contrast::Agent::FeatureState::Logging::FALLBACK.puts "Unable to write to log file: #{ path } \n Writing to standard out instead"
97
- end
98
-
99
- STDOUT_STR
100
- end
101
- end
102
-
103
- def valid_level level
104
- level = level.nil? ? DEFAULT_LEVEL : level
105
- level = 'DEBUG' if level == 'TRACE'
106
- if VALID_LEVELS.include?(level)
107
- Object.cs__const_get("::Logger::#{ level }")
108
- else
109
- DEFAULT_LEVEL
110
- end
111
- rescue StandardError
112
- DEFAULT_LEVEL
113
- end
114
- end
115
- end
116
- end
@@ -1,9 +0,0 @@
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
- # Used to define decorators for objects to add behavior without polluting the namespace
6
- module Delegators
7
- end
8
- end
9
- cs__scoped_require 'contrast/delegators/application_update'
@@ -1,32 +0,0 @@
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 Delegators
6
- # Used to decorate the ApplicationUpdate protobuf model so it can own some of the data massaging required for
7
- # AppUpdate dtm
8
- class ApplicationUpdate < SimpleDelegator
9
- def append_view_technology_descriptor_data view_technology_descriptors
10
- view_technology_descriptors.each do |vtd|
11
- vtd.technology_names.each do |tech_name|
12
- @delegate_sd_obj.technologies[tech_name] = true
13
- end
14
- end
15
- end
16
-
17
- # TS only allows you to report 500 routes per application
18
- def append_route_coverage_data route_coverage_dtms
19
- route_coverage_dtms.take(500).each do |route_coverage_dtm|
20
- @delegate_sd_obj.routes << route_coverage_dtm
21
- end
22
- end
23
-
24
- def append_platform_version platform_version
25
- @delegate_sd_obj.platform = Contrast::Api::Dtm::Platform.new if @delegate_sd_obj.platform.nil?
26
- @delegate_sd_obj.platform.major = platform_version.major
27
- @delegate_sd_obj.platform.minor = platform_version.minor
28
- @delegate_sd_obj.platform.build = platform_version.patch
29
- end
30
- end
31
- end
32
- end
@@ -1,19 +0,0 @@
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 Utils
6
- # Stores the range of a comment
7
- class CommentRange
8
- COMMENT_START = /<!--/.cs__freeze
9
- COMMENT_END = '-->'
10
-
11
- attr_reader :open, :close
12
-
13
- def initialize open_idx, close_idx
14
- @open = open_idx
15
- @close = close_idx
16
- end
17
- end
18
- end
19
- end
@@ -1,81 +0,0 @@
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 'socket'
5
-
6
- cs__scoped_require 'contrast/extensions/ruby_core/module'
7
- cs__scoped_require 'contrast/components/interface'
8
- cs__scoped_require 'contrast/utils/object_share'
9
- cs__scoped_require 'contrast/utils/string_utils'
10
-
11
- module Contrast
12
- module Utils
13
- # Gather information about the application and server environment
14
- # that the agent is running in.
15
- class EnvironmentUtil
16
- CS_VERSION = 'VERSION'
17
-
18
- # Possible names of constants that would hold version info
19
- # TODO - RUBY-770
20
- VERSION_CONSTANT_CANDIDATES = %w[
21
- VERSION
22
- ::VERSION
23
- Version::VERSION
24
- ::Version::VERSION
25
- ::Application::VERSION
26
- ].cs__freeze
27
-
28
- class << self
29
- ######### These are helpers ####################
30
-
31
- def present? str
32
- !str.nil? && !str.to_s.empty?
33
- end
34
-
35
- ######### Actually env/framework dependent ####################
36
-
37
- # See CONTRAST-16380 for more details
38
- # TODO RUBY-770
39
- def determine_application_version
40
- @_determine_application_version ||= begin
41
- candidates = VERSION_CONSTANT_CANDIDATES.map do |name|
42
- # If there's a constant named 'name' (VERSION, etc.), get its value.
43
-
44
- name.split('::').inject(Object) do |mod, class_name|
45
- mod.cs__const_get(class_name)
46
- end
47
- rescue LoadError, StandardError
48
- nil
49
- end
50
- candidates.compact!
51
- candidate = candidates.first || ENV[CS_VERSION]
52
-
53
- case candidate
54
- when Hash
55
- candidate.values.join(Contrast::Utils::ObjectShare::PERIOD)
56
- when Array
57
- candidate.join(Contrast::Utils::ObjectShare::PERIOD)
58
- when String
59
- candidate
60
- when NilClass
61
- return nil
62
- else
63
- candidate.inspect
64
- end
65
- end
66
- end
67
-
68
- # Read libraries from the gemfile and append to the given ApplicationUpdate message
69
- # or other class that has a libraries map association
70
- # TODO - RUBY-770
71
- def add_library_to_app_update app_update_pb, library_tags = ''
72
- libraries = Contrast::Utils::GemfileReader.instance.library_pb_list
73
- libraries.each do |n|
74
- n.tags = library_tags
75
- app_update_pb.libraries[n.hash_code] = n
76
- end
77
- end
78
- end
79
- end
80
- end
81
- end
@@ -1,152 +0,0 @@
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/utils/object_share'
5
- cs__scoped_require 'contrast/components/interface'
6
-
7
- module Contrast
8
- module Utils
9
- # This utility allows us wrap our calls to logging, allowing runtime
10
- # determination as to whether or not an event should be logged, based upon
11
- # the Logging Configuration as specified in Common Configuration.
12
- module PerformsLogging
13
- include Contrast::Components::Interface
14
-
15
- COULDNT_INIT_CONFIG = '!!! Contrast could not initialize agent from config, flushing loq queue to TARGET !!!'
16
- FLUSHING_LOG_QUEUE = '!!! Contrast exited before logger could initialize, flushing log queue to TARGET !!!'
17
-
18
- TARGET = STDOUT
19
-
20
- # idiom for propagating class methods
21
- def self.included base
22
- base.send :include, InstanceMethods
23
- base.extend ClassMethods
24
- end
25
-
26
- # Grouping to allow for these methods to be included into another Module
27
- # on include of the PerformsLogging Module. They'll function as instance
28
- # methods in that Module.
29
- module InstanceMethods #:nodoc:
30
- @_log_mutex = Mutex.new
31
- @_log_queue = []
32
-
33
- protected
34
-
35
- def init_log_queueing
36
- # Queue log messages & defer logging until logger gets initialized.
37
- # (Logger depends on config, so logging config errors implies
38
- # circular dependencies.)
39
- at_exit do
40
- # Ideally we flush the queue when we detect agent init is impossible,
41
- # if worse comes to worse we do it here.
42
- if @_log_queue
43
- lq = @_log_queue
44
- if lq&.any?
45
- TARGET.puts '!!! Contrast exited before logger could initialize, flushing log queue to TARGET !!!'
46
- while (message = lq.pop)
47
- TARGET.puts "[#{ message[2].upcase }]\t#{ message[1] }"
48
- end
49
- end
50
- end
51
- end
52
- end
53
-
54
- def abort_log_queues
55
- TARGET.puts COULDNT_INIT_CONFIG
56
- if @_log_queue
57
- TARGET.puts FLUSHING_LOG_QUEUE
58
- while (message = @_log_queue.pop)
59
- TARGET.puts "[#{ message[2].upcase }]\t#{ message[1] }"
60
- end
61
- end
62
- @_log_queue = nil
63
- @_log_mutex = nil
64
- end
65
-
66
- def flush_log_queues
67
- return unless @_log_queue
68
-
69
- # Monkeypatch this class so that the next call to #instance flushes the log queue.
70
- # (Flushing the log queue within #initialize
71
- # causes a deadlock, as singleton classes' #initialize
72
- # gets wrapped within a mutex, and our logger will
73
- # try to reference the singleton instance.)
74
- self.class.class_eval do
75
- class << self
76
- alias_method :__instance_original, :instance
77
- def instance
78
- @_log_mutex.synchronize do
79
- # Restore old #instance method.
80
- class_eval do
81
- class << self
82
- def instance
83
- __instance_original
84
- end
85
- end
86
- end
87
- # Flush log queue.
88
- if @_log_queue
89
- while (message = @_log_queue.pop)
90
- log_with_level(*message, skip_queue: true)
91
- end
92
- end
93
- @_log_queue = nil
94
- end
95
- @_log_mutex = nil
96
- __instance_original
97
- end
98
- end
99
- end
100
- end
101
- end
102
-
103
- module ClassMethods #:nodoc:
104
- def log_error msg, exception = nil
105
- log_with_level exception, msg, :error
106
- end
107
-
108
- def log_warn msg, exception = nil
109
- log_with_level exception, msg, :warn
110
- end
111
-
112
- def log_info msg, exception = nil
113
- log_with_level exception, msg, :info
114
- end
115
-
116
- def log_debug msg, exception = nil
117
- log_with_level exception, msg, :debug
118
- end
119
-
120
- def debug_with_time msg
121
- a = Contrast::Utils::Timer.now_ms
122
- ret = yield if block_given?
123
- z = Contrast::Utils::Timer.now_ms
124
- log_with_level(nil, "#{ msg }: pid=#{ Process.pid }, elapsed=#{ z - a }ms", :debug)
125
- ret
126
- end
127
-
128
- def log_with_level exception, msg, level, skip_queue: false
129
- # Log messages are queued until the logger is initialized.
130
- # If agent init fails, flush the log to TARGET.
131
- if (lq = @_log_queue) && !skip_queue
132
- lq.push [exception, msg, level]
133
- return nil
134
- end
135
-
136
- if exception&.respond_to?(:message)
137
- tmp = msg.nil? ? exception.message.to_s : "#{ exception.class.name }: #{ msg }: #{ exception.message }"
138
- logger.send(level, tmp)
139
-
140
- exception.backtrace.first(10).each { |line| logger.debug(line) } if logger.debug? && exception.cs__respond_to?(:backtrace) && exception.backtrace
141
- elsif msg.to_s != Contrast::Utils::ObjectShare::EMPTY_STRING
142
- logger.send(level, msg.to_s)
143
- end
144
-
145
- nil # ensure no return value
146
- rescue StandardError
147
- nil # NOOP
148
- end
149
- end
150
- end
151
- end
152
- end