mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
44 lines
1.1 KiB
Ruby
44 lines
1.1 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 "phpMyRealty"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2011-08-19
|
|
]
|
|
version "0.1"
|
|
description "phpMyRealty - customizable real estate web application - Requires: PHP"
|
|
website "http://www.phpmyrealty.com/"
|
|
|
|
# Google results as at 2011-08-19 #
|
|
# 374 for intext:Sort By: Submission Date | Bedrooms | Bathrooms | Price (ASC) | Price (DESC)
|
|
# 241 for "Powered by phpMyRealty Professional"
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'"Powered by phpMyRealty Professional"'
|
|
]
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
# HTML Comment
|
|
{ :text=>'<!-- Main Content table : stop -->' },
|
|
|
|
# Powered by text
|
|
{ :text=>'Powered by <a href="http://www.phpmyrealty.com" target="_blank" style="font-size: 12px; font-family: arial">phpMyRealty Professional</a>' },
|
|
|
|
# Admin page
|
|
{ :text=>'<span class="table_header_text"> Administrator Control Panel</span>' },
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|