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 "dotclear" do
8author "Brendan Coles <bcoles@gmail.com>" # 2012-02-29 #
9version "0.1"
10description "dotclear - blog"
11website "http://dotclear.org/"
12
13# Google results as at 2012-02-28 #
14# 561 for "powered by dotclear"
15
16# Dorks #
17dorks [
18'"powered by dotclear"'
19]
20
21
22
23# Matches #
24matches [
25
26# Powered by link
27{ :text=>'<p>Powered by <a href="http://dotclear.org/">Dotclear</a></p>' },
28
29# HTML Comments
30{ :text=>'<!-- End #d-content -->' },
31{ :text=>'<!-- End #blogextra -->' },
32
33# Search link
34{ :text=>'<a href="#search">To search</a>' },
35
36# p class="post-info-co"
37{ :text=>'<p class="post-info-co">' },
38
39]
40
41end
42
43