File: Vanilla-Forums.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 (48 lines) | stat: -rw-r--r-- 1,236 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
##
# 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
##
Plugin.define "Vanilla-Forums" do
author "Brendan Coles <bcoles@gmail.com>" # 2012-04-11
version "0.1"
description "Vanilla Forums - open-source, standards-compliant, customizable discussion forums. - Homepage: http://vanillaforums.org/"

# ShodanHQ results as at 2012-04-11 #
# 81 for X-Garden-Version
# 74 for Set-Cookie Vanilla=deleted

# Examples #
examples %w|
107.22.134.225
209.159.145.144
173.203.238.119
173.255.223.82
70.32.106.87
72.167.52.53
50.17.153.22
50.6.101.242
108.166.122.63
64.39.226.216
|

# Matches #
matches [

# Version Detection # X-Garden-Version Header
{ :search=>"headers[x-garden-version]", :version=>/^Vanilla ([^\s]+)$/ },

# Powered by link # Version Detection
{ :version=>/Powered by <a href="(http:\/\/)?getvanilla\.com\/?">Vanilla ([^\s^<]+)<\/a>/, :offset=>1 },

# Vanilla=deleted Cookie
{ :search=>"headers[set-cookie]", :regexp=>/Vanilla=deleted; expires=/ },

# body id
{ :certainty=>25, :regexp=>/<body id=["'](DiscussionsPage|vanilla)/i },

]

end