contrast-agent 6.6.4 → 6.8.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (340) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +3 -2
  3. data/.gitmodules +0 -3
  4. data/.simplecov +0 -1
  5. data/Rakefile +0 -1
  6. data/ext/cs__assess_array/cs__assess_array.c +41 -10
  7. data/ext/cs__assess_array/cs__assess_array.h +4 -1
  8. data/ext/cs__scope/cs__scope.c +1 -1
  9. data/lib/contrast/agent/assess/contrast_event.rb +2 -24
  10. data/lib/contrast/agent/assess/events/source_event.rb +7 -61
  11. data/lib/contrast/agent/assess/finalizers/hash.rb +11 -0
  12. data/lib/contrast/agent/assess/policy/dynamic_source_factory.rb +0 -55
  13. data/lib/contrast/agent/assess/policy/policy_node.rb +3 -3
  14. data/lib/contrast/agent/assess/policy/policy_node_utils.rb +0 -1
  15. data/lib/contrast/agent/assess/policy/propagation_node.rb +4 -4
  16. data/lib/contrast/agent/assess/policy/source_method.rb +24 -1
  17. data/lib/contrast/agent/assess/policy/trigger/reflected_xss.rb +7 -5
  18. data/lib/contrast/agent/assess/policy/trigger/xpath.rb +6 -1
  19. data/lib/contrast/agent/assess/policy/trigger_method.rb +40 -121
  20. data/lib/contrast/agent/assess/policy/trigger_node.rb +3 -3
  21. data/lib/contrast/agent/assess/policy/trigger_validation/redos_validator.rb +1 -1
  22. data/lib/contrast/agent/assess/policy/trigger_validation/ssrf_validator.rb +1 -1
  23. data/lib/contrast/agent/assess/policy/trigger_validation/xss_validator.rb +1 -1
  24. data/lib/contrast/agent/assess/property/evented.rb +2 -12
  25. data/lib/contrast/agent/assess/rule/provider/hardcoded_value_rule.rb +42 -82
  26. data/lib/contrast/agent/assess/rule/response/base_rule.rb +11 -27
  27. data/lib/contrast/agent/assess/rule/response/body_rule.rb +1 -3
  28. data/lib/contrast/agent/assess/rule/response/cache_control_header_rule.rb +77 -62
  29. data/lib/contrast/agent/assess/rule/response/csp_header_insecure_rule.rb +1 -1
  30. data/lib/contrast/agent/assess/rule/response/framework/rails_support.rb +6 -1
  31. data/lib/contrast/agent/assess/rule/response/header_rule.rb +5 -5
  32. data/lib/contrast/agent/assess/rule/response/hsts_header_rule.rb +1 -1
  33. data/lib/contrast/agent/assess/rule/response/x_xss_protection_header_rule.rb +1 -1
  34. data/lib/contrast/agent/assess/tracker.rb +1 -7
  35. data/lib/contrast/agent/at_exit_hook.rb +1 -7
  36. data/lib/contrast/agent/excluder.rb +224 -0
  37. data/lib/contrast/agent/exclusion_matcher.rb +25 -7
  38. data/lib/contrast/agent/inventory/database_config.rb +18 -23
  39. data/lib/contrast/agent/middleware.rb +4 -5
  40. data/lib/contrast/agent/patching/policy/after_load_patcher.rb +6 -0
  41. data/lib/contrast/agent/protect/input_analyzer/input_analyzer.rb +146 -127
  42. data/lib/contrast/agent/protect/policy/applies_command_injection_rule.rb +4 -0
  43. data/lib/contrast/agent/protect/policy/applies_path_traversal_rule.rb +20 -0
  44. data/lib/contrast/agent/protect/policy/applies_sqli_rule.rb +1 -0
  45. data/lib/contrast/agent/protect/policy/rule_applicator.rb +1 -1
  46. data/lib/contrast/agent/protect/rule/base.rb +98 -66
  47. data/lib/contrast/agent/protect/rule/base_service.rb +49 -24
  48. data/lib/contrast/agent/protect/rule/bot_blocker/bot_blocker_input_classification.rb +98 -0
  49. data/lib/contrast/agent/protect/rule/bot_blocker.rb +81 -0
  50. data/lib/contrast/agent/protect/rule/cmd_injection.rb +30 -99
  51. data/lib/contrast/agent/protect/rule/cmdi/cmdi_backdoors.rb +132 -0
  52. data/lib/contrast/agent/protect/rule/cmdi/cmdi_base_rule.rb +169 -0
  53. data/lib/contrast/agent/protect/rule/cmdi/cmdi_chained_command.rb +69 -0
  54. data/lib/contrast/agent/protect/rule/cmdi/cmdi_dangerous_path.rb +68 -0
  55. data/lib/contrast/agent/protect/rule/cmdi/cmdi_input_classification.rb +2 -58
  56. data/lib/contrast/agent/protect/rule/default_scanner.rb +1 -1
  57. data/lib/contrast/agent/protect/rule/deserialization.rb +10 -19
  58. data/lib/contrast/agent/protect/rule/http_method_tampering/http_method_tampering_input_classification.rb +2 -2
  59. data/lib/contrast/agent/protect/rule/http_method_tampering.rb +0 -11
  60. data/lib/contrast/agent/protect/rule/no_sqli/no_sqli_input_classification.rb +29 -34
  61. data/lib/contrast/agent/protect/rule/no_sqli.rb +25 -18
  62. data/lib/contrast/agent/protect/rule/path_traversal/path_traversal_input_classification.rb +61 -0
  63. data/lib/contrast/agent/protect/rule/path_traversal/path_traversal_semantic_security_bypass.rb +114 -0
  64. data/lib/contrast/agent/protect/rule/path_traversal.rb +46 -18
  65. data/lib/contrast/agent/protect/rule/sql_sample_builder.rb +49 -29
  66. data/lib/contrast/agent/protect/rule/sqli/sqli_base_rule.rb +37 -0
  67. data/lib/contrast/agent/protect/rule/sqli/sqli_input_classification.rb +2 -62
  68. data/lib/contrast/agent/protect/rule/sqli/sqli_semantic/sqli_dangerous_functions.rb +67 -0
  69. data/lib/contrast/agent/protect/rule/sqli.rb +67 -22
  70. data/lib/contrast/agent/protect/rule/unsafe_file_upload/unsafe_file_upload_input_classification.rb +39 -63
  71. data/lib/contrast/agent/protect/rule/unsafe_file_upload.rb +6 -33
  72. data/lib/contrast/agent/protect/rule/xss/reflected_xss_input_classification.rb +58 -0
  73. data/lib/contrast/agent/protect/rule/xss.rb +14 -20
  74. data/lib/contrast/agent/protect/rule/xxe.rb +15 -30
  75. data/lib/contrast/agent/protect/rule.rb +3 -1
  76. data/lib/contrast/agent/reporting/attack_result/attack_result.rb +8 -0
  77. data/lib/contrast/agent/reporting/attack_result/rasp_rule_sample.rb +70 -36
  78. data/lib/contrast/agent/reporting/attack_result/response_type.rb +9 -9
  79. data/lib/contrast/agent/reporting/attack_result/user_input.rb +11 -0
  80. data/lib/contrast/agent/reporting/details/bot_blocker_details.rb +29 -0
  81. data/lib/contrast/agent/reporting/details/cmd_injection_details.rb +30 -0
  82. data/lib/contrast/agent/reporting/details/details.rb +18 -0
  83. data/lib/contrast/agent/reporting/details/http_method_tempering_details.rb +27 -0
  84. data/lib/contrast/agent/reporting/details/ip_denylist_details.rb +35 -0
  85. data/lib/contrast/agent/reporting/details/no_sqli_details.rb +36 -0
  86. data/lib/contrast/agent/reporting/details/path_traversal_details.rb +24 -0
  87. data/lib/contrast/agent/reporting/details/path_traversal_semantic_analysis_details.rb +32 -0
  88. data/lib/contrast/agent/reporting/details/protect_rule_details.rb +17 -0
  89. data/lib/contrast/agent/reporting/details/sqli_dangerous_functions.rb +22 -0
  90. data/lib/contrast/agent/reporting/details/sqli_details.rb +36 -0
  91. data/lib/contrast/agent/reporting/details/untrusted_deserialization_details.rb +27 -0
  92. data/lib/contrast/agent/reporting/details/virtual_patch_details.rb +30 -0
  93. data/lib/contrast/agent/reporting/details/xss_details.rb +33 -0
  94. data/lib/contrast/agent/reporting/details/xss_match.rb +30 -0
  95. data/lib/contrast/agent/reporting/details/xxe_details.rb +36 -0
  96. data/lib/contrast/agent/reporting/details/xxe_match.rb +25 -0
  97. data/lib/contrast/agent/reporting/details/xxe_wrapper.rb +25 -0
  98. data/lib/contrast/agent/reporting/input_analysis/details/bot_blocker_details.rb +27 -0
  99. data/lib/contrast/agent/reporting/input_analysis/details/protect_rule_details.rb +15 -0
  100. data/lib/contrast/agent/reporting/input_analysis/input_analysis.rb +1 -2
  101. data/lib/contrast/agent/reporting/input_analysis/input_analysis_result.rb +17 -3
  102. data/lib/contrast/agent/reporting/masker/masker.rb +80 -65
  103. data/lib/contrast/agent/reporting/masker/masker_utils.rb +1 -30
  104. data/lib/contrast/agent/reporting/reporter.rb +1 -15
  105. data/lib/contrast/agent/reporting/reporting_events/agent_startup.rb +2 -2
  106. data/lib/contrast/agent/reporting/reporting_events/application_activity.rb +84 -15
  107. data/lib/contrast/agent/reporting/reporting_events/application_defend_activity.rb +13 -25
  108. data/lib/contrast/agent/reporting/reporting_events/application_defend_attack_activity.rb +19 -24
  109. data/lib/contrast/agent/reporting/reporting_events/application_defend_attack_sample.rb +46 -126
  110. data/lib/contrast/agent/reporting/reporting_events/application_defend_attack_sample_activity.rb +5 -16
  111. data/lib/contrast/agent/reporting/reporting_events/application_defend_attacker_activity.rb +10 -18
  112. data/lib/contrast/agent/reporting/reporting_events/application_inventory_activity.rb +6 -14
  113. data/lib/contrast/agent/reporting/reporting_events/application_startup.rb +1 -1
  114. data/lib/contrast/agent/reporting/reporting_events/application_update.rb +0 -2
  115. data/lib/contrast/agent/reporting/reporting_events/architecture_component.rb +7 -22
  116. data/lib/contrast/agent/reporting/reporting_events/finding.rb +23 -53
  117. data/lib/contrast/agent/reporting/reporting_events/finding_event.rb +12 -9
  118. data/lib/contrast/agent/reporting/reporting_events/finding_event_signature.rb +1 -1
  119. data/lib/contrast/agent/reporting/reporting_events/finding_event_source.rb +23 -21
  120. data/lib/contrast/agent/reporting/reporting_events/finding_event_stack.rb +5 -18
  121. data/lib/contrast/agent/reporting/reporting_events/finding_event_taint_range.rb +1 -0
  122. data/lib/contrast/{api/decorators/trace_taint_range_tags.rb → agent/reporting/reporting_events/finding_event_taint_range_tags.rb} +7 -6
  123. data/lib/contrast/agent/reporting/reporting_events/finding_request.rb +40 -10
  124. data/lib/contrast/agent/reporting/reporting_events/library_discovery.rb +0 -1
  125. data/lib/contrast/agent/reporting/reporting_events/library_usage_observation.rb +1 -1
  126. data/lib/contrast/agent/reporting/reporting_events/observed_route.rb +2 -2
  127. data/lib/contrast/agent/reporting/reporting_events/poll.rb +1 -11
  128. data/lib/contrast/agent/reporting/reporting_events/preflight_message.rb +10 -14
  129. data/lib/contrast/agent/reporting/reporting_events/reporting_event.rb +11 -0
  130. data/lib/contrast/agent/reporting/reporting_events/route_coverage.rb +3 -1
  131. data/lib/contrast/agent/reporting/reporting_events/route_discovery.rb +12 -25
  132. data/lib/contrast/agent/reporting/reporting_events/route_discovery_observation.rb +8 -27
  133. data/lib/contrast/agent/reporting/reporting_utilities/audit.rb +3 -3
  134. data/lib/contrast/agent/reporting/reporting_utilities/build_preflight.rb +4 -7
  135. data/lib/contrast/agent/reporting/reporting_utilities/headers.rb +1 -1
  136. data/lib/contrast/agent/reporting/reporting_utilities/reporter_client.rb +2 -1
  137. data/lib/contrast/agent/reporting/reporting_utilities/reporter_client_utils.rb +3 -3
  138. data/lib/contrast/agent/reporting/reporting_utilities/response.rb +1 -1
  139. data/lib/contrast/agent/reporting/reporting_utilities/response_handler.rb +0 -3
  140. data/lib/contrast/agent/reporting/reporting_utilities/response_handler_utils.rb +1 -0
  141. data/lib/contrast/agent/reporting/settings/code_exclusion.rb +6 -1
  142. data/lib/contrast/agent/reporting/settings/exclusion_base.rb +18 -0
  143. data/lib/contrast/agent/reporting/settings/exclusions.rb +2 -1
  144. data/lib/contrast/agent/reporting/settings/input_exclusion.rb +9 -3
  145. data/lib/contrast/agent/reporting/settings/protect.rb +15 -15
  146. data/lib/contrast/agent/request.rb +4 -14
  147. data/lib/contrast/agent/request_context.rb +18 -24
  148. data/lib/contrast/agent/request_context_extend.rb +23 -164
  149. data/lib/contrast/agent/request_handler.rb +1 -11
  150. data/lib/contrast/agent/response.rb +0 -18
  151. data/lib/contrast/agent/telemetry/events/event.rb +1 -1
  152. data/lib/contrast/agent/telemetry/events/metric_event.rb +1 -1
  153. data/lib/contrast/agent/telemetry/events/startup_metrics_event.rb +3 -3
  154. data/lib/contrast/agent/thread_watcher.rb +3 -18
  155. data/lib/contrast/agent/version.rb +1 -1
  156. data/lib/contrast/agent.rb +0 -11
  157. data/lib/contrast/agent_lib/api/command_injection.rb +46 -0
  158. data/lib/contrast/agent_lib/api/init.rb +101 -0
  159. data/lib/contrast/agent_lib/api/input_tracing.rb +267 -0
  160. data/lib/contrast/agent_lib/api/method_tempering.rb +29 -0
  161. data/lib/contrast/agent_lib/api/panic.rb +87 -0
  162. data/lib/contrast/agent_lib/api/path_semantic_file_security_bypass.rb +40 -0
  163. data/lib/contrast/agent_lib/interface.rb +260 -0
  164. data/lib/contrast/agent_lib/interface_base.rb +118 -0
  165. data/lib/contrast/agent_lib/return_types/eval_result.rb +44 -0
  166. data/lib/contrast/agent_lib/test.rb +29 -0
  167. data/lib/contrast/api/communication/connection_status.rb +5 -5
  168. data/lib/contrast/components/agent.rb +13 -23
  169. data/lib/contrast/components/api.rb +10 -10
  170. data/lib/contrast/components/app_context.rb +9 -11
  171. data/lib/contrast/components/app_context_extend.rb +1 -26
  172. data/lib/contrast/components/assess.rb +92 -38
  173. data/lib/contrast/components/assess_rules.rb +36 -0
  174. data/lib/contrast/components/config.rb +49 -24
  175. data/lib/contrast/components/heap_dump.rb +1 -1
  176. data/lib/contrast/components/protect.rb +9 -6
  177. data/lib/contrast/components/ruby_component.rb +81 -0
  178. data/lib/contrast/components/sampling.rb +1 -1
  179. data/lib/contrast/components/security_logger.rb +23 -0
  180. data/lib/contrast/components/settings.rb +41 -85
  181. data/lib/contrast/config/base_configuration.rb +1 -1
  182. data/lib/contrast/config/protect_rule_configuration.rb +7 -7
  183. data/lib/contrast/config/protect_rules_configuration.rb +24 -48
  184. data/lib/contrast/config/server_configuration.rb +1 -1
  185. data/lib/contrast/config.rb +0 -6
  186. data/lib/contrast/configuration.rb +73 -18
  187. data/lib/contrast/extension/assess/array.rb +9 -0
  188. data/lib/contrast/extension/assess/exec_trigger.rb +3 -1
  189. data/lib/contrast/extension/assess/marshal.rb +3 -2
  190. data/lib/contrast/extension/assess/string.rb +0 -1
  191. data/lib/contrast/extension/delegator.rb +2 -0
  192. data/lib/contrast/extension/extension.rb +1 -1
  193. data/lib/contrast/framework/base_support.rb +0 -5
  194. data/lib/contrast/framework/grape/support.rb +1 -23
  195. data/lib/contrast/framework/manager.rb +3 -11
  196. data/lib/contrast/framework/rails/patch/action_controller_live_buffer.rb +1 -6
  197. data/lib/contrast/framework/rails/railtie.rb +0 -1
  198. data/lib/contrast/framework/rails/support.rb +5 -59
  199. data/lib/contrast/framework/sinatra/support.rb +2 -21
  200. data/lib/contrast/logger/cef_log.rb +21 -3
  201. data/lib/contrast/logger/log.rb +1 -11
  202. data/lib/contrast/tasks/config.rb +5 -10
  203. data/lib/contrast/utils/assess/event_limit_utils.rb +28 -12
  204. data/lib/contrast/utils/assess/trigger_method_utils.rb +10 -18
  205. data/lib/contrast/utils/duck_utils.rb +1 -0
  206. data/lib/contrast/utils/findings.rb +6 -5
  207. data/lib/contrast/utils/hash_digest.rb +9 -24
  208. data/lib/contrast/utils/hash_digest_extend.rb +6 -6
  209. data/lib/contrast/utils/input_classification_base.rb +156 -0
  210. data/lib/contrast/utils/invalid_configuration_util.rb +21 -58
  211. data/lib/contrast/utils/log_utils.rb +47 -17
  212. data/lib/contrast/utils/net_http_base.rb +2 -2
  213. data/lib/contrast/utils/os.rb +0 -20
  214. data/lib/contrast/utils/patching/policy/patch_utils.rb +3 -2
  215. data/lib/contrast/utils/response_utils.rb +0 -16
  216. data/lib/contrast/utils/stack_trace_utils.rb +3 -40
  217. data/lib/contrast/utils/string_utils.rb +19 -7
  218. data/lib/contrast/utils/telemetry_client.rb +13 -7
  219. data/lib/contrast.rb +7 -13
  220. data/resources/protect/policy.json +1 -2
  221. data/ruby-agent.gemspec +2 -5
  222. metadata +78 -137
  223. data/exe/contrast_service +0 -23
  224. data/lib/contrast/agent/protect/rule/cmdi/cmdi_worth_watching.rb +0 -64
  225. data/lib/contrast/agent/protect/rule/sqli/sqli_worth_watching.rb +0 -118
  226. data/lib/contrast/agent/protect/rule/unsafe_file_upload/unsafe_file_upload_matcher.rb +0 -45
  227. data/lib/contrast/agent/reaction_processor.rb +0 -47
  228. data/lib/contrast/agent/reporting/reporting_events/trace_event_source.rb +0 -30
  229. data/lib/contrast/agent/reporting/reporting_utilities/dtm_message.rb +0 -43
  230. data/lib/contrast/agent/service_heartbeat.rb +0 -35
  231. data/lib/contrast/api/communication/messaging_queue.rb +0 -129
  232. data/lib/contrast/api/communication/response_processor.rb +0 -90
  233. data/lib/contrast/api/communication/service_lifecycle.rb +0 -77
  234. data/lib/contrast/api/communication/socket.rb +0 -44
  235. data/lib/contrast/api/communication/socket_client.rb +0 -130
  236. data/lib/contrast/api/communication/speedracer.rb +0 -142
  237. data/lib/contrast/api/communication/tcp_socket.rb +0 -32
  238. data/lib/contrast/api/communication/unix_socket.rb +0 -28
  239. data/lib/contrast/api/communication.rb +0 -20
  240. data/lib/contrast/api/decorators/activity.rb +0 -33
  241. data/lib/contrast/api/decorators/address.rb +0 -59
  242. data/lib/contrast/api/decorators/agent_startup.rb +0 -57
  243. data/lib/contrast/api/decorators/application_settings.rb +0 -42
  244. data/lib/contrast/api/decorators/application_startup.rb +0 -56
  245. data/lib/contrast/api/decorators/architecture_component.rb +0 -36
  246. data/lib/contrast/api/decorators/bot_blocker.rb +0 -37
  247. data/lib/contrast/api/decorators/finding.rb +0 -29
  248. data/lib/contrast/api/decorators/http_request.rb +0 -137
  249. data/lib/contrast/api/decorators/input_analysis.rb +0 -18
  250. data/lib/contrast/api/decorators/instrumentation_mode.rb +0 -35
  251. data/lib/contrast/api/decorators/ip_denylist.rb +0 -37
  252. data/lib/contrast/api/decorators/message.rb +0 -71
  253. data/lib/contrast/api/decorators/rasp_rule_sample.rb +0 -58
  254. data/lib/contrast/api/decorators/response_type.rb +0 -17
  255. data/lib/contrast/api/decorators/route_coverage.rb +0 -91
  256. data/lib/contrast/api/decorators/server_features.rb +0 -25
  257. data/lib/contrast/api/decorators/trace_event.rb +0 -120
  258. data/lib/contrast/api/decorators/trace_event_object.rb +0 -63
  259. data/lib/contrast/api/decorators/trace_event_signature.rb +0 -69
  260. data/lib/contrast/api/decorators/trace_taint_range.rb +0 -52
  261. data/lib/contrast/api/decorators/user_input.rb +0 -51
  262. data/lib/contrast/api/decorators/virtual_patch.rb +0 -34
  263. data/lib/contrast/api/decorators.rb +0 -28
  264. data/lib/contrast/api/dtm.pb.rb +0 -852
  265. data/lib/contrast/api/settings.pb.rb +0 -500
  266. data/lib/contrast/api.rb +0 -16
  267. data/lib/contrast/components/contrast_service.rb +0 -88
  268. data/lib/contrast/config/assess_configuration.rb +0 -93
  269. data/lib/contrast/config/assess_rules_configuration.rb +0 -32
  270. data/lib/contrast/config/root_configuration.rb +0 -90
  271. data/lib/contrast/config/ruby_configuration.rb +0 -81
  272. data/lib/contrast/config/service_configuration.rb +0 -49
  273. data/lib/contrast/tasks/service.rb +0 -84
  274. data/lib/contrast/utils/input_classification.rb +0 -73
  275. data/lib/contrast/utils/preflight_util.rb +0 -13
  276. data/lib/protobuf/code_generator.rb +0 -129
  277. data/lib/protobuf/decoder.rb +0 -28
  278. data/lib/protobuf/deprecation.rb +0 -117
  279. data/lib/protobuf/descriptors/google/protobuf/compiler/plugin.pb.rb +0 -79
  280. data/lib/protobuf/descriptors/google/protobuf/descriptor.pb.rb +0 -360
  281. data/lib/protobuf/descriptors.rb +0 -3
  282. data/lib/protobuf/encoder.rb +0 -11
  283. data/lib/protobuf/enum.rb +0 -365
  284. data/lib/protobuf/exceptions.rb +0 -9
  285. data/lib/protobuf/field/base_field.rb +0 -380
  286. data/lib/protobuf/field/base_field_object_definitions.rb +0 -504
  287. data/lib/protobuf/field/bool_field.rb +0 -64
  288. data/lib/protobuf/field/bytes_field.rb +0 -67
  289. data/lib/protobuf/field/double_field.rb +0 -25
  290. data/lib/protobuf/field/enum_field.rb +0 -56
  291. data/lib/protobuf/field/field_array.rb +0 -102
  292. data/lib/protobuf/field/field_hash.rb +0 -122
  293. data/lib/protobuf/field/fixed32_field.rb +0 -25
  294. data/lib/protobuf/field/fixed64_field.rb +0 -28
  295. data/lib/protobuf/field/float_field.rb +0 -43
  296. data/lib/protobuf/field/int32_field.rb +0 -21
  297. data/lib/protobuf/field/int64_field.rb +0 -34
  298. data/lib/protobuf/field/integer_field.rb +0 -23
  299. data/lib/protobuf/field/message_field.rb +0 -51
  300. data/lib/protobuf/field/sfixed32_field.rb +0 -27
  301. data/lib/protobuf/field/sfixed64_field.rb +0 -28
  302. data/lib/protobuf/field/signed_integer_field.rb +0 -29
  303. data/lib/protobuf/field/sint32_field.rb +0 -21
  304. data/lib/protobuf/field/sint64_field.rb +0 -21
  305. data/lib/protobuf/field/string_field.rb +0 -51
  306. data/lib/protobuf/field/uint32_field.rb +0 -21
  307. data/lib/protobuf/field/uint64_field.rb +0 -21
  308. data/lib/protobuf/field/varint_field.rb +0 -77
  309. data/lib/protobuf/field.rb +0 -74
  310. data/lib/protobuf/generators/base.rb +0 -85
  311. data/lib/protobuf/generators/enum_generator.rb +0 -39
  312. data/lib/protobuf/generators/extension_generator.rb +0 -27
  313. data/lib/protobuf/generators/field_generator.rb +0 -193
  314. data/lib/protobuf/generators/file_generator.rb +0 -262
  315. data/lib/protobuf/generators/group_generator.rb +0 -122
  316. data/lib/protobuf/generators/message_generator.rb +0 -104
  317. data/lib/protobuf/generators/option_generator.rb +0 -17
  318. data/lib/protobuf/generators/printable.rb +0 -160
  319. data/lib/protobuf/generators/service_generator.rb +0 -50
  320. data/lib/protobuf/lifecycle.rb +0 -33
  321. data/lib/protobuf/logging.rb +0 -39
  322. data/lib/protobuf/message/fields.rb +0 -233
  323. data/lib/protobuf/message/serialization.rb +0 -85
  324. data/lib/protobuf/message.rb +0 -241
  325. data/lib/protobuf/optionable.rb +0 -72
  326. data/lib/protobuf/tasks/compile.rake +0 -80
  327. data/lib/protobuf/tasks.rb +0 -1
  328. data/lib/protobuf/varint.rb +0 -20
  329. data/lib/protobuf/varint_pure.rb +0 -31
  330. data/lib/protobuf/version.rb +0 -3
  331. data/lib/protobuf/wire_type.rb +0 -10
  332. data/lib/protobuf.rb +0 -91
  333. data/proto/dynamic_discovery.proto +0 -46
  334. data/proto/google/protobuf/compiler/plugin.proto +0 -183
  335. data/proto/google/protobuf/descriptor.proto +0 -911
  336. data/proto/rpc.proto +0 -71
  337. data/service_executables/.gitkeep +0 -0
  338. data/service_executables/VERSION +0 -1
  339. data/service_executables/linux/contrast-service +0 -0
  340. data/service_executables/mac/contrast-service +0 -0
@@ -9,35 +9,6 @@ module Contrast
9
9
  # helper methods used for masking
10
10
  module MaskerUtils
11
11
  include Contrast::Utils::ObjectShare
12
- # Helper to deal with Protobuf FieldHash.
13
- #
14
- # @param field_hash [Protobuf::Field::FieldHash] hash to be masked
15
- # @param results [Array<Contrast::Api::Dtm::AttackResults>]
16
- # results to match against.
17
- # @return [Hash]
18
- def mask_field_hash field_hash, results
19
- return {} unless field_hash&.any?
20
-
21
- hash = {}
22
- # Because this is the start of a built string, we have to be sure that it is not frozen.
23
- masked = +''
24
- field_hash.each do |entry|
25
- # Protobuf::Field::FieldHash produces array, with the key as first param and value as second.
26
- new_value = entry[1].delete(SEMICOLON).split(SPACE)
27
- new_value.each do |value|
28
- arr = value.split(EQUALS)
29
- # Add to new hash.
30
- hash[arr[0]] = arr[1]
31
- end
32
- # Mask the newly created hash.
33
- mask_with_dictionary(results, hash)
34
-
35
- # Restore to original form.
36
- hash.each { |k, v| masked += "#{ k }=#{ v }; " }
37
- masked.rstrip!
38
- field_hash[entry[0]] = masked
39
- end
40
- end
41
12
 
42
13
  # Mask raw query as it comes from the env.
43
14
  # exp:
@@ -45,7 +16,7 @@ module Contrast
45
16
  # 'ssn=contrast-redacted-ssn&id=contrast-redacted-id'
46
17
  #
47
18
  # @param query [String]
48
- # @param results [Array<Contrast::Api::Dtm::AttackResults>]
19
+ # @param results [Array<Contrast::Agent::Reporting::ApplicationDefendAttackActivitys>]
49
20
  # results to match against.
50
21
  def mask_raw_query query, results
51
22
  masked = EMPTY_STRING
@@ -18,7 +18,7 @@ module Contrast
18
18
  #
19
19
  # @return[Boolean] true if bypass is enabled, or false if bypass disabled
20
20
  def enabled?
21
- @_enabled = Contrast::CONTRAST_SERVICE.use_agent_communication? if @_enabled.nil?
21
+ @_enabled = ::Contrast::AGENT.enabled? if @_enabled.nil?
22
22
  @_enabled
23
23
  end
24
24
  end
@@ -39,7 +39,6 @@ module Contrast
39
39
  logger.debug('Starting background Reporter thread.')
40
40
  loop do
41
41
  next unless connected?
42
- next unless app_create_complete?
43
42
 
44
43
  process_event(queue.pop)
45
44
  rescue StandardError => e
@@ -120,19 +119,6 @@ module Contrast
120
119
  false
121
120
  end
122
121
 
123
- # Unless we're in bypass mode, we need to make sure the service has started and built the application on
124
- # TeamServer since we're doing a split style here.
125
- #
126
- # @return [Boolean]
127
- def app_create_complete?
128
- return true if Contrast::CONTRAST_SERVICE.use_agent_communication?
129
- return true if Contrast::Agent.messaging_queue&.speedracer&.status&.startup_messages_sent?
130
-
131
- logger.debug('Service startup incomplete; Application may not be created; sleeping')
132
- sleep(5)
133
- false
134
- end
135
-
136
122
  # @param event [Contrast::Agent::Reporting::ReportingEvent]
137
123
  def process_event event
138
124
  client.send_event(event, connection)
@@ -23,8 +23,8 @@ module Contrast
23
23
 
24
24
  def to_controlled_hash
25
25
  {
26
- environment: ::Contrast::CONFIG.root.server.environment,
27
- tags: ::Contrast::CONFIG.root.server.tags,
26
+ environment: ::Contrast::CONFIG.server.environment,
27
+ tags: ::Contrast::CONFIG.server.tags,
28
28
  version: Contrast::Agent::VERSION
29
29
  }
30
30
  end
@@ -5,6 +5,7 @@ require 'contrast/components/logger'
5
5
  require 'contrast/agent/reporting/reporting_events/application_reporting_event'
6
6
  require 'contrast/agent/reporting/reporting_events/application_defend_activity'
7
7
  require 'contrast/agent/reporting/reporting_events/application_inventory_activity'
8
+ require 'contrast/agent/reporting/attack_result/response_type'
8
9
 
9
10
  module Contrast
10
11
  module Agent
@@ -12,38 +13,106 @@ module Contrast
12
13
  # This is the new ApplicationActivity class which will include all the needed information for the new reporting
13
14
  # system to report
14
15
  class ApplicationActivity < Contrast::Agent::Reporting::ApplicationReportingEvent
15
- class << self
16
- # @param app_activity_dtm [Contrast::Api::Dtm::Activity]
17
- # @return [Contrast::Agent::Reporting::ApplicationActivity]
18
- def convert app_activity_dtm
19
- app_activity = new
20
- app_activity.attach_data(app_activity_dtm)
21
- app_activity
22
- end
23
- end
16
+ include Contrast::Agent::Reporting::ResponseType
17
+
18
+ # @return [Integer]
19
+ attr_accessor :query_count
20
+ # @return [Array]
21
+ attr_accessor :routes
22
+ # @return [Contrast::Agent::Response]
23
+ attr_accessor :response
24
24
 
25
25
  def initialize
26
+ @routes = []
27
+ @query_count = 0
26
28
  @event_method = :PUT
27
29
  @event_type = :application_activity
28
30
  @event_endpoint = Contrast::Agent::Reporting::Endpoints.application_activity
29
31
  super
30
32
  end
31
33
 
34
+ # @return [Contrast::Agent::Reporting::FindingRequest] Current context's request
35
+ def request
36
+ @_request ||= FindingRequest.convert(Contrast::Agent::REQUEST_TRACKER.current&.request)
37
+ end
38
+
39
+ # @return [Contrast::Agent::Reporting::ApplicationDefendActivity] main
40
+ # activity for all protect rules.
41
+ def defend
42
+ @_defend ||= Contrast::Agent::Reporting::ApplicationDefendActivity.new
43
+ end
44
+
45
+ # @return [Contrast::Agent::Reporting::ApplicationInventoryActivity] main
46
+ # activity for all inventory activity reporting.
47
+ def inventory
48
+ @_inventory ||= Contrast::Agent::Reporting::ApplicationInventoryActivity.new
49
+ end
50
+
51
+ # @return file_name [String] used for audit
32
52
  def file_name
33
53
  'activity-application'
34
54
  end
35
55
 
36
56
  def to_controlled_hash
37
57
  hsh = { lastUpdate: since_last_update }
38
- hsh[:defend] = @defend&.to_controlled_hash if @defend
39
- hsh[:inventory] = @inventory&.to_controlled_hash if @inventory
58
+ hsh[:defend] = @_defend&.to_controlled_hash if @_defend
59
+ hsh[:inventory] = @_inventory&.to_controlled_hash if @_inventory
40
60
  hsh
41
61
  end
42
62
 
43
- # @param activity_dtm [Contrast::Api::Dtm::ApplicationActivity]
44
- def attach_data activity_dtm
45
- @defend = Contrast::Agent::Reporting::ApplicationDefendActivity.convert(activity_dtm)
46
- @inventory = Contrast::Agent::Reporting::ApplicationInventoryActivity.convert(activity_dtm)
63
+ # Look for attack results and access to samples by
64
+ # searching with rule_id and response_type
65
+ #
66
+ # @param rule_id [String] name of the protect rule
67
+ # @param response_type[Symbol<Contrast::Agent::Reporting::ResponseType]
68
+ # filter by response type
69
+ # @return [Array<Contrast::Agent::Reporting::ApplicationDefendAttackSampleActivity>, nil]
70
+ # return any matches.
71
+ def attack_results_for rule_id, response_type = nil
72
+ results = []
73
+ defend.attackers.each do |attacker|
74
+ next unless attacker.protection_rules[rule_id]
75
+
76
+ result = case response_type
77
+ when BLOCKED, BLOCKED_AT_PERIMETER
78
+ attacker.protection_rules[rule_id].blocked
79
+ when EXPLOITED
80
+ attacker.protection_rules[rule_id].exploited
81
+ when PROBED
82
+ attacker.protection_rules[rule_id].ineffective
83
+ when SUSPICIOUS
84
+ attacker.protection_rules[rule_id].suspicious
85
+ else
86
+ attacker.protection_rules[rule_id]
87
+ end
88
+ results << result if result
89
+ end
90
+ results
91
+ end
92
+
93
+ # By reference. List of all results only by values, no rule_ids.
94
+ #
95
+ # @return [Array<[Contrast::Agent::Reporting::ApplicationDefendAttackerActivity]>]
96
+ def attack_results
97
+ results = []
98
+ defend.attackers.each { |a| results << a.protection_rules.values }
99
+ results
100
+ end
101
+
102
+ # This is primary used for attaching new data and merging existing
103
+ # samples per rule entry in attackers, and to make sure the attack
104
+ # time_map is updated correctly.
105
+ #
106
+ # @param attack_result [Contrast::Agent::Reporting::AttackResult]
107
+ def attach_defend attack_result
108
+ defend.attach_data(attack_result)
109
+ end
110
+
111
+ # This is primary used for attaching new inventory reporting
112
+ #
113
+ # @param architecture [Contrast::Agent::Reporting::AttackResult]
114
+ def attach_inventory architecture
115
+ inventory.attach_data(architecture)
47
116
  end
48
117
  end
49
118
  end
@@ -13,20 +13,9 @@ module Contrast
13
13
  # @return [Array<Contrast::Agent::Reporting::ApplicationDefendAttackerActivity>]
14
14
  attr_reader :attackers
15
15
 
16
- class << self
17
- # @param activity_dtm [Contrast::Api::Dtm::ApplicationActivity]
18
- # @return [Contrast::Agent::Reporting::ApplicationDefendActivity]
19
- def convert activity_dtm
20
- activity = new
21
- activity.attach_data(activity_dtm.results)
22
- activity
23
- end
24
- end
25
-
26
16
  def initialize
27
17
  @attackers = []
28
18
  @event_type = :application_defend_activity
29
- super
30
19
  end
31
20
 
32
21
  def to_controlled_hash
@@ -35,20 +24,19 @@ module Contrast
35
24
  }
36
25
  end
37
26
 
38
- # @param attack_dtms [Array<Contrast::Api::Dtm::AttackResult>]
39
- def attach_data attack_dtms
40
- attack_dtms.each do |attack_result|
41
- attacker_activity = Contrast::Agent::Reporting::ApplicationDefendAttackerActivity.convert(attack_result)
42
- existing_attacker_activity = attackers.find do |existing|
43
- existing.source_forwarded_for == attacker_activity.source_forwarded_for &&
44
- existing.source_ip == attacker_activity.source_ip
45
- end
46
- rule = attack_result.rule_id
47
- if existing_attacker_activity
48
- attach_existing(existing_attacker_activity, attacker_activity, rule)
49
- else
50
- attackers << attacker_activity
51
- end
27
+ # @param attack_result [Contrast::Agent::Reporting::AttackResult]
28
+ def attach_data attack_result
29
+ attacker_activity = Contrast::Agent::Reporting::ApplicationDefendAttackerActivity.new
30
+ attacker_activity.attach_data(attack_result)
31
+ existing_attacker_activity = attackers.find do |existing|
32
+ existing.source_forwarded_for == attacker_activity.source_forwarded_for &&
33
+ existing.source_ip == attacker_activity.source_ip
34
+ end
35
+ rule = attack_result.rule_id
36
+ if existing_attacker_activity
37
+ attach_existing(existing_attacker_activity, attacker_activity, rule)
38
+ else
39
+ attackers << attacker_activity
52
40
  end
53
41
  end
54
42
 
@@ -1,8 +1,6 @@
1
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
- require 'contrast/api/dtm.pb'
5
- require 'contrast/api/decorators/response_type'
6
4
  require 'contrast/components/logger'
7
5
  require 'contrast/agent/reporting/reporting_events/application_defend_attack_sample_activity'
8
6
 
@@ -19,44 +17,41 @@ module Contrast
19
17
  attr_accessor :ineffective
20
18
  # @return [Contrast::Agent::Reporting::ApplicationDefendAttackSampleActivity]
21
19
  attr_accessor :suspicious
22
-
23
- class << self
24
- # @param attack_result [Contrast::Api::Dtm::AttackResult]
25
- def convert attack_result
26
- activity = new
27
- activity.attach_data(attack_result)
28
- activity
29
- end
30
- end
20
+ # Helper method to determine before hand the response type and iv needed for access
21
+ #
22
+ # @return [Contrast::Agent::Reporting::ResponseType]
23
+ attr_reader :response_type
31
24
 
32
25
  def initialize
33
26
  @start_time = start_time
34
- super
35
27
  end
36
28
 
37
29
  def to_controlled_hash
38
30
  {
39
31
  startTime: @start_time,
40
- blocked: blocked&.to_controlled_hash || Contrast::Utils::ObjectShare::EMPTY_HASH,
41
- exploited: exploited&.to_controlled_hash || Contrast::Utils::ObjectShare::EMPTY_HASH,
42
- ineffective: ineffective&.to_controlled_hash || Contrast::Utils::ObjectShare::EMPTY_HASH,
43
- suspicious: suspicious&.to_controlled_hash || Contrast::Utils::ObjectShare::EMPTY_HASH
32
+ blocked: @blocked&.to_controlled_hash || Contrast::Utils::ObjectShare::EMPTY_HASH,
33
+ exploited: @exploited&.to_controlled_hash || Contrast::Utils::ObjectShare::EMPTY_HASH,
34
+ ineffective: @ineffective&.to_controlled_hash || Contrast::Utils::ObjectShare::EMPTY_HASH,
35
+ suspicious: @suspicious&.to_controlled_hash || Contrast::Utils::ObjectShare::EMPTY_HASH
44
36
  }
45
37
  end
46
38
 
47
- # @param attack_result [Contrast::Api::Dtm::AttackResult]
39
+ # @param attack_result [Contrast::Agent::Reporting::AttackResult]
48
40
  # @return [Contrast::Agent::Reporting::Defend::AttackSampleActivity]
49
41
  def attach_data attack_result
50
- attack_sample_activity =
51
- Contrast::Agent::Reporting::ApplicationDefendAttackSampleActivity.convert(attack_result)
52
- case attack_result.response
53
- when ::Contrast::Api::Dtm::AttackResult::ResponseType::BLOCKED
42
+ attack_sample_activity = Contrast::Agent::Reporting::ApplicationDefendAttackSampleActivity.new
43
+ attack_sample_activity.attach_data(attack_result)
44
+ @response_type = attack_result.response
45
+ case response_type
46
+ when ::Contrast::Agent::Reporting::ResponseType::BLOCKED,
47
+ ::Contrast::Agent::Reporting::ResponseType::BLOCKED_AT_PERIMETER
48
+
54
49
  @blocked = attack_sample_activity
55
- when ::Contrast::Api::Dtm::AttackResult::ResponseType::MONITORED
50
+ when ::Contrast::Agent::Reporting::ResponseType::MONITORED
56
51
  @exploited = attack_sample_activity
57
- when ::Contrast::Api::Dtm::AttackResult::ResponseType::PROBED
52
+ when ::Contrast::Agent::Reporting::ResponseType::PROBED
58
53
  @ineffective = attack_sample_activity
59
- when ::Contrast::Api::Dtm::AttackResult::ResponseType::SUSPICIOUS
54
+ when ::Contrast::Agent::Reporting::ResponseType::SUSPICIOUS
60
55
  @suspicious = attack_sample_activity
61
56
  end
62
57
  end
@@ -5,7 +5,8 @@ require 'contrast/agent/protect/rule/cmd_injection'
5
5
  require 'contrast/agent/protect/rule/deserialization'
6
6
  require 'contrast/agent/protect/rule/http_method_tampering'
7
7
  require 'contrast/agent/protect/rule/no_sqli'
8
- require 'contrast/api/dtm.pb'
8
+ require 'contrast/agent/reporting/attack_result/user_input'
9
+ require 'contrast/agent/reporting/attack_result/response_type'
9
10
  require 'contrast/components/logger'
10
11
 
11
12
  module Contrast
@@ -16,12 +17,20 @@ module Contrast
16
17
  class ApplicationDefendAttackSample
17
18
  include Contrast::Agent::Reporting::InputType
18
19
 
19
- # @return [Hash] => start: ms, elapsed: ms
20
- attr_reader :time_stamp
20
+ # @return [Contrast::Agent::Reporting::UserInput]
21
+ attr_accessor :user_input
22
+ # @return [Array<Contrast::Agent::Reporting::ApplicationDefendAttackSampleStack>]
23
+ attr_reader :stack
24
+ # Details are per rule specific and should be set when the sample is build
25
+ #
26
+ # @return [Contrast::Agent::Reporting::Details::ProtectRuleDetails, {}]
27
+ attr_accessor :details
28
+ # @return [Integer] time in ms
29
+ attr_accessor :time_stamp
21
30
 
22
31
  class << self
23
- # @param attack_result [Contrast::Api::Dtm::AttackResult]
24
- # @param attack_sample [Contrast::Api::Dtm::RaspRuleSample]
32
+ # @param attack_result [Contrast::Agent::Reporting::AttackResult]
33
+ # @param attack_sample [Contrast::Agent::Reporting::ApplicationDefendAttackSample]
25
34
  def convert attack_result, attack_sample
26
35
  activity = new
27
36
  activity.attach_data(attack_result, attack_sample)
@@ -30,151 +39,62 @@ module Contrast
30
39
  end
31
40
 
32
41
  def initialize
42
+ @time_stamp = Contrast::Agent::REQUEST_TRACKER.current&.timer&.start_ms || 0 # in ms
33
43
  @blocked = false
34
44
  @event_type = :application_defend_attack_sample
45
+ @user_input = Contrast::Agent::Reporting::UserInput.new
46
+ @request = Contrast::Agent::REQUEST_TRACKER.current&.activity&.request
47
+ @stack = Contrast::Utils::StackTraceUtils.build_protect_report_stack_array
48
+ @details = {}
35
49
  end
36
50
 
37
51
  def to_controlled_hash
38
52
  {
39
53
  blocked: @blocked,
40
- input: @input,
41
- details: @details,
54
+ input: build_input(@user_input),
55
+ details: @details&.to_controlled_hash,
42
56
  request: @request&.to_controlled_hash,
43
57
  stack: @stack&.map(&:to_controlled_hash),
44
- timestamp: time_stamp
58
+ timestamp: build_time_stamp
45
59
  }
46
60
  end
47
61
 
48
- # @param attack_result [Contrast::Api::Dtm::AttackResult]
49
- # @param attack_sample [Contrast::Api::Dtm::RaspRuleSample]
50
- def attach_data attack_result, attack_sample
51
- @blocked = attack_result.response == ::Contrast::Api::Dtm::AttackResult::ResponseType::BLOCKED
52
- @input = build_input(attack_sample)
53
- @details = build_details(attack_result.rule_id, attack_sample)
54
- @time_stamp = build_time_stamp(attack_sample.timestamp_ms)
55
- @request = FindingRequest.convert(Contrast::Agent::REQUEST_TRACKER.current&.request)
56
- @stack = Contrast::Utils::StackTraceUtils.build_protect_report_stack_array
57
- end
58
-
59
- # @param start [Integer]
60
- # @return [Hash]
61
- def build_time_stamp start
62
- {
63
- start: start,
64
- elapsed: Contrast::Utils::Timer.now_ms - start
65
- }
62
+ # @param response_type [Contrast::Agent::Reporting::ResponseType]
63
+ # @return [Boolean] check if response type is blocked
64
+ def blocked? response_type
65
+ @blocked = response_type == Contrast::Agent::Reporting::ResponseType::BLOCKED
66
66
  end
67
67
 
68
- # @param attack_sample [Contrast::Api::Dtm::RaspRuleSample]
69
- def build_input attack_sample
70
- user_input = attack_sample.user_input
68
+ # @param user_input [Contrast::Agent::Reporting::UserInput]
69
+ def build_input user_input
71
70
  {
72
71
  documentPath: user_input.path,
73
- documentType: build_document_type(user_input.document_type),
72
+ documentType: user_input.document_type.to_s,
74
73
  filters: user_input.matcher_ids,
75
74
  name: user_input.key,
76
- time: attack_sample.timestamp_ms,
77
- type: build_input_type(user_input.input_type),
75
+ time: time_stamp,
76
+ type: user_input.input_type.to_s,
78
77
  value: user_input.value
79
78
  }
80
79
  end
81
80
 
82
- # Convert the document type api enum to a String constant TeamServer can understand.
83
- #
84
- # @param type_enum [::Contrast::Api::Dtm::HttpRequest::DocumentType]
85
- # @return [String]
86
- def build_document_type type_enum
87
- case type_enum
88
- when ::Contrast::Api::Dtm::HttpRequest::DocumentType::JSON
89
- 'JSON'
90
- when ::Contrast::Api::Dtm::HttpRequest::DocumentType::XML
91
- 'XML'
92
- else
93
- 'NORMAL'
94
- end
95
- end
96
-
97
- # Convert the input type api enum to a String constant TeamServer can understand.
98
- #
99
- # @param type_enum [when ::Contrast::Api::Dtm::UserInput::InputType]
100
- # @return [String]
101
- def build_input_type type_enum
102
- case type_enum
103
- when ::Contrast::Api::Dtm::UserInput::InputType::UNDEFINED_TYPE
104
- 'UNDEFINED_TYPE'
105
- when ::Contrast::Api::Dtm::UserInput::InputType::BODY
106
- 'BODY'
107
- when ::Contrast::Api::Dtm::UserInput::InputType::COOKIE_NAME
108
- 'COOKIE_NAME'
109
- when ::Contrast::Api::Dtm::UserInput::InputType::COOKIE_VALUE
110
- 'COOKIE_VALUE'
111
- when ::Contrast::Api::Dtm::UserInput::InputType::HEADER
112
- 'HEADER'
113
- when ::Contrast::Api::Dtm::UserInput::InputType::PARAMETER_NAME
114
- 'PARAMETER_NAME'
115
- when ::Contrast::Api::Dtm::UserInput::InputType::PARAMETER_VALUE
116
- 'PARAMETER_VALUE'
117
- when ::Contrast::Api::Dtm::UserInput::InputType::QUERYSTRING
118
- 'QUERYSTRING'
119
- when ::Contrast::Api::Dtm::UserInput::InputType::URI
120
- 'URI'
121
- when ::Contrast::Api::Dtm::UserInput::InputType::SOCKET
122
- 'SOCKET'
123
- when ::Contrast::Api::Dtm::UserInput::InputType::JSON_VALUE
124
- 'JSON_VALUE'
125
- when ::Contrast::Api::Dtm::UserInput::InputType::JSON_ARRAYED_VALUE
126
- 'JSON_ARRAYED_VALUE'
127
- when ::Contrast::Api::Dtm::UserInput::InputType::MULTIPART_CONTENT_TYPE
128
- 'MULTIPART_CONTENT_TYPE'
129
- when ::Contrast::Api::Dtm::UserInput::InputType::MULTIPART_VALUE
130
- 'MULTIPART_VALUE'
131
- when ::Contrast::Api::Dtm::UserInput::InputType::MULTIPART_FIELD_NAME
132
- 'MULTIPART_FIELD_NAME'
133
- when ::Contrast::Api::Dtm::UserInput::InputType::MULTIPART_NAME
134
- 'MULTIPART_NAME'
135
- when ::Contrast::Api::Dtm::UserInput::InputType::XML_VALUE
136
- 'XML_VALUE'
137
- when ::Contrast::Api::Dtm::UserInput::InputType::DWR_VALUE
138
- 'DWR_VALUE'
139
- when ::Contrast::Api::Dtm::UserInput::InputType::METHOD
140
- 'METHOD'
141
- when ::Contrast::Api::Dtm::UserInput::InputType::REQUEST
142
- 'REQUEST'
143
- when ::Contrast::Api::Dtm::UserInput::InputType::URL_PARAMETER
144
- 'URL_PARAMETER'
145
- else # ::Contrast::Api::Dtm::UserInput::InputType::UNKNOWN
146
- 'UNKNOWN'
147
- end
81
+ # @param attack_result [Contrast::Agent::Reporting::AttackResult]
82
+ # @param attack_sample [Contrast::Agent::Reporting::RaspRuleSample]
83
+ def attach_data attack_result, attack_sample
84
+ @blocked = attack_result.response == ::Contrast::Agent::Reporting::ResponseType::BLOCKED
85
+ @user_input = attack_sample.user_input
86
+ @details = attack_sample.details
87
+ @time_stamp = attack_sample.time_stamp
88
+ @request = FindingRequest.convert(Contrast::Agent::REQUEST_TRACKER.current&.request)
89
+ @stack = Contrast::Utils::StackTraceUtils.build_protect_report_stack_array
148
90
  end
149
91
 
150
- # This is a temporary method to facilitate the translation of API details to Reporting details. As we move off
151
- # of protobuf, this responsibility should shift from this class to the individual rules, as they do today when
152
- # they populate their details in Contrast::Api::Dtm::RaspRuleSample
153
- #
154
- # @param rule_id [String]
155
- # @param attack_sample [Contrast::Api::Dtm::RaspRuleSample]
156
- # @return [Hash] the details for this specific rule
157
- def build_details rule_id, attack_sample
158
- case rule_id
159
- when Contrast::Agent::Protect::Rule::CmdInjection::NAME
160
- Contrast::Agent::Protect::Rule::CmdInjection.extract_details(attack_sample)
161
- when Contrast::Agent::Protect::Rule::Deserialization::NAME
162
- Contrast::Agent::Protect::Rule::Deserialization.extract_details(attack_sample)
163
- when Contrast::Agent::Protect::Rule::HttpMethodTampering::NAME
164
- Contrast::Agent::Protect::Rule::HttpMethodTampering.extract_details(attack_sample)
165
- when Contrast::Agent::Protect::Rule::NoSqli::NAME
166
- Contrast::Agent::Protect::Rule::NoSqli.extract_details(attack_sample)
167
- when Contrast::Agent::Protect::Rule::PathTraversal::NAME
168
- Contrast::Agent::Protect::Rule::PathTraversal.extract_details(attack_sample)
169
- when Contrast::Agent::Protect::Rule::Sqli::NAME
170
- Contrast::Agent::Protect::Rule::Sqli.extract_details(attack_sample)
171
- when Contrast::Agent::Protect::Rule::Xss::NAME
172
- Contrast::Agent::Protect::Rule::Xss.extract_details(attack_sample)
173
- when Contrast::Agent::Protect::Rule::Xxe::NAME
174
- Contrast::Agent::Protect::Rule::Xxe.extract_details(attack_sample)
175
- else # something unknown or Contrast::Agent::Protect::Rule::UnsafeFileUpload::NAME
176
- Contrast::Utils::ObjectShare::EMPTY_HASH
177
- end
92
+ # @return [Hash]
93
+ def build_time_stamp
94
+ {
95
+ start: time_stamp,
96
+ elapsed: Contrast::Utils::Timer.now_ms - time_stamp
97
+ }
178
98
  end
179
99
  end
180
100
  end
@@ -16,21 +16,11 @@ module Contrast
16
16
  # @return [Hash<Integer,Integer>] map of time from start in seconds to number of attacks in that second
17
17
  attr_reader :time_map
18
18
 
19
- class << self
20
- # @param attack_result [Contrast::Api::Dtm::AttackResult]
21
- def convert attack_result
22
- activity = new
23
- activity.attach_data(attack_result)
24
- activity
25
- end
26
- end
27
-
28
19
  def initialize
29
20
  @samples = []
30
21
  @start_time = Contrast::Agent::REQUEST_TRACKER.current&.timer&.start_ms || 0 # in ms
31
22
  @event_type = :application_defend_attack_sample_activity
32
23
  @time_map = Hash.new { |h, k| h[k] = 0 }
33
- super
34
24
  end
35
25
 
36
26
  def to_controlled_hash
@@ -42,17 +32,16 @@ module Contrast
42
32
  }
43
33
  end
44
34
 
45
- # @param attack_result [Contrast::Api::Dtm::AttackResult]
35
+ # @param attack_result [Contrast::Agent::Reporting::AttackResult]
46
36
  def attach_data attack_result
47
37
  attack_result.samples.each do |attack_sample|
48
38
  base_time = Contrast::Agent::REQUEST_TRACKER.current&.timer&.start_ms || 0
49
- dmt_time = attack_sample.timestamp_ms.to_i
50
- converted = Contrast::Agent::Reporting::ApplicationDefendAttackSample.convert(attack_result, attack_sample)
51
- samples << converted
52
- @start_time = if dmt_time.zero?
39
+ sample_time = attack_sample.time_stamp.to_i
40
+ samples << Contrast::Agent::Reporting::ApplicationDefendAttackSample.convert(attack_result, attack_sample)
41
+ @start_time = if sample_time.zero?
53
42
  @start_time
54
43
  else
55
- dmt_time
44
+ sample_time
56
45
  end
57
46
  attack_second = (@start_time - base_time) / 1000 # in seconds
58
47
  time_map[attack_second] += 1