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
|
##
# 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 "HP-StorageWorks-Library" do
author "Brendan Coles <bcoles@gmail.com>" # 2012-02-16
version "0.1"
description "HP StorageWorks Library and Tape Tools (L&TT) is a diagnostic tool for all of HP's tape storage and magneto-optical storage products."
website "http://h18006.www1.hp.com/products/storageworks/ltt/index.html"
# Google results as at 2012-02-16 #
# 2 for intitle:"HP StorageWorks" intitle:"Tape Library Webpages" "Command View MSL" "Account Type"
# Dorks #
dorks [
' intitle:"HP StorageWorks" intitle:"Tape Library Webpages" "Command View MSL" "Account Type"'
]
# Matches #
matches [
# /login.ssi
{ :url=>'/login.ssi', :text=>'<TD class="mastheadIcon"><img src="signin_logo.gif" border="0" alt="HP"></TD>' },
# /login.ssi
{ :url=>'/login.ssi', :version=>/<TITLE>HP StorageWorks (MSL[^\s]+) Tape Library Webpages<\/TITLE>/ },
# /index.htm
{ :url=>"/index.htm", :md5=>"63a4689c098daa89f62cc13069571204" },
]
end
|