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
|
##
# 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 "Cerberus-Helpdesk" do
author "Brendan Coles <bcoles@gmail.com>" # 2012-10-22
version "0.1"
description "Cerberus Helpdesk - fast and flexible web-based platform for business collaboration and automation"
website "http://www.cerberusweb.com/"
# Google results as at 2012-10-06 #
# 16 for inurl:CerberusPublicGUI
# ShodanHQ results as at 2012-10-06 #
# 42 for CerberusPublicGUI
# Dorks #
dorks [
'inurl:CerberusPublicGUI'
]
# Matches #
matches [
# CerberusPublicGUI Cookie
{ :search=>"headers[set-cookie]", :regexp=>/CerberusPublicGUI=[a-f\d]{32};/ },
# HTML Comment
{ :text=>'<!-- If you have your own stylesheet for HTML elements, you can remove the cerberus-html.css link -->' },
# articles link
{ :text=>'<td width="519" class="kb_most_viewed_articles">Most Viewed Knowledgebase Articles</td>' },
]
end
|