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 50 51 52 53 54 55 56 57 58 59 60 61
|
##
# 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 "MySource-Matrix"
authors [
"Brendan Coles <bcoles@gmail.com>", # 2010-09-04
]
version "0.1"
description "MySource Matrix is a feature-rich, enterprise-class Supported Open Source CMS (Content Management System)."
website "http://www.squiz.co.uk/mysource-matrix-open-source-cms"
# 84 results for "powered by Mysource matrix" @ 2010-09-04
# Dorks #
dorks [
'"powered by Mysource matrix"'
]
matches [
# Powered by text
{ :text=>'<p class="right">Powered by <a href="http://www.squiz.co.uk/mysource_matrix" target="_blank">MySource Matrix</a></p>' },
{ :text=>'class="squiz">Powered by MySource Matrix - a Squiz.net initiative</a> </div> </div>' },
{ :text=>'<p>Powered By MySource Matrix - A Squiz.net Initiative</p>' },
# HTML comment
{ :text=>' MySource, MySource Matrix and Squiz.net are registered Trademarks of Squiz Pty Ltd' },
]
# Version detection
passive do
m=[]
# Powered by text
if @body =~ /Powered by <a href="http:\/\/www.squiz.[^>]+>/
if @body =~ /MySource Matrix ([\d\.]+)/
version=@body.scan(/MySource Matrix ([\d\.]+)/)[0][0]
m << {:version=>version}
end
end
# HTML comment
if @body =~ / Running Squiz MySource v([\d\.]+) \(Matrix\) - http:\/\/matrix.squiz.net\//
version=@body.scan(/ Running Squiz MySource v([\d\.]+) \(Matrix\) - http:\/\/matrix.squiz.net\//)[0][0]
m << {:version=>version}
end
m
end
end
|