1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
##
# This file is part of WhatWeb and may be subject to
# redistribution and commercial restrictions. Please see the WhatWeb
# web site for more information on licensing and terms of use.
# http://www.morningstarsecurity.com/research/whatweb
##
Plugin.define "phplist" do
author "Brendan Coles <bcoles@gmail.com>" # 2011-05-04
version "0.1"
description "phplist is the world's most popular open source email campaign manager. - Homepage: http://www.phplist.com/"
# 248 for "powered by phplist version" intitle:phplist
# Dorks #
dorks [
'"powered by phplist version" intitle:phplist'
]
# Examples #
examples %w|
demo.phplist.com/lists/
demo.phplist.com/lists/admin/
dev.phplist.com/lists/
dev.phplist.com/lists/admin/
gpsmailadmin.com
newsletter-ilger.com/newsletter/
teu.ac.nz/lists/
www.relevantmethod.com/emarketing/lists/
www.minimarketing.com.ar/lists/
lists.ort.org.il
www.dotcom.co.il/apps/lists/
www.winwinliving.net/admin/
newsletter.etuc.org
illinoispolicecoalition.com/lists/
|
# Matches #
matches [
# Misconfigured
{ :text=>'<html><head><title>Nothing here</title></head><body>' },
{ :text=>'<p>You probably want to be <a href="../">here</a> or <a href="admin/">here</a>.</p>' },
# Meta Author
{ :text=>'<meta name="Author" content="Michiel Dethmers - http://www.phplist.com" />' },
# Version Detection # Meta Powered By
{ :version=>/<meta name="Powered-By" content="phplist version ([^"]+)" \/>/ },
# Version Detection # Powered by link
{ :version=>/<span class="urhere">phplist powered by <\/span><a class="urhere" href="http:\/\/www\.phplist\.com" target="_blank">phplist<\/a> - version ([^<]+)<\/td>/ },
]
end
|