mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
50 lines
1.3 KiB
Ruby
50 lines
1.3 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 "iRealty"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2010-08-08
|
|
]
|
|
version "0.1"
|
|
description "iRealty is an advanced flexible php real estate software and CMS with open source code."
|
|
website "http://www.irealtysoft.com/"
|
|
|
|
# 52 results for "powered by iRealty" @ 2010-08-08
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'"powered by iRealty"'
|
|
]
|
|
|
|
|
|
|
|
matches [
|
|
|
|
{ :text=>'Powered by <a href="http://www.irealty.com/" title="iRealty"> iRealty </a>' },
|
|
|
|
{ :text=>'<a target="_blank" href="http://www.irealtysoft.com/">- Powered by iRealty</a>' },
|
|
|
|
{ :text=>'Powered by <a target="_blank" title="iRealty — Real Estate Listing Software" href="http://www.irealtysoft.com/">iRealty</a>,' },
|
|
|
|
{ :text=>'Powered by <a target="_blank" title="iRealty — Real Estate Listing Software" href="http://www.worksforweb.com/products/iRealty/">iRealty</a>,' },
|
|
|
|
]
|
|
|
|
# Match PHPSESSID%28_%29 cookie
|
|
passive do
|
|
m=[]
|
|
|
|
m << { :name=>"iRealty PHPSESSID%28_%29 cookie" } if @headers["set-cookie"] =~ /^PHPSESSID%28_%29=[a-z0-9]{32}/
|
|
|
|
m
|
|
|
|
end
|
|
|
|
|
|
end
|
|
|