mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
39 lines
1.0 KiB
Ruby
39 lines
1.0 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 "bSpeak"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2010-08-27
|
|
# v0.2 # 2011-01-08 # Updated version detection.
|
|
]
|
|
version "0.2"
|
|
description "bSpeak is 26th Avenue's threaded message board application. It is full-featured and fast, allowing you to create a community, provide online support, or provide announcements for your website."
|
|
website "http://www.bspeak.com/"
|
|
|
|
# 23 results for "powered by bSpeak" @ 2010-08-27
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'"powered by bSpeak"'
|
|
]
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
# Default title
|
|
{ :text=>' - powered by bSpeak</TITLE>' },
|
|
|
|
# Version Detection # Powered by text
|
|
{ :version=>/<br><div align="center"><span class="tinytext">Powered by <\/span><a href="http:\/\/www.bspeak.com" class="tinylink" target="bspeak_window">bSpeak ([\d\.]+)<\/a><\/div>/ },
|
|
|
|
]
|
|
|
|
end
|
|
|