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 "phplist" do
8author "Brendan Coles <bcoles@gmail.com>" # 2011-05-04
9version "0.1"
10description "phplist is the world's most popular open source email campaign manager."
11website "http://www.phplist.com/"
12
13# 248 for "powered by phplist version" intitle:phplist
14
15# Dorks #
16dorks [
17'"powered by phplist version" intitle:phplist'
18]
19
20
21
22# Matches #
23matches [
24
25# Misconfigured
26{ :text=>'<html><head><title>Nothing here</title></head><body>' },
27{ :text=>'<p>You probably want to be <a href="../">here</a> or <a href="admin/">here</a>.</p>' },
28
29# Meta Author
30{ :text=>'<meta name="Author" content="Michiel Dethmers - http://www.phplist.com" />' },
31
32# Version Detection # Meta Powered By
33{ :version=>/<meta name="Powered-By" content="phplist version ([^"]+)" \/>/ },
34
35# Version Detection # Powered by link
36{ :version=>/<span class="urhere">phplist powered by <\/span><a class="urhere" href="http:\/\/www\.phplist\.com" target="_blank">phplist<\/a> - version ([^<]+)<\/td>/ },
37
38]
39
40end
41
42
43