Sha256: 5394a4ac8236ef83e91372ff2ef2a33e09be9a493bb3c6fdf0c0cd56f4f4d1e6

Contents?: true

Size: 761 Bytes

Versions: 20

Compression:

Stored size: 761 Bytes

Contents

# frozen_string_literal: true

module WPScan
  module Finders
    module InterestingFindings
      # Tmm DB Migrate finder
      class TmmDbMigrate < CMSScanner::Finders::Finder
        # @return [ InterestingFinding ]
        def aggressive(_opts = {})
          path = 'wp-content/uploads/tmm_db_migrate/tmm_db_migrate.zip'
          url  = target.url(path)
          res  = browser.forge_request(url, target.head_or_get_request_params).run

          return unless res.code == 200 && res.headers['Content-Type'] =~ %r{\Aapplication/zip}i

          Model::TmmDbMigrate.new(
            url,
            confidence: 100,
            found_by: DIRECT_ACCESS,
            references: { packetstorm: 131_957 }
          )
        end
      end
    end
  end
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
wpscan-3.7.9 app/finders/interesting_findings/tmm_db_migrate.rb
wpscan-3.7.8 app/finders/interesting_findings/tmm_db_migrate.rb
wpscan-3.7.7 app/finders/interesting_findings/tmm_db_migrate.rb
wpscan-3.7.6 app/finders/interesting_findings/tmm_db_migrate.rb
wpscan-3.7.5 app/finders/interesting_findings/tmm_db_migrate.rb
wpscan-3.7.4 app/finders/interesting_findings/tmm_db_migrate.rb
wpscan-3.7.3 app/finders/interesting_findings/tmm_db_migrate.rb
wpscan-3.7.2 app/finders/interesting_findings/tmm_db_migrate.rb
wpscan-3.7.1 app/finders/interesting_findings/tmm_db_migrate.rb
wpscan-3.7.0 app/finders/interesting_findings/tmm_db_migrate.rb
wpscan-3.6.3 app/finders/interesting_findings/tmm_db_migrate.rb
wpscan-3.6.2 app/finders/interesting_findings/tmm_db_migrate.rb
wpscan-3.6.1 app/finders/interesting_findings/tmm_db_migrate.rb
wpscan-3.6.0 app/finders/interesting_findings/tmm_db_migrate.rb
wpscan-3.5.5 app/finders/interesting_findings/tmm_db_migrate.rb
wpscan-3.5.4 app/finders/interesting_findings/tmm_db_migrate.rb
wpscan-3.5.3 app/finders/interesting_findings/tmm_db_migrate.rb
wpscan-3.5.2 app/finders/interesting_findings/tmm_db_migrate.rb
wpscan-3.5.1 app/finders/interesting_findings/tmm_db_migrate.rb
wpscan-3.5.0 app/finders/interesting_findings/tmm_db_migrate.rb