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-20 # Andrew Horton
8# Moved patterns from passive function to matches[]
9##
10Plugin.define "iHTML" do
11author "Brendan Coles <bcoles@gmail.com>" # 2011-06-04
12version "0.2"
13description "iHTML is a server side internet/web programming and scripting language in used by thousands of sites worldwide to deliver cost effective dynamic database driven web sites."
14website "http://www.ihtml.com/"
15
16# ShodanHQ results as at 2011-06-04 #
17# 593 for iHTML
18
19matches [
20	# Version Detection # HTTP Server Header
21	{ :version=>/ \(Using iHTML\/([^\)^\s]+)\)/, :search=>"headers[server]" },
22
23	# Version Detection # X-Powered-By Header
24	{ :version=>/^iHTML\/([^\s]+)$/, :search=>"headers[x-powered-by]" },
25
26]
27
28end
29
30