mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
69 lines
1.7 KiB
Ruby
69 lines
1.7 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://www.morningstarsecurity.com/research/whatweb
|
|
##
|
|
Plugin.define do
|
|
name "ClientExec"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2011-05-23
|
|
]
|
|
version "0.1"
|
|
description "ClientExec is a comprehensive and flexible web hosting billing solution designed for customer billing, helpdesk, e-mail and (team) management and communication. ClientExec was conceived and built with small to mid-sized hosting companies in mind."
|
|
website "http://www.clientexec.com/"
|
|
|
|
# ShodanHQ results as at 2011-05-23 #
|
|
# 74 for CLIENTEXEC
|
|
# 33 for fuse=newedge
|
|
|
|
# Google results as at 2011-05-23 #
|
|
# 254 for intitle:"Support Center - Powered By ClientExec"
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'intitle:"Support Center - Powered By ClientExec"'
|
|
]
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
# HTML Comment
|
|
{ :text=>'<!-- These should not have debug at the end for production -->' },
|
|
|
|
# Default Title
|
|
{ :text=>'<title>Support Center - Powered By ClientExec</title>' },
|
|
|
|
# Login Form HTML
|
|
{ :text=>'<form action="index.php?fuse=admin&action=Login&public=1" method="post"' },
|
|
|
|
# Theme Detection
|
|
{ :module=>/<img class="logo" src="templates\/([^\/]+)\/images\/public\/caption_photo\.jpg" alt="clientexec" \/>/ },
|
|
|
|
]
|
|
|
|
# Passive #
|
|
passive do
|
|
m=[]
|
|
|
|
# CLIENTEXEC Cookie
|
|
if @headers["set-cookie"] =~ /CLIENTEXEC=[a-z\d]{26,32}; path=\//
|
|
|
|
m << { :name=>"CLIENTEXEC Cookie" }
|
|
|
|
# Unauthorized Version Installed
|
|
if @body =~ /^Cannot access EnterLicense view directly$/
|
|
m << { :string=>"Unauthorized Version" }
|
|
end
|
|
|
|
end
|
|
|
|
# Return passive matches
|
|
m
|
|
end
|
|
|
|
end
|
|
|