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 "NetTalk-WebServer" do
11author "Brendan Coles <bcoles@gmail.com>" # 2011-05-23
12version "0.2"
13description "Webserver using NetTalk. NetTalk is the de-facto standard tool for TCP/IP networking in Clarion."
14website "http://www.capesoft.com/docs/NetTalk/nettalk.htm"
15# More info: http://www.capesoft.com/docs/nettalk/nettalkwebbasic.htm
16
17# ShodanHQ results as at 2011-05-23 #
18# 146 for NetTalk-WebServer
19
20matches [
21	# HTTP Server Header
22	{ :regexp=>/^NetTalk-WebServer/, :search=>"headers[server]" },
23
24	# Version Detection # HTTP Server Header
25	{ :version=>/^NetTalk-WebServer\/([\d\.]+)$/, :search=>"headers[server]" },
26
27]
28
29end
30
31