Sha256: ca7470e3e4f920b67001218cdae14c8edc1d2d2ca578808a616b90934237ec95

Contents?: true

Size: 1.73 KB

Versions: 9

Compression:

Stored size: 1.73 KB

Contents

module CMSScanner
  module Finders
    class Finder
      # Module to provide an easy way to fingerprint things such as versions
      module Fingerprinter
        # @param [ Hash ] fingerprints The fingerprints
        # Format should be the following:
        # {
        #   file_path_1: {
        #     md5_hash_1: version_1,
        #     md5_hash_2: [version_2]
        #   },
        #   file_path_2: {
        #     md5_hash_3: [version_1, version_2],
        #     md5_hash_4: version_3
        #   }
        # }
        # Note that the version can either be an array or a string
        #
        # @param [ Hash ] opts
        # @option opts [ Boolean ] :show_progression Wether or not to display the progress bar
        #
        # @yield [ Mixed, String, String ] version/s, url, hash The version associated to the
        #                                                       fingerprint of the url
        def fingerprint(fingerprints, opts = {})
          create_progress_bar(opts.merge(total: fingerprints.size)) # if opts[:show_progression]

          fingerprints.each do |path, f|
            url     = target.url(path.dup)
            request = browser.forge_request(url, request_params)

            request.on_complete do |res|
              progress_bar.increment

              md5sum = hexdigest(res.body)

              next unless f.key?(md5sum)

              yield f[md5sum], url, md5sum
            end

            hydra.queue(request)
          end

          hydra.run
        end

        # @return [ Hash ]
        def request_params
          {}
        end

        # @return [ String ] The hashed value for the given body
        def hexdigest(body)
          Digest::MD5.hexdigest(body)
        end
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
cms_scanner-0.0.37.11 lib/cms_scanner/finders/finder/fingerprinter.rb
cms_scanner-0.0.37.10 lib/cms_scanner/finders/finder/fingerprinter.rb
cms_scanner-0.0.37.9 lib/cms_scanner/finders/finder/fingerprinter.rb
cms_scanner-0.0.37.8 lib/cms_scanner/finders/finder/fingerprinter.rb
cms_scanner-0.0.37.7 lib/cms_scanner/finders/finder/fingerprinter.rb
cms_scanner-0.0.37.6 lib/cms_scanner/finders/finder/fingerprinter.rb
cms_scanner-0.0.37.5 lib/cms_scanner/finders/finder/fingerprinter.rb
cms_scanner-0.0.37.4 lib/cms_scanner/finders/finder/fingerprinter.rb
cms_scanner-0.0.37.3 lib/cms_scanner/finders/finder/fingerprinter.rb