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##
7Plugin.define "Webduino" do
8author "Brendan Coles <bcoles@gmail.com>" # 2011-08-25
9version "0.1"
10description "Simple and extensible web server library for the Arduino using the Wiznet-based Ethernet shields."
11website "https://code.google.com/p/webduino/"
12
13# ShodanHQ results as at 2011-08-25 #
14# 19 for Webduino
15
16
17
18# Matches #
19matches [
20
21# HTTP Server Header
22{ :search=>"headers[server]", :regexp=>/^Webduino$/ },
23
24# Version Detection # HTTP Server Header
25{ :search=>"headers[server]", :version=>/^Webduino\/([^\s]+)/ },
26
27]
28
29end
30
31