Sha256: 0d57373716ab72befad727af3799cff49b2c3ec28a259d70dd38faa1264c0aaf

Contents?: true

Size: 1.5 KB

Versions: 6

Compression:

Stored size: 1.5 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 "CAStor" do
  @author = "Brendan Coles <bcoles@gmail.com>" # 2011-09-21
  @version = "0.1"
  @description = "CAStor is object storage software designed to store unstructured data also referred to as fixed content or reference information. This includes documents, e-mail, images, audio, video, voice mails, ring tones, and medical images and records."
  @website = "http://www.caringo.com/"

  # Data Sheets #
  # http://www.caringo.com/resources/datasheets.html

  # Google results as at 2011-09-21 #
  # 2 for intitle:"CAStor Node Status" +"CAStor Node IP"

  # ShodanHQ results as at 2011-09-21 #
  # 25 for CAStor Cluster
  #  2 for CAStor Reverse Proxy

  # Dorks #
  @dorks = [
    'intitle:"CAStor Node Status" "CAStor Node IP"'
  ]

  # Matches #
  @matches = [

    # HTML + Title + h2 Heading
    { url: "/", text: '<html><head><title>CAStor Node Status</title></head><body><h2>CAStor Node IP' },

    # HTTP Headers
    { search: "headers[server]", version: /^CAStor Cluster\/([^\s]+)$/ },
    { search: "headers[server]", module: /^CAStor (Reverse Proxy .+)$/ },
    { search: "headers[castor-system-totalgbavailable]", regexp: /^[\d]+$/ },
    { search: "headers[castor-system-totalgbcapacity]", regexp: /^[\d]+$/ },

  ]
end

Version data entries

6 entries across 6 versions & 1 rubygems

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