Advertisement
Guest User

Untitled

a guest
Jan 29th, 2019
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.45 KB | None | 0 0
  1. {
  2. "extractors": [
  3. {
  4. "title": "message",
  5. "extractor_type": "regex",
  6. "converters": [],
  7. "order": 3,
  8. "cursor_strategy": "copy",
  9. "source_field": "message",
  10. "target_field": "message",
  11. "extractor_config": {
  12. "regex_value": "(?:.*)(?:%.*: )(.*)"
  13. },
  14. "condition_type": "none",
  15. "condition_value": ""
  16. },
  17. {
  18. "title": "mnemonic",
  19. "extractor_type": "regex",
  20. "converters": [],
  21. "order": 2,
  22. "cursor_strategy": "copy",
  23. "source_field": "message",
  24. "target_field": "mnemonic",
  25. "extractor_config": {
  26. "regex_value": "(?:.*%......)(.*[0-9])(?:: .*)"
  27. },
  28. "condition_type": "none",
  29. "condition_value": ""
  30. },
  31. {
  32. "title": "Deny_Public_Source_IP",
  33. "extractor_type": "regex",
  34. "converters": [],
  35. "order": 0,
  36. "cursor_strategy": "copy",
  37. "source_field": "message",
  38. "target_field": "Deny_Public_Source_IP",
  39. "extractor_config": {
  40. "regex_value": "Deny \\w{1,4} \\w{1,4} \\w{1,4}:((\\d+)(?<!10)\\.(\\d+)(?<!192\\.168)(?<!172\\.(1[6-9]|2\\d|3[0-1]))\\.(\\d+)\\.(\\d+))"
  41. },
  42. "condition_type": "none",
  43. "condition_value": ""
  44. },
  45. {
  46. "title": "severity level",
  47. "extractor_type": "regex",
  48. "converters": [],
  49. "order": 1,
  50. "cursor_strategy": "copy",
  51. "source_field": "message",
  52. "target_field": "severity",
  53. "extractor_config": {
  54. "regex_value": "(?:.*%ASA-)(.)(?:.*)"
  55. },
  56. "condition_type": "none",
  57. "condition_value": ""
  58. },
  59. {
  60. "title": "source_ip",
  61. "extractor_type": "regex",
  62. "converters": [],
  63. "order": 0,
  64. "cursor_strategy": "copy",
  65. "source_field": "message",
  66. "target_field": "source_ip",
  67. "extractor_config": {
  68. "regex_value": "for \\w{1,20}\\:(\\d{1,3}.\\d{1,3}.\\d{1,3}.\\d{1,3})"
  69. },
  70. "condition_type": "none",
  71. "condition_value": ""
  72. },
  73. {
  74. "title": "destination_ip",
  75. "extractor_type": "regex",
  76. "converters": [],
  77. "order": 0,
  78. "cursor_strategy": "copy",
  79. "source_field": "message",
  80. "target_field": "destination_ip",
  81. "extractor_config": {
  82. "regex_value": "to \\w{1,20}\\:(\\d{1,3}.\\d{1,3}.\\d{1,3}.\\d{1,3})"
  83. },
  84. "condition_type": "none",
  85. "condition_value": ""
  86. }
  87. ],
  88. "version": "3.0.0-rc.1"
  89. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement