"Fossies" - the Fresh Open Source Software Archive 
Member "WhatWeb-0.5.5/plugins/activehtml.rb" (15 Jan 2021, 900 Bytes) of package /linux/www/WhatWeb-0.5.5.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Ruby source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
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 # https://www.morningstarsecurity.com/research/whatweb
6 ##
7 Plugin.define do
8 name "ActiveHTML"
9 authors [
10 "Brendan Coles <bcoles@gmail.com>", # 2011-08-06
11 "Andrew Horton", # v0.2 # 2016-04-18 # Replaced passive function with match.
12 ]
13 version "0.2"
14 description "seliSoft ActiveHTML provides Active-Server-Pages (ASP) to nearly every web server supporting CGI."
15 website "http://www.selisoft.com/en/ahtml/"
16
17 # ShodanHQ results as at 2011-08-06 #
18 # 65 for ActiveHTML
19
20 matches [
21 # Version Detection # HTTP Server Header
22 { :version=>/ActiveHTML\/([^\s]+)/, :search=>"headers[server]" },
23
24 # Version Detection # X-Powered-By
25 { :version=>/seliSoft ActiveHTML\/([^\s]+)/, :search=>"headers[x-powered-by]" }
26 ]
27
28 end
29