mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
38 lines
1.1 KiB
Ruby
38 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 "Esvon-Classifieds"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2010-09-13
|
|
]
|
|
version "0.1"
|
|
description "Intense research, development and testing has brought us to what we call Esvon Classifieds. This package is a good base for building a successful website and is created with high performance and scalable technology using PHP and MySQL."
|
|
website "http://www.esvon.com/pg/products/p_classifieds/"
|
|
|
|
# Google results as at 2010-09-13 #
|
|
# 90 for "powered by Esvon Classifieds"
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'"powered by Esvon Classifieds"'
|
|
]
|
|
|
|
|
|
|
|
matches [
|
|
|
|
# HTML comment
|
|
{ :text=>'<!-- DO NOT REMOVE OR EDIT THIS LINE, DOING SO WILL RESULT IN COPYRIGHT VIOLATIONS UNLESS YOU PURCHASED "POWERED BY" REMOVAL OPTION -->' },
|
|
|
|
# Powered by text
|
|
{ :regexp=>/Powered by Esvon <a href='http:\/\/www.esvon.com\/pg\/products\/p_classifieds\/' target="_blank"[^>]+>Classifieds<\/a>/ },
|
|
|
|
]
|
|
|
|
end
|
|
|