mihari 3.4.1 → 3.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (181) hide show
  1. checksums.yaml +4 -4
  2. data/.gitmodules +3 -0
  3. data/README.md +2 -0
  4. data/Steepfile +32 -0
  5. data/config.ru +1 -0
  6. data/lib/mihari/analyzers/base.rb +24 -11
  7. data/lib/mihari/analyzers/binaryedge.rb +13 -0
  8. data/lib/mihari/analyzers/censys.rb +42 -9
  9. data/lib/mihari/analyzers/circl.rb +15 -0
  10. data/lib/mihari/analyzers/crtsh.rb +5 -0
  11. data/lib/mihari/analyzers/dnpedia.rb +5 -0
  12. data/lib/mihari/analyzers/dnstwister.rb +17 -0
  13. data/lib/mihari/analyzers/onyphe.rb +50 -9
  14. data/lib/mihari/analyzers/otx.rb +20 -0
  15. data/lib/mihari/analyzers/passivetotal.rb +25 -0
  16. data/lib/mihari/analyzers/pulsedive.rb +10 -0
  17. data/lib/mihari/analyzers/rule.rb +18 -0
  18. data/lib/mihari/analyzers/securitytrails.rb +25 -0
  19. data/lib/mihari/analyzers/shodan.rb +39 -5
  20. data/lib/mihari/analyzers/spyse.rb +20 -0
  21. data/lib/mihari/analyzers/urlscan.rb +10 -0
  22. data/lib/mihari/analyzers/virustotal.rb +20 -0
  23. data/lib/mihari/analyzers/zoomeye.rb +38 -0
  24. data/lib/mihari/cli/analyzer.rb +1 -0
  25. data/lib/mihari/cli/base.rb +0 -2
  26. data/lib/mihari/commands/init.rb +1 -1
  27. data/lib/mihari/commands/search.rb +1 -0
  28. data/lib/mihari/commands/web.rb +1 -0
  29. data/lib/mihari/{constraints.rb → constants.rb} +0 -0
  30. data/lib/mihari/database.rb +55 -3
  31. data/lib/mihari/emitters/base.rb +1 -1
  32. data/lib/mihari/emitters/misp.rb +38 -5
  33. data/lib/mihari/emitters/slack.rb +20 -2
  34. data/lib/mihari/emitters/the_hive.rb +16 -3
  35. data/lib/mihari/emitters/webhook.rb +18 -3
  36. data/lib/mihari/enrichers/ipinfo.rb +38 -0
  37. data/lib/mihari/mixins/autonomous_system.rb +19 -0
  38. data/lib/mihari/mixins/disallowed_data_value.rb +1 -1
  39. data/lib/mihari/models/alert.rb +28 -10
  40. data/lib/mihari/models/artifact.rb +94 -0
  41. data/lib/mihari/models/autonomous_system.rb +28 -0
  42. data/lib/mihari/models/dns.rb +55 -0
  43. data/lib/mihari/models/geolocation.rb +29 -0
  44. data/lib/mihari/models/reverse_dns.rb +26 -0
  45. data/lib/mihari/models/whois.rb +119 -0
  46. data/lib/mihari/schemas/configuration.rb +1 -0
  47. data/lib/mihari/schemas/rule.rb +2 -15
  48. data/lib/mihari/serializers/alert.rb +6 -4
  49. data/lib/mihari/serializers/artifact.rb +11 -2
  50. data/lib/mihari/serializers/autonomous_system.rb +9 -0
  51. data/lib/mihari/serializers/dns.rb +11 -0
  52. data/lib/mihari/serializers/geolocation.rb +11 -0
  53. data/lib/mihari/serializers/reverse_dns.rb +11 -0
  54. data/lib/mihari/serializers/tag.rb +4 -2
  55. data/lib/mihari/serializers/whois.rb +11 -0
  56. data/lib/mihari/structs/censys.rb +92 -0
  57. data/lib/mihari/structs/ipinfo.rb +36 -0
  58. data/lib/mihari/structs/onyphe.rb +47 -0
  59. data/lib/mihari/structs/shodan.rb +53 -0
  60. data/lib/mihari/type_checker.rb +9 -9
  61. data/lib/mihari/types.rb +21 -0
  62. data/lib/mihari/version.rb +1 -1
  63. data/lib/mihari/web/app.rb +2 -0
  64. data/lib/mihari/web/controllers/alerts_controller.rb +3 -4
  65. data/lib/mihari/web/controllers/artifacts_controller.rb +73 -3
  66. data/lib/mihari/web/controllers/ip_address_controller.rb +21 -0
  67. data/lib/mihari/web/controllers/sources_controller.rb +2 -2
  68. data/lib/mihari/web/controllers/tags_controller.rb +3 -1
  69. data/lib/mihari/web/public/index.html +1 -1
  70. data/lib/mihari/web/public/redoc-static.html +14 -11
  71. data/lib/mihari/web/public/static/fonts/fa-brands-400.1a575a41.woff +0 -0
  72. data/lib/mihari/web/public/static/fonts/fa-brands-400.513aa607.ttf +0 -0
  73. data/lib/mihari/web/public/static/fonts/fa-brands-400.592643a8.eot +0 -0
  74. data/lib/mihari/web/public/static/fonts/fa-brands-400.ed311c7a.woff2 +0 -0
  75. data/lib/mihari/web/public/static/fonts/fa-regular-400.766913e6.ttf +0 -0
  76. data/lib/mihari/web/public/static/fonts/fa-regular-400.b0e2db3b.eot +0 -0
  77. data/lib/mihari/web/public/static/fonts/fa-regular-400.b91d376b.woff2 +0 -0
  78. data/lib/mihari/web/public/static/fonts/fa-regular-400.d1d7e3b4.woff +0 -0
  79. data/lib/mihari/web/public/static/fonts/fa-solid-900.0c6bfc66.eot +0 -0
  80. data/lib/mihari/web/public/static/fonts/fa-solid-900.b9625119.ttf +0 -0
  81. data/lib/mihari/web/public/static/fonts/fa-solid-900.d745348d.woff +0 -0
  82. data/lib/mihari/web/public/static/fonts/fa-solid-900.d824df7e.woff2 +0 -0
  83. data/lib/mihari/web/public/static/img/fa-brands-400.1d5619cd.svg +3717 -0
  84. data/lib/mihari/web/public/static/img/fa-regular-400.c5d109be.svg +801 -0
  85. data/lib/mihari/web/public/static/img/fa-solid-900.37bc7099.svg +5034 -0
  86. data/lib/mihari/web/public/static/js/app.06d5cf1c.js +36 -0
  87. data/lib/mihari/web/public/static/js/app.06d5cf1c.js.map +1 -0
  88. data/lib/mihari/web/public/static/js/app.8e3e5150.js +36 -0
  89. data/lib/mihari/web/public/static/js/app.8e3e5150.js.map +1 -0
  90. data/lib/mihari/web/public/static/js/app.b5914c39.js +36 -0
  91. data/lib/mihari/web/public/static/js/app.b5914c39.js.map +1 -0
  92. data/lib/mihari.rb +30 -4
  93. data/mihari.gemspec +10 -1
  94. data/sig/lib/mihari/analyzers/base.rbs +90 -0
  95. data/sig/lib/mihari/analyzers/basic.rbs +17 -0
  96. data/sig/lib/mihari/analyzers/binaryedge.rbs +25 -0
  97. data/sig/lib/mihari/analyzers/censys.rbs +38 -0
  98. data/sig/lib/mihari/analyzers/circl.rbs +29 -0
  99. data/sig/lib/mihari/analyzers/crtsh.rbs +19 -0
  100. data/sig/lib/mihari/analyzers/dnpedia.rbs +18 -0
  101. data/sig/lib/mihari/analyzers/dnstwister.rbs +27 -0
  102. data/sig/lib/mihari/analyzers/onyphe.rbs +33 -0
  103. data/sig/lib/mihari/analyzers/otx.rbs +33 -0
  104. data/sig/lib/mihari/analyzers/passivetotal.rbs +33 -0
  105. data/sig/lib/mihari/analyzers/pulsedive.rbs +27 -0
  106. data/sig/lib/mihari/analyzers/rule.rbs +68 -0
  107. data/sig/lib/mihari/analyzers/securitytrails.rbs +33 -0
  108. data/sig/lib/mihari/analyzers/shodan.rbs +33 -0
  109. data/sig/lib/mihari/analyzers/spyse.rbs +29 -0
  110. data/sig/lib/mihari/analyzers/urlscan.rbs +28 -0
  111. data/sig/lib/mihari/analyzers/virustotal.rbs +31 -0
  112. data/sig/lib/mihari/analyzers/zoomeye.rbs +33 -0
  113. data/sig/lib/mihari/cli/analyzer.rbs +39 -0
  114. data/sig/lib/mihari/cli/base.rbs +11 -0
  115. data/sig/lib/mihari/cli/init.rbs +7 -0
  116. data/sig/lib/mihari/cli/main.rbs +9 -0
  117. data/sig/lib/mihari/cli/mixins/utils.rbs +50 -0
  118. data/sig/lib/mihari/cli/validator.rbs +7 -0
  119. data/sig/lib/mihari/commands/binaryedge.rbs +7 -0
  120. data/sig/lib/mihari/commands/censys.rbs +7 -0
  121. data/sig/lib/mihari/commands/circl.rbs +7 -0
  122. data/sig/lib/mihari/commands/crtsh.rbs +7 -0
  123. data/sig/lib/mihari/commands/dnpedia.rbs +7 -0
  124. data/sig/lib/mihari/commands/dnstwister.rbs +7 -0
  125. data/sig/lib/mihari/commands/init.rbs +11 -0
  126. data/sig/lib/mihari/commands/json.rbs +7 -0
  127. data/sig/lib/mihari/commands/onyphe.rbs +7 -0
  128. data/sig/lib/mihari/commands/otx.rbs +7 -0
  129. data/sig/lib/mihari/commands/passivetotal.rbs +7 -0
  130. data/sig/lib/mihari/commands/pulsedive.rbs +7 -0
  131. data/sig/lib/mihari/commands/search.rbs +35 -0
  132. data/sig/lib/mihari/commands/securitytrails.rbs +7 -0
  133. data/sig/lib/mihari/commands/shodan.rbs +7 -0
  134. data/sig/lib/mihari/commands/spyse.rbs +7 -0
  135. data/sig/lib/mihari/commands/urlscan.rbs +7 -0
  136. data/sig/lib/mihari/commands/validator.rbs +11 -0
  137. data/sig/lib/mihari/commands/virustotal.rbs +7 -0
  138. data/sig/lib/mihari/commands/web.rbs +7 -0
  139. data/sig/lib/mihari/commands/zoomeye.rbs +7 -0
  140. data/sig/lib/mihari/constants.rbs +3 -0
  141. data/sig/lib/mihari/database.rbs +25 -0
  142. data/sig/lib/mihari/emitters/base.rbs +18 -0
  143. data/sig/lib/mihari/emitters/database.rbs +9 -0
  144. data/sig/lib/mihari/emitters/misp.rbs +28 -0
  145. data/sig/lib/mihari/emitters/slack.rbs +58 -0
  146. data/sig/lib/mihari/emitters/stdout.rbs +9 -0
  147. data/sig/lib/mihari/emitters/the_hive.rbs +24 -0
  148. data/sig/lib/mihari/emitters/webhook.rbs +20 -0
  149. data/sig/lib/mihari/enrichers/ipinfo.rbs +14 -0
  150. data/sig/lib/mihari/errors.rbs +10 -0
  151. data/sig/lib/mihari/mixins/autonomous_system.rbs +14 -0
  152. data/sig/lib/mihari/mixins/configurable.rbs +26 -0
  153. data/sig/lib/mihari/mixins/configuration.rbs +45 -0
  154. data/sig/lib/mihari/mixins/disallowed_data_value.rbs +25 -0
  155. data/sig/lib/mihari/mixins/hash.rbs +14 -0
  156. data/sig/lib/mihari/mixins/refang.rbs +14 -0
  157. data/sig/lib/mihari/mixins/retriable.rbs +15 -0
  158. data/sig/lib/mihari/mixins/rule.rbs +41 -0
  159. data/sig/lib/mihari/models/alert.rbs +46 -0
  160. data/sig/lib/mihari/models/artifact.rbs +65 -0
  161. data/sig/lib/mihari/models/autonomous_system.rbs +14 -0
  162. data/sig/lib/mihari/models/dns.rbs +19 -0
  163. data/sig/lib/mihari/models/geolocation.rbs +15 -0
  164. data/sig/lib/mihari/models/reverse_dns.rbs +14 -0
  165. data/sig/lib/mihari/models/tag.rbs +5 -0
  166. data/sig/lib/mihari/models/tagging.rbs +4 -0
  167. data/sig/lib/mihari/models/whois.rbs +66 -0
  168. data/sig/lib/mihari/notifiers/base.rbs +18 -0
  169. data/sig/lib/mihari/notifiers/exception_notifier.rbs +75 -0
  170. data/sig/lib/mihari/notifiers/slack.rbs +50 -0
  171. data/sig/lib/mihari/status.rbs +25 -0
  172. data/sig/lib/mihari/structs/censys.rbs +50 -0
  173. data/sig/lib/mihari/structs/ipinfo.rbs +17 -0
  174. data/sig/lib/mihari/structs/onyphe.rbs +25 -0
  175. data/sig/lib/mihari/structs/shodan.rbs +28 -0
  176. data/sig/lib/mihari/type_checker.rbs +48 -0
  177. data/sig/lib/mihari/types.rbs +17 -0
  178. data/sig/lib/mihari/version.rbs +3 -0
  179. data/sig/lib/mihari/web/app.rbs +5 -0
  180. data/sig/lib/mihari.rbs +57 -0
  181. metadata +259 -5
@@ -24,6 +24,7 @@ module Mihari
24
24
  class Analyzer < Base
25
25
  class_option :ignore_old_artifacts, type: :boolean, default: false, desc: "Whether to ignore old artifacts from checking or not."
26
26
  class_option :ignore_threshold, type: :numeric, default: 0, desc: "Number of days to define whether an artifact is old or not."
27
+ class_option :config, type: :string, desc: "Path to the config file"
27
28
 
28
29
  include Mihari::Commands::BinaryEdge
29
30
  include Mihari::Commands::Censys
@@ -12,8 +12,6 @@ module Mihari
12
12
  include Mihari::Mixins::Hash
13
13
  include Mixins::Utils
14
14
 
15
- class_option :config, type: :string, desc: "Path to the config file"
16
-
17
15
  class << self
18
16
  def exit_on_failure?
19
17
  true
@@ -37,7 +37,7 @@ module Mihari
37
37
 
38
38
  initialize_rule_yaml filename
39
39
 
40
- puts "The rule file is created as #{filename}.".colorize(:blue)
40
+ puts "The rule file is initialized as #{filename}.".colorize(:blue)
41
41
  end
42
42
  end
43
43
  end
@@ -8,6 +8,7 @@ module Mihari
8
8
  def self.included(thor)
9
9
  thor.class_eval do
10
10
  desc "search [RULE]", "Search by a rule"
11
+ method_option :config, type: :string, desc: "Path to the config file"
11
12
  def search_by_rule(rule)
12
13
  # convert str(YAML) to hash or str(path/YAML file) to hash
13
14
  rule = load_rule(rule)
@@ -8,6 +8,7 @@ module Mihari
8
8
  desc "web", "Launch the web app"
9
9
  method_option :port, type: :numeric, default: 9292
10
10
  method_option :host, type: :string, default: "localhost"
11
+ method_option :config, type: :string, desc: "Path to the config file"
11
12
  def web
12
13
  port = options["port"].to_i || 9292
13
14
  host = options["host"] || "localhost"
File without changes
@@ -32,12 +32,59 @@ class InitialSchema < ActiveRecord::Migration[6.1]
32
32
  end
33
33
  end
34
34
 
35
- class V3Schema < ActiveRecord::Migration[6.1]
35
+ class AddeSourceToArtifactSchema < ActiveRecord::Migration[6.1]
36
36
  def change
37
37
  add_column :artifacts, :source, :string, if_not_exists: true
38
38
  end
39
39
  end
40
40
 
41
+ class EnrichmentsSchema < ActiveRecord::Migration[6.1]
42
+ def change
43
+ create_table :autonomous_systems, if_not_exists: true do |t|
44
+ t.integer :asn, null: false
45
+ t.belongs_to :artifact, foreign_key: true
46
+ end
47
+
48
+ create_table :geolocations, if_not_exists: true do |t|
49
+ t.string :country, null: false
50
+ t.string :country_code, null: false
51
+ t.belongs_to :artifact, foreign_key: true
52
+ end
53
+
54
+ create_table :whois_records, if_not_exists: true do |t|
55
+ t.string :domain, null: false
56
+ t.date :created_on
57
+ t.date :updated_on
58
+ t.date :expires_on
59
+ t.json :registrar
60
+ t.json :contacts
61
+ t.belongs_to :artifact, foreign_key: true
62
+ end
63
+
64
+ create_table :dns_records, if_not_exists: true do |t|
65
+ t.string :resource, null: false
66
+ t.string :value, null: false
67
+ t.belongs_to :artifact, foreign_key: true
68
+ end
69
+
70
+ create_table :reverse_dns_names, if_not_exists: true do |t|
71
+ t.string :name, null: false
72
+ t.belongs_to :artifact, foreign_key: true
73
+ end
74
+ end
75
+ end
76
+
77
+ class EnrichmentCreatedAtSchema < ActiveRecord::Migration[6.1]
78
+ def change
79
+ # Add created_at column because now it is able to enrich an atrifact after the creation
80
+ add_column :autonomous_systems, :created_at, :datetime, if_not_exists: true
81
+ add_column :geolocations, :created_at, :datetime, if_not_exists: true
82
+ add_column :whois_records, :created_at, :datetime, if_not_exists: true
83
+ add_column :dns_records, :created_at, :datetime, if_not_exists: true
84
+ add_column :reverse_dns_names, :created_at, :datetime, if_not_exists: true
85
+ end
86
+ end
87
+
41
88
  def adapter
42
89
  return "postgresql" if Mihari.config.database.start_with?("postgresql://", "postgres://")
43
90
  return "mysql2" if Mihari.config.database.start_with?("mysql2://")
@@ -59,10 +106,13 @@ module Mihari
59
106
  )
60
107
  end
61
108
 
109
+ # ActiveRecord::Base.logger = Logger.new STDOUT
62
110
  ActiveRecord::Migration.verbose = false
63
111
 
64
112
  InitialSchema.migrate(:up)
65
- V3Schema.migrate(:up)
113
+ AddeSourceToArtifactSchema.migrate(:up)
114
+ EnrichmentsSchema.migrate(:up)
115
+ EnrichmentCreatedAtSchema.migrate(:up)
66
116
  rescue StandardError
67
117
  # Do nothing
68
118
  end
@@ -76,7 +126,9 @@ module Mihari
76
126
  return unless ActiveRecord::Base.connected?
77
127
 
78
128
  InitialSchema.migrate(:down)
79
- V3Schema.migrate(:down)
129
+ AddeSourceToArtifactSchema.migrate(:down)
130
+ EnrichmentsSchema.migrate(:down)
131
+ EnrichmentCreatedAtSchema.migrate(:down)
80
132
  end
81
133
  end
82
134
  end
@@ -10,7 +10,7 @@ module Mihari
10
10
  Mihari.emitters << child
11
11
  end
12
12
 
13
- # @return [true, false]
13
+ # @return [Boolean]
14
14
  def valid?
15
15
  raise NotImplementedError, "You must implement #{self.class}##{__method__}"
16
16
  end
@@ -15,7 +15,7 @@ module Mihari
15
15
  end
16
16
  end
17
17
 
18
- # @return [true, false]
18
+ # @return [Boolean]
19
19
  def valid?
20
20
  api_endpoint? && api_key? && ping?
21
21
  end
@@ -42,10 +42,24 @@ module Mihari
42
42
  %w[misp_api_endpoint misp_api_key]
43
43
  end
44
44
 
45
+ #
46
+ # Build a MISP attribute
47
+ #
48
+ # @param [Mihari::Artifact] artifact
49
+ #
50
+ # @return [::MISP::Attribute] <description>
51
+ #
45
52
  def build_attribute(artifact)
46
53
  ::MISP::Attribute.new(value: artifact.data, type: to_misp_type(type: artifact.data_type, value: artifact.data))
47
54
  end
48
55
 
56
+ #
57
+ # Get a type of a hash
58
+ #
59
+ # @param [String] value
60
+ #
61
+ # @return [String]
62
+ #
49
63
  def hash_type(value)
50
64
  case value.length
51
65
  when 32
@@ -59,6 +73,14 @@ module Mihari
59
73
  end
60
74
  end
61
75
 
76
+ #
77
+ # Convert a type to a MISP type
78
+ #
79
+ # @param [String] type
80
+ # @param [String] value
81
+ #
82
+ # @return [String]
83
+ #
62
84
  def to_misp_type(type:, value:)
63
85
  type = type.to_sym
64
86
  table = {
@@ -72,20 +94,31 @@ module Mihari
72
94
  hash_type value
73
95
  end
74
96
 
75
- def create_attribute(artifact)
76
- artifact.data_type
77
- end
78
-
97
+ #
98
+ # Check whether an API endpoint is set or not
99
+ #
100
+ # @return [Boolean]
101
+ #
79
102
  def api_endpoint?
80
103
  api_endpoint = ::MISP.configuration.api_endpoint
81
104
  !api_endpoint.nil? && !api_endpoint.empty?
82
105
  end
83
106
 
107
+ #
108
+ # Check whether an API key is set or not
109
+ #
110
+ # @return [Boolean]
111
+ #
84
112
  def api_key?
85
113
  api_key = ::MISP.configuration.api_key
86
114
  !api_key.nil? && !api_key.empty?
87
115
  end
88
116
 
117
+ #
118
+ # Check whether an API endpoint is reachable or not
119
+ #
120
+ # @return [Boolean]
121
+ #
89
122
  def ping?
90
123
  base_url = ::MISP.configuration.api_endpoint
91
124
  base_url = base_url.end_with?("/") ? base_url[0..-2] : base_url
@@ -55,7 +55,7 @@ module Mihari
55
55
 
56
56
  private
57
57
 
58
- # @return [String]
58
+ # @return [String, nil]
59
59
  def _urlscan_link
60
60
  case data_type
61
61
  when "ip"
@@ -69,7 +69,7 @@ module Mihari
69
69
  end
70
70
  memoize :_urlscan_link
71
71
 
72
- # @return [String]
72
+ # @return [String, nil]
73
73
  def _vt_link
74
74
  case data_type
75
75
  when "hash"
@@ -86,11 +86,13 @@ module Mihari
86
86
  end
87
87
  memoize :_vt_link
88
88
 
89
+ # @return [String, nil]
89
90
  def _censys_link
90
91
  data_type == "ip" ? "https://search.censys.io/hosts/#{data}" : nil
91
92
  end
92
93
  memoize :_censys_link
93
94
 
95
+ # @return [String, nil]
94
96
  def _shodan_link
95
97
  data_type == "ip" ? "https://www.shodan.io/host/#{data}" : nil
96
98
  end
@@ -116,12 +118,28 @@ module Mihari
116
118
  notifier.valid?
117
119
  end
118
120
 
121
+ #
122
+ # Build attachements
123
+ #
124
+ # @param [Array<Mihari::Artifact>] artifacts
125
+ #
126
+ # @return [Array<Mihari::Emitters::Attachment>]
127
+ #
119
128
  def to_attachments(artifacts)
120
129
  artifacts.map do |artifact|
121
130
  Attachment.new(data: artifact.data, data_type: artifact.data_type).to_a
122
131
  end.flatten
123
132
  end
124
133
 
134
+ #
135
+ # Build a text
136
+ #
137
+ # @param [String] title
138
+ # @param [String] description
139
+ # @param [Array<String>] tags
140
+ #
141
+ # @return [String]
142
+ #
125
143
  def to_text(title:, description:, tags: [])
126
144
  tags = ["N/A"] if tags.empty?
127
145
 
@@ -6,7 +6,7 @@ require "net/ping"
6
6
  module Mihari
7
7
  module Emitters
8
8
  class TheHive < Base
9
- # @return [true, false]
9
+ # @return [Boolean]
10
10
  def valid?
11
11
  api_endpont? && api_key? && ping?
12
12
  end
@@ -34,16 +34,29 @@ module Mihari
34
34
  @api ||= Hachi::API.new(api_endpoint: Mihari.config.thehive_api_endpoint, api_key: Mihari.config.thehive_api_key)
35
35
  end
36
36
 
37
- # @return [true, false]
37
+ #
38
+ # Check whether an API endpoint is set or not
39
+ #
40
+ # @return [Boolean]
41
+ #
38
42
  def api_endpont?
39
43
  !Mihari.config.thehive_api_endpoint.nil?
40
44
  end
41
45
 
42
- # @return [true, false]
46
+ #
47
+ # Check whether an API key is set or not
48
+ #
49
+ # @return [Boolean]
50
+ # ]
43
51
  def api_key?
44
52
  !Mihari.config.thehive_api_key.nil?
45
53
  end
46
54
 
55
+ #
56
+ # Check whether an API endpoint is reachable or not
57
+ #
58
+ # @return [Boolean]
59
+ #
47
60
  def ping?
48
61
  base_url = Mihari.config.thehive_api_endpoint
49
62
  base_url = base_url.end_with?("/") ? base_url[0..-2] : base_url
@@ -7,7 +7,7 @@ require "uri"
7
7
  module Mihari
8
8
  module Emitters
9
9
  class Webhook < Base
10
- # @return [true, false]
10
+ # @return [Boolean]
11
11
  def valid?
12
12
  webhook_url?
13
13
  end
@@ -24,7 +24,7 @@ module Mihari
24
24
  tags: tags
25
25
  }
26
26
 
27
- if use_json_body
27
+ if use_json_body?
28
28
  Net::HTTP.post(uri, data.to_json, "Content-Type" => "application/json")
29
29
  else
30
30
  Net::HTTP.post_form(uri, data)
@@ -37,15 +37,30 @@ module Mihari
37
37
  %w[webhook_url]
38
38
  end
39
39
 
40
+ #
41
+ # Webhook URL
42
+ #
43
+ # @return [String, nil]
44
+ #
40
45
  def webhook_url
41
46
  @webhook_url ||= Mihari.config.webhook_url
42
47
  end
43
48
 
49
+ #
50
+ # Check whether a webhook URL is set or not
51
+ #
52
+ # @return [<Type>] <description>
53
+ #
44
54
  def webhook_url?
45
55
  !webhook_url.nil?
46
56
  end
47
57
 
48
- def use_json_body
58
+ #
59
+ # Check whether to use JSON body or NOT
60
+ #
61
+ # @return [<Type>] <description>
62
+ #
63
+ def use_json_body?
49
64
  @use_json_body ||= Mihari.config.webhook_use_json_body
50
65
  end
51
66
  end
@@ -0,0 +1,38 @@
1
+ require "http"
2
+ require "json"
3
+ require "memist"
4
+
5
+ module Mihari
6
+ module Enrichers
7
+ class IPInfo
8
+ class << self
9
+ include Memist::Memoizable
10
+
11
+ #
12
+ # Query IPInfo
13
+ #
14
+ # @param [String] ip
15
+ #
16
+ # @return [Mihari::Structs::IPInfo::Response, nil]
17
+ #
18
+ def query(ip)
19
+ headers = {}
20
+ token = Mihari.config.ipinfo_api_key
21
+ unless token.nil?
22
+ headers[:authorization] = "Bearer #{token}"
23
+ end
24
+
25
+ begin
26
+ res = HTTP.headers(headers).get("https://ipinfo.io/#{ip}/json")
27
+ data = JSON.parse(res.body.to_s)
28
+
29
+ Structs::IPInfo::Response.from_dynamic! data
30
+ rescue HTTP::Error
31
+ nil
32
+ end
33
+ end
34
+ memoize :query
35
+ end
36
+ end
37
+ end
38
+ end
@@ -0,0 +1,19 @@
1
+ module Mihari
2
+ module Mixins
3
+ module AutonomousSystem
4
+ #
5
+ # Normalize ASN value
6
+ #
7
+ # @param [String, Integer] asn
8
+ #
9
+ # @return [Integer]
10
+ #
11
+ def normalize_asn(asn)
12
+ return asn if asn.is_a?(Integer)
13
+ return asn.to_i unless asn.start_with?("AS")
14
+
15
+ asn.delete_prefix("AS").to_i
16
+ end
17
+ end
18
+ end
19
+ end
@@ -17,7 +17,7 @@ module Mihari
17
17
 
18
18
  # if a value is surrounded by slashes, take it as a regexp
19
19
  value_without_slashes = value[1..-2]
20
- Regexp.compile value_without_slashes
20
+ Regexp.compile value_without_slashes.to_s
21
21
  end
22
22
 
23
23
  memoize :normalize_disallowed_data_value