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 58 59 60 61
|
##
# 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 "Dokeos" do
author "Brendan Coles <bcoles@gmail.com>" # 2011-03-24
version "0.1"
description "Dokeos is an open source online learning suite. It provides all the features needed for e-learning and blended learning management : From Authoring to Reporting."
website "http://www.dokeos.com/"
# Google results as at 2011-03-24 #
# 3 for intitle:"Dokeos has not been installed"
# 578 for "Portal Dokeos"
# Dorks #
dorks [
'intitle:"Dokeos has not been installed"',
'"Portal Dokeos"'
]
# Matches #
matches [
# ul id
{ :certainty=>25, :text=>'<ul id="dokeostabs">' },
# HTML Comment
{ :text=>'<!-- start of #main wrapper for #content and #menu divs -->' },
# link tags
{ :certainty=>75, :text=>'<link href="http://www.dokeos.com/documentation.php" rel="Help" />' },
{ :certainty=>75, :text=>'<link href="http://www.dokeos.com/team.php" rel="Author" />' },
{ :certainty=>75, :text=>'<link href="http://www.dokeos.com" rel="Copyright" />' },
# Meta Generator
{ :text=>'<meta name="Generator" content="Dokeos">' },
# Install Page # Title
{ :certainty=>75, :text=>'<title>Dokeos has not been installed</title>' },
# Install Page # Click to Install
{ :regexp=>/<form action="main\/install\/index\.php" method="get"><button class="save" type="submit"[^>]+value=" Click to INSTALL (Dokeos|DOKEOS)[\s]+ " >Click to INSTALL (Dokeos|DOKEOS)[\s]*<\/button><\/form><br \/>/, :string=>"Install Page" },
# Year Detection # Copyright
{ :string=>/<div class="copyright">[^<]+<a href="http:\/\/www\.dokeos\.com" target="_blank">[\s]*Dokeos [\d\.]*<\/a> © (20[\d]{2})[\s]*<\/div>/ },
# Version Detection # Copyright
{ :version=>/<div class="copyright">[^<]+<a href="http:\/\/www\.dokeos\.com" target="_blank">[\s]*Dokeos ([\d\.]+)<\/a>/ },
# Version Detection # Install Page # Title
{ :version=>/<title>— Dokeos Installation — Version ([\d\.]+)<\/title>/, :string=>"Install Page" },
]
end
|