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 "Tiger-Netcom-Device" do
11author "Brendan Coles <bcoles@gmail.com>" # 2011-07-27
12version "0.2"
13description "Tiger Netcom is a manufacturer and distributor of Voice over Internet Protocol (VoIP) equipment."
14website "http://www.vanaccess.com/"
15
16# ShodanHQ results as at 2011-03-13 #
17# 21 for TigerNetCom -SIP
18# 30 for TigerNetCom
19
20matches [
21
22	# HTTP Server Header
23	{ :regexp=>/^TigerNetCom/, :search=>"headers[server]" },
24
25	# Version Detection # HTTP Server Header
26	{ :version=>/^TigerNetCom\/([^\s]+)$/, :search=>"headers[server]" },
27
28]
29
30end
31
32