File: BosClassifieds.rb

package info (click to toggle)
whatweb 0.4.8~git20120606-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 7,956 kB
  • sloc: ruby: 53,738; sh: 577; makefile: 34
file content (60 lines) | stat: -rw-r--r-- 2,057 bytes parent folder | download
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
##
# 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
##
# Version 0.2 # 2011-01-08 #
# Updated version detection method
##
Plugin.define "BosClassifieds" do
author "Brendan Coles <bcoles@gmail.com>" # 2010-08-22
version "0.2"
description "The BosClassifieds Classified Ad System will allow your web site visitors to place their own classified ads to your web site into categories which you specify. All BosDev, Inc products require a web server running PHP version 4.10 or higher, MySQL 3.23 or higher, and the GD2 graphics library. - homepage: http://www.bosdev.com/bosclassifieds/"

# Google results as at 2010-08-22 #
# 47 for "powered by BosClassifieds Classified Ads System"

# Dorks #
dorks [
'"powered by BosClassifieds Classified Ads System"'
]

# Examples #
examples %w|
cjrayburn.com/clas/index.php
nameokivillagemarine.com/inventory1/index.php
www.gcca.net/classifieds/index.php
www.bahads.com
www.rallyclassified.com
www.landroverforsale.org
www.drafthorseclassified.com/classifieds/recent.php
www.realestateinbelize.org/post.php
www.jetskiads.com/index.php
www.galakeview.info
www.mypurseparties.com/account.php
www.nameokiboats.com/boats/index.php
www.catahoulaclassifieds.com/index.php
www.homoads.com/index.php
www.flahorse.com/barnsale/index.php
www.adworldclassifieds.com/index.php
www.meteorite-times.com/classifieds/index.php
www.vwforsale.org/index.php
www.tractorsclassifieds.com/index.php
www.equinetc.com/horsefairclassifieds/index.php
www.balsamquarter.com/classifieds/index.php
|

# Matches #
matches [

	# Powered by text
	{ :text=>'Powered by <a href="http://www.bosdev.com/" target="_blank">BosClassifieds</a> <a href="http://www.bosdev.com/" target="_blank">Classified Ads</a> System<br>Copyright' },

	# Version Detection # Meta generator
	{ :version=>/  <meta name="generator" content="BosClassifieds ([\d\.]+) by BosDev">/ },

]

end