mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
39 lines
1.1 KiB
Ruby
39 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 "CERVIS"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2012-05-02
|
|
]
|
|
version "0.1"
|
|
description "Community Event Registration and Volunteer Information System (CERVIS) is the most complete and customizable web-based volunteer management software available."
|
|
website "https://www.cervistech.com/"
|
|
|
|
# Google results as at 2012-05-02 #
|
|
# 96 for "powered by CERVIS" "Contact Us" inurl:"console.php" inurl:"console_id"
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'"powered by CERVIS" "Contact Us" inurl:"console.php" inurl:"console_id"'
|
|
]
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
# Powered by logo HTML
|
|
{ :text=>'<a href="http://www.cervistech.com" target="_blank"><img src="/acts/images/cervis_logo_sm.png" align=\'absmiddle\' border="0" />Powered by CERVIS</a>' },
|
|
|
|
# Company Name Detection
|
|
{ :string=>/<meta name="title" content="(Volunteer)? Opportunities and Event Registration ([^"]+)" \/>/, :offset=>1 },
|
|
|
|
]
|
|
|
|
end
|
|
|