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 46 47 48 49
|
##
# 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 "MShift" do
author "Brendan Coles <bcoles@gmail.com>" # 2011-05-12
version "0.1"
description "MShift - Comprehensive Mobile Banking - Over 200 US Financial Institutions are MShift clients. With a base comprised of the largest banks in the world, as well as regional credit unions and local banks, MShift is the standard by which Mobile Banking is measured."
website "http://www.mshift.com/"
# Google results as at 2011-05-12 #
# 53 for inurl:msestks
# Dorks #
dorks [
'inurl:msestks'
]
# Matches #
matches [
# Default Page # body
{ :text=>'<BODY><b>MShift, Inc</b><br>Relevant Mobile Solutions<br>http://www.mshift.com' },
# Powered by text
{ :text=>'<td align="center"><font size="-1" color="#FFFFFF">Powered by MShift®</font></td></tr>' },
{ :text=>'<td align="center"><font size="-1" color=#FFFFFF>Powered by MShift®</font></td></tr>' },
{ :text=>'<div class="poweredBy">Powered by MShift ®</div>' },
]
# Passive #
def passive
m=[]
# dcttype cookie
m << { :certainty=>25, :name=>"dcttype cookie" } if @headers["set-cookie"] =~ /^dcttype=1$/
# Return passive matches
m
end
end
|