1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
##
# 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
##
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
|