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 "EMO-Realty-Manager" do
author "Brendan Coles <bcoles@gmail.com>" # 2010-07-25
version "0.1"
description "EMO Realty Manager is a full PHP/MySQL content management system for property companies, real estate agents or FSBO site. - homepage: http://www.emophp.com/"
# Google results as at 2010-07-25 #
# 15 for "powered by EMO Realty Manager"
# Dorks #
dorks [
'"powered by EMO Realty Manager"'
]
# Examples #
examples %w|
buyalldubai.com
upstaterealestate.com
coopernj.com/emophp/
www.pleasantgrovehomes.com
www.lehihomes.com
www.lindonhomes.com
|
matches [
# <td align='left'>© 2010 Emophp.COM</td><td align='right'><a href='http://emophp.com/' target=_blank>Powered by Emo Realty Manager</a></td></tr></table><br></center>
# <td align='left'>Copyright © 2007 Emophp.com</td><td align='right'><a href=http://emophp.com/>Powered by EMO Realty Manager</a></td></tr></table><br>
# <td align='left'>Copyright © 2007 Emophp.com</td><td align='right'><a href=http://emophp.com/>Powered by EMO Realty Manager</a></td></tr></table><br>
# <td align='left'>Copyright © 2006 Emophp.COM</td><td class='text8' align='right'>Powered by <a href='http://emophp.com'>EMO Realty Manager</a></td></tr></table><br>
{ :regexp=>/[0-9]{4} Emophp.[com|COM]*<\/td><td[\ class='text8']* align='right'><a href=[\']*http:\/\/emophp.com[\/]*[\']*[\ target=_blank]*>Powered by [EMO|Emo]+ Realty Manager<\/a><\/td><\/tr><\/table><br>/ },
{ :regexp=>/[0-9]{4} Emophp.[com|COM]*<\/td><td[\ class='text8']* align='right'>Powered by <a href=[\']*http:\/\/emophp.com[\/]*[\']*[\ target=_blank]*>[Emo|EMO]+ Realty Manager<\/a><\/td><\/tr><\/table><br>/ },
]
end
|