Sha256: 9551c4908b558629ecb1a17d7c2174680a2c93b3d254a5b2c7cd881e7fd09ba9

Contents?: true

Size: 1.05 KB

Versions: 6

Compression:

Stored size: 1.05 KB

Contents

# frozen_string_literal: true

##
# This file is part of WhatWeb and may be subject to
# redistribution and commercial restrictions. Please see the WhatWeb
# web site for more information on licensing and terms of use.
# http://www.morningstarsecurity.com/research/whatweb
##
WhatWeb::Plugin.define "FileVista" do
  @author = "Brendan Coles <bcoles@gmail.com>" # 2011-05-07
  @version = "0.1"
  @description = "FileVista is a web file manager for storing, managing and sharing files online through your web browser."
  @website = "http://www.gleamtech.com/products/filevista/web-file-manager"

  # Google results as at 2011-05-07 #
  # 23 for "Welcome to FileVista" "Please enter your credentials:" "User name"

  # Dorks #
  @dorks = [
    '"Welcome to FileVista" "Please enter your credentials:" "User name"'
  ]

  # Matches #
  @matches = [

    # Version Detection # HTML comment
    { version: /<!--\r?\n\tFileVista v([\d\.]+)\r?\n\tCopyright / },

    # Welcome to FileVista text
    { text: "<td>Welcome to FileVista<br />Please enter your credentials:</td>" },

  ]
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
simple_whatweb-0.4.1 lib/whatweb/plugins/filevista.rb
simple_whatweb-0.4.0 lib/whatweb/plugins/filevista.rb
simple_whatweb-0.3.0 lib/whatweb/plugins/filevista.rb
simple_whatweb-0.2.1 lib/whatweb/plugins/filevista.rb
simple_whatweb-0.2.0 lib/whatweb/plugins/filevista.rb
simple_whatweb-0.1.0 lib/whatweb/plugins/filevista.rb