mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
43 lines
1.1 KiB
Ruby
43 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 "Hot-Banana"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2011-03-03
|
|
]
|
|
version "0.1"
|
|
description "Hot Banana is an award-winning, easy-to-use Web Content Management System (Web CMS) that helps marketers build and manage SEO-friendly Web sites that can be automated and optimized for maximum lead generation and conversion performance."
|
|
website "http://www.hotbanana.ca/"
|
|
|
|
# Google results as at 2011-03-03 #
|
|
# 42 for "powered by hot banana"
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'"powered by hot banana"'
|
|
]
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
# GHDB Match
|
|
{ :certainty=>75, :ghdb=>'"Powered by Hot Banana"' },
|
|
|
|
# Default JavaScript
|
|
{ :text=>' var hbac_regFileTypes = new RegExp("\s*.(pdf|swf|gif|jpg|jpeg|jpe|xls|ppt|doc|mp3|txt|wav)");' },
|
|
|
|
# Default Logo HTML
|
|
{ :text=>'<div align="right"><img src="Images/hblogo.gif" width="49" height="28" border="0" alt="Powered By Hot Banana" /></div>' },
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|