mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
54 lines
1.8 KiB
Ruby
54 lines
1.8 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 "BrowserCMS"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2010-10-18
|
|
]
|
|
version "0.1"
|
|
description "The newly redesigned BrowserCMS 2.0 is an easy, affordable way to control, edit, and organize website content."
|
|
website "http://www.browsercms.com/"
|
|
|
|
# Google results as at 2010-10-18 #
|
|
# 96 for "powered by BrowserCMS"
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'"powered by BrowserCMS"'
|
|
]
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
# Default HTML comment
|
|
{ :text=>'<!--User is member of the following groups: -->' },
|
|
|
|
# 2.x # Powered by text
|
|
{ :text=>'<li class="bmcms"><a href="http://www.browsercms.com/index.ww" title="BrowserCMS 2.0" target="_blank"><span>Powered by BrowserCMS 2.0</span></a></li>', :version=>"2.x" },
|
|
|
|
# Powered by text
|
|
{ :regexp=>/Powered by <a href="http:\/\/www.browsercms.com[\/]*"[^>]+>BrowserCMS<\/a>/i },
|
|
{ :regexp=>/<a href="http:\/\/www.browsercms.com[\/]*"[^>]+title="Powered by BrowserCMS"[^>]+/ },
|
|
|
|
# Powered by logo default HTML
|
|
{ :regexp=>/<a href="http:\/\/www.browsercms.com[^>]+><img[^>]*src="\/site\/images[^>]+ onmouseover="this.src='\/site\/images[^>]+onmouseout="this.src='\/site\/images[^>]+alt="Powered by BrowserCMS"[^>]*><\/a>/i },
|
|
|
|
# Login page
|
|
{ :text=>'<form method="POST" action="/portlets/login/do-login.jsp" name="security">' },
|
|
{ :regexp=>/<input type="hidden" name="success_uri" value="[^>]*\/page.ww\?name=[^>]*\§ion=[^>]*"\/>/ },
|
|
{ :regexp=>/<input type="hidden" name="failure_uri" value="[^>]*\/page.ww\?name=[^>]*\§ion=[^>]*"\/>/ },
|
|
|
|
# Version detection # Meta generator
|
|
{ :version=>/<meta name="generator" content="BrowserCMS ([^\"]+)"/ },
|
|
|
|
]
|
|
|
|
end
|
|
|