1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
##
# This file is part of WhatWeb and may be subject to
# redistribution and commercial restrictions. Please see the WhatWeb
# web site for more information on licensing and terms of use.
# http://www.morningstarsecurity.com/research/whatweb
##
Plugin.define "iHTML" do
author "Brendan Coles <bcoles@gmail.com>" # 2011-06-04
version "0.1"
description "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. - Homepage: http://www.ihtml.com/"
# ShodanHQ results as at 2011-06-04 #
# 593 for iHTML
# Examples #
examples %w|
217.25.65.44
205.210.230.181
195.10.246.83
205.210.228.158
205.210.230.170
205.210.230.118
205.210.228.33
|
# Passive #
def passive
m=[]
# Version Detection # HTTP Server Header
m << { :version=>@headers["server"].scan(/ \(Using iHTML\/([^\)^\s]+)\)/) } if @headers["server"] =~ / \(Using iHTML\/([^\)^\s]+)\)/
# Version Detection # X-Powered-By Header
m << { :version=>@headers["x-powered-by"].scan(/^iHTML\/([^\s]+)$/) } if @headers["x-powered-by"] =~ /^iHTML\/([^\s]+)$/
# Return passive matches
m
end
end
|