1##
2# This file is part of WhatWeb and may be subject to
3# redistribution and commercial restrictions. Please see the WhatWeb
4# web site for more information on licensing and terms of use.
5# http://www.morningstarsecurity.com/research/whatweb
6##
7# Version 0.2 # 2016-04-23 # Andrew Horton
8# Moved patterns from passive function to matches[]
9##
10Plugin.define "ProScan" do
11author "Brendan Coles <bcoles@gmail.com>" # 2011-05-13
12version "0.2"
13description "Streams audio"
14website "http://www.proscan.org/"
15
16# ShodanHQ results as at 2011-05-13 #
17# 12 for ProScan
18
19matches [
20	# HTTP Server Header
21	{ :regexp=>/^ProScan/, :search=>"headers[server]" },
22
23	# Version Detection # HTTP Server Header
24	{ :version=>/^ProScan ([^\s]+)$/, :search=>"headers[server]" },
25
26	# icy-notice2 Header
27	{ :name=>"icy-notice2 header", :regexp=>/^ProScan/, :search=>"headers[icy-notice2]" },
28
29]
30
31end
32
33