mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
49 lines
1.4 KiB
Ruby
49 lines
1.4 KiB
Ruby
##
|
|
# 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.
|
|
# https://morningstarsecurity.com/research/whatweb
|
|
##
|
|
Plugin.define do
|
|
name "CAStor"
|
|
authors [
|
|
"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
|
|
|