Sha256: 17ac34c4b42c8a7be867565a35df2f2fe408af8d8cc26e8e19a9f581bc9bf17f
Contents?: true
Size: 1.03 KB
Versions: 2
Compression:
Stored size: 1.03 KB
Contents
# frozen_string_literal: true require "thor" module Miteru class CLI < Thor method_option :auto_download, type: :boolean, default: false, desc: "Enable or disable auto-download of phishing kits" method_option :ayashige, type: :boolean, default: false, desc: "Enable or disable ayashige(ninoseki/ayashige) feed" method_option :directory_traveling, type: :boolean, default: false, desc: "Enable or disable directory traveling" method_option :download_to, type: :string, default: "/tmp", desc: "Directory to download file(s)" method_option :post_to_slack, type: :boolean, default: false, desc: "Post a message to Slack if it detects a phishing kit" method_option :size, type: :numeric, default: 100, desc: "Number of urlscan.io's results. (Max: 10,000)" method_option :threads, type: :numeric, desc: "Number of threads to use" method_option :verbose, type: :boolean, default: true desc "execute", "Execute the crawler" def execute Crawler.execute options.map { |k, v| [k.to_sym, v] }.to_h end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
miteru-0.12.8 | lib/miteru/cli.rb |
miteru-0.12.7 | lib/miteru/cli.rb |