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 "uClinux-httpd" do
11author "Brendan Coles <bcoles@gmail.com>" # 2011-04-08
12version "0.2"
13description "The Linux/Microcontroller project (uClinux) is a port of Linux to systems without a Memory Management Unit (MMU). This plugin identifies the version of the uClinux HTTP server"
14website "http://www.uclinux.org/"
15
16# ShodanHQ results as at 2011-04-08 #
17# 6,633 for uClinux-httpd
18
19matches [
20
21	# HTTP Server Header
22	{ :os=>"uClinux", :version=>/^uClinux/, :search=>"headers[server]" },
23
24	# Version Detection # HTTP Server Header
25	{ :os=>"uClinux", :version=>/^uClinux-httpd ([\d\.]+)$/, :search=>"headers[server]" },
26
27]
28
29end
30
31