mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
45 lines
1.1 KiB
Ruby
45 lines
1.1 KiB
Ruby
##
|
|
# 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.
|
|
# https://morningstarsecurity.com/research/whatweb
|
|
##
|
|
Plugin.define do
|
|
name "Cerberus-Helpdesk"
|
|
authors [
|
|
"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
|
|
|