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 "Webalizer-Log" do
8author "Brendan Coles <bcoles@gmail.com>" # 2011-05-20
9version "0.1"
10description "Webalizer is a fast, free web server log file analysis program. It produces highly detailed, easily configurable usage reports in HTML format, for viewing with a standard web browser."
11website "http://www.webalizer.org/"
12
13# Google results as at 2011-05-20 #
14# 529 for intitle:"Usage Statistics for" "Monthly Statistics" "Generated by Webalizer"
15
16# Dorks #
17dorks [
18'intitle:"Usage Statistics for" "Monthly Statistics" "Generated by Webalizer"'
19]
20
21
22
23# Matches #
24matches [
25
26# Version Detection # HTML Comment
27{ :version=>/<!-- Generated by The Webalizer  Ver\. ([^\s]+) -->/ },
28{ :version=>/<!-- Webalizer Version ([^\s]+) \(Mod: [\d]{1,2}-[a-zA-Z]{3}-[\d]{4}\) -->/ },
29
30# Version Detection # Footer
31{ :version=>/<A HREF="http:\/\/www\.webalizer\.org\/"><STRONG>Webalizer Version ([^<]+)<\/STRONG><\/A>/ },
32
33]
34
35end
36
37