mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
39 lines
1.2 KiB
Ruby
39 lines
1.2 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 "Turbo-Seek"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2010-06-15
|
|
]
|
|
version "0.1"
|
|
description "Turbo Seek enables anyone to build a Search Engine & Directory Portal with the minimum expense and effort."
|
|
website "http://www.focalmedia.net/index_tb.html"
|
|
|
|
|
|
|
|
matches [
|
|
|
|
# http://www.hackersforcharity.org/ghdb/?function=detail&id=567
|
|
# About 7,440 results @ 2010-06-15
|
|
{:name=>'GHDB: filetype:cgi inurl:tseekdir.cgi',
|
|
:certainty=>75,
|
|
:ghdb=>'filetype:cgi inurl:tseekdir.cgi'
|
|
},
|
|
|
|
# unique javascript - no false positives on google - code from tsbuild.pm
|
|
# var myspecs = "'menubar=0,status=1,resizable=1,location=0,titlebar=1,toolbar=1,scrollbars=1,width=" + mywidth + ",height=" + myheight + "'";
|
|
{:name=>"uniquie javascript",
|
|
:certainty=>100,
|
|
:text=>' var myspecs = "\'menubar=0,status=1,resizable=1,location=0,titlebar=1,toolbar=1,scrollbars=1,width=" + mywidth + ",height=" + myheight + "\'";'
|
|
},
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|