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##
7# Version 0.2 # 2011-02-17 #
8# Updated version detection
9##
10Plugin.define "Flax-Article-Manager" do
11author "Brendan Coles <bcoles@gmail.com>" # 2010-08-08
12version "0.2"
13description "Managing large dynamic websites has always been a difficult task for several webmasters, we have developed Flax Article Manager keeping you in mind. By using this system one can easily manage their news and/or articles quite easily."
14website "http://www.flaxweb.com/products/articles"
15
16# Dorks #
17dorks [
18'intitle:"Flax Article CMS Administration Panel"'
19]
20
21
22
23# Matches #
24matches [
25
26# Default image HTML
27{ :text=>'/images/flaxweb_newsletter_bg.gif" bgcolor="#FFFFFF" valign="top"> ' },
28
29# Default Article link HTML
30{ :text=>'<b><a href="http://www.flaxweb.com/products/articles"><font color="#666666">Article ' },
31
32# Admin Panel
33{ :text=>'<title>Flax Article CMS Administration Panel</title>' },
34{ :text=>'recent updates for Flax Article Manager</font></b></a></div>' },
35{ :text=>'<td width=67%><font color=#FFFFFF><a href=admin.php class=htext>Flax ' },
36
37# 403 Error text (/admin/ directory, for example)
38{ :text=>'<td><a href="http://www.flaxweb.com/products/articles">For more details about Flax article manager (CMS) please click ' },
39
40# Version Detection # Copyright footer text
41{ :version=>/[\s]+Copyright [0-9]{4} &copy; Flax Article Manager v([\d\.]+)<\/div>/ },
42
43]
44
45end
46
47