mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
58 lines
1.5 KiB
Ruby
58 lines
1.5 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 "ClipBucket"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2012-01-18
|
|
]
|
|
version "0.1"
|
|
description "ClipBucket is an OpenSource Multimedia Management Script"
|
|
website "http://clip-bucket.com"
|
|
|
|
# ShodanHQ results as at 2012-01-18 #
|
|
# 193 for pageredir
|
|
|
|
# Google results as at 2012-01-18 #
|
|
# 370 for "Forged by ClipBucket"
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'"Forged by ClipBucket"'
|
|
]
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
# Meta Copyright
|
|
{ :string=>/<meta name="copyright" content="ClipBucket - PHPBucket ClipBucket 2007 - (20[\d]{2})" \/>/ },
|
|
|
|
# Meta Author
|
|
{ :text=>'<meta name="author" content="Arslan Hassan - http://clip-bucket.com/arslan-hassan" />' },
|
|
|
|
# HTML Comments # Version Detection
|
|
{ :text=>'<!-- ClipBucket v2 -->', :version=>"2.x" },
|
|
{ :version=>/<!-- ClipBucket version ([\d\.]+) -->/ },
|
|
|
|
# HTML Comments
|
|
{ :text=>'<!-- Setting Template Variables -->' },
|
|
{ :text=>'<!-- Forged by ClipBucket -->' },
|
|
{ :text=>'<!-- Forged by ClipBucket ends -->' },
|
|
{ :text=>'<!-- Please do not remove this unless you have license -->' },
|
|
|
|
# Forged by ClipBucket
|
|
{ :text=>'Forged by <a href="http://clip-bucket.com/">ClipBucket</a>' },
|
|
|
|
# Set-Cookie # pageredir
|
|
{ :search=>"headers[set-cookie]", :regexp=>/pageredir=https?%3A%2F%2F/, :certainty=>25 },
|
|
|
|
]
|
|
|
|
end
|
|
|