1##
2# This file is part of WhatWeb and may be subject to
3# redistribution and commercial restrictions. Please see the WhatWeb
4# web site for more information on licensing and terms of use.
5# http://www.morningstarsecurity.com/research/whatweb
6##
7Plugin.define "Vanilla-Forums" do
8author "Brendan Coles <bcoles@gmail.com>" # 2012-04-11
9version "0.1"
10description "Vanilla Forums - open-source, standards-compliant, customizable discussion forums."
11website "http://vanillaforums.org/"
12
13# ShodanHQ results as at 2012-04-11 #
14# 81 for X-Garden-Version
15# 74 for Set-Cookie Vanilla=deleted
16
17
18
19# Matches #
20matches [
21
22# Version Detection # X-Garden-Version Header
23{ :search=>"headers[x-garden-version]", :version=>/^Vanilla ([^\s]+)$/ },
24
25# Powered by link # Version Detection
26{ :version=>/Powered by <a href="(http:\/\/)?getvanilla\.com\/?">Vanilla ([^\s^<]+)<\/a>/, :offset=>1 },
27
28# Vanilla=deleted Cookie
29{ :search=>"headers[set-cookie]", :regexp=>/Vanilla=deleted; expires=/ },
30
31# body id
32{ :certainty=>25, :regexp=>/<body id=["'](DiscussionsPage|vanilla)/i },
33
34]
35
36end
37
38