mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
38 lines
1001 B
Ruby
38 lines
1001 B
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 "Censura"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2010-08-01
|
|
# v0.2 # 2011-01-09 # Updated version detection.
|
|
]
|
|
version "0.2"
|
|
description "Censura - the flexible, robust, reviews and ratings application."
|
|
website "http://www.censura.info/"
|
|
|
|
# 70 results for "Powered by: Censura" @ 2010-08-01
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'"Powered by: Censura"'
|
|
]
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
# Version Detection # Powered by footer
|
|
# The "brand removal" option is a one-off fee per license. There is a link within your client area to allow you to purchase a "brand removal" option.
|
|
# http://www.censura.info/support/kb/article/000001
|
|
{ :version=>/Powered by: <a[^>]* href="http:\/\/www.censura.info">Censura<\/a> version ([\d\.]+)/ },
|
|
|
|
]
|
|
|
|
end
|
|
|