Sha256: 213144b2aaa435a5c4e62899f1cf66213e85f662a7b62c6a79792ba35a521e28

Contents?: true

Size: 1.68 KB

Versions: 6

Compression:

Stored size: 1.68 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 "GridSite" do
  @author = "Brendan Coles <bcoles@gmail.com>" # 2011-01-31
  @version = "0.1"
  @description = "In its simplest application, GridSite uses X.509 certificates loaded into unmodified versions of web browsers like Internet Explorer, Netscape or Mozilla to authenticate users, and then grants read and write authorization on this basis. HTML and text files can be edited within a browser window, or pages and binary files can be uploaded from local disk. Certificate based authentification of users is now far more practical with the start of large scale issuing of X.509 certificates within Grid projects."
  @website = "http://www.gridsite.org/"

  # Google results as at 2011-01-31 #
  # 87,100 for inurl:gridsite-admin.cgi filetype:cgi -inurl

  # Dorks #
  @dorks = [
    'inurl:gridsite-admin.cgi filetype:cgi -inurl'
  ]

  # Matches #
  @matches = [

    # Default Menu HTML
    { text: '<a href="gridsite-admin.cgi?cmd=history&amp;file=index.html">View&nbsp;page&nbsp;history</a>' },
    { text: '<a href="gridsite-admin.cgi?cmd=print&amp;file=index.html">Print&nbsp;View</a>' },

    # Version Detection # Built with text
    { version: /Built with <a href="http:\/\/www.gridsite.org\/">GridSite<\/a>&nbsp;([\d\.]+)/ },
    { version: /Built with <a href="http:\/\/www.gridsite.org\/">GridSite<\/a> ([\d\.]+)/ },

    # FAQ # HTML Comment
    { text: "<!-- start of gridsitefoot.txt -->" },

  ]
end

Version data entries

6 entries across 6 versions & 1 rubygems

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