File: vbPortal.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 (80 lines) | stat: -rw-r--r-- 1,896 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
##
# 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-02-24 #
# Updated version detection
##
Plugin.define "vbPortal" do
author "Brendan Coles <bcoles@gmail.com>"
version "0.2"
description "Portal and CMS for vBulletin - homepage: http://www.vbportal.com/"

# Google results as for 2010-08-27 #
# 154 for "Portal By vbPortal Version "

# Examples #
examples %w|
horrordvds.com
bytephoto.com
beta.renderotica.com/fora/
icmag.com
planetdragonball.net
grunwalds.com
unrealtournament.villageidiot.net
sharedportal.info
horrordigital.com
v2-forum.com/viewarticle.php
welderzone.com
www.cnczone.com
www.limpkinw.com
www.caddis.co.uk
www.satsupport.net/portal/
www.peugeot-gti.net/forums/
www.smgvbest.com/photopost/
www.hipforums.com/modules/News/
www.steppinoutnewmexico.com/
www.vizdepot.com/forums/
www.global-voices.info
www.scrapbookjunction.com/forums/
www.rapworlds.com
www.starwarsepics.com
www.amgforums.com
www.turborides.com
www.dslrexchange.com
www.abfnet.com
www.bitbendertest.com
www.bitbenderforums.com
www.kitten.com.my
www.firewallforums.com
www.iaap.co.uk/forum/
www.venturerider.org
www.worldspankingforum.com
www.world-spanking-forum.net/forums/
www.world-spanking-forum.com/forums/
www.delikan.net
www.db-forum.de
www.bghelp.net
|

# Matches #
matches [

# Meta Generator
{ :text=>'<meta name="generator" content="vbPortal - Copyright 2010" />' },

# HTML Comment
{ :text=>'	<!-- Do not remove  or your scheduled tasks will cease to function -->' },

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

# Version Detection # Portal by text
{ :version=>/Portal By vbPortal Version ([\d\.]+)<br \/>/ },

]

end