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 "Sphinx" do
8author "Brendan Coles <bcoles@gmail.com>" # 2011-07-04
9version "0.1"
10description "Sphinx is a tool that makes it easy to create intelligent and beautiful documentation"
11website "http://sphinx.pocoo.org/"
12
13# Google results as at 2011-07-04 #
14# 363 for "Created using Sphinx" +Copyright
15
16# Dorks #
17dorks [
18'"Created using Sphinx" "Copyright"'
19]
20
21
22
23# Matches #
24matches [
25
26# Version Detection # Created using link
27{ :version=>/Created using <a href="http:\/\/sphinx\.pocoo\.org\/">Sphinx<\/a> ([^\s]+)\./ },
28
29# div class="sphinxsidebar" and div class="sphinxsidebarwrapper"
30{ :regexp=>/<div class="sphinxsidebar">[\s]+<div class="sphinxsidebarwrapper">/ },
31
32]
33
34end
35
36