6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# File 'lib/mihari/commands/urlscan.rb', line 6
def self.included(thor)
thor.class_eval do
desc "urlscan [QUERY]", "urlscan search by a given query"
method_option :title, type: :string, desc: "title"
method_option :description, type: :string, desc: "description"
method_option :tags, type: :array, desc: "tags"
method_option :target_type, type: :string, default: "url", desc: "target type to fetch from lookup results (target type should be 'url', 'domain' or 'ip')"
method_option :use_similarity, type: :boolean, default: false, desc: "use similarity API or not"
def urlscan(query)
with_error_handling do
run_analyzer Analyzers::Urlscan, query: query, options: options
end
end
end
end
|