Sha256: bed343692dc40f7caab079188edd332668c1d9de30bc8a321e305268bc6030fa

Contents?: true

Size: 1.16 KB

Versions: 6

Compression:

Stored size: 1.16 KB

Contents

# frozen_string_literal: true

##
# 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
##
WhatWeb::Plugin.define "phpMyRealty" do
  @author = "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"> &nbsp;Administrator Control Panel</span>' },

  ]
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
simple_whatweb-0.4.1 lib/whatweb/plugins/phpmyrealty.rb
simple_whatweb-0.4.0 lib/whatweb/plugins/phpmyrealty.rb
simple_whatweb-0.3.0 lib/whatweb/plugins/phpmyrealty.rb
simple_whatweb-0.2.1 lib/whatweb/plugins/phpmyrealty.rb
simple_whatweb-0.2.0 lib/whatweb/plugins/phpmyrealty.rb
simple_whatweb-0.1.0 lib/whatweb/plugins/phpmyrealty.rb