"Fossies" - the Fresh Open Source Software Archive 
Member "WhatWeb-0.5.5/plugins/adcon-telemetry-gateway.rb" (15 Jan 2021, 2019 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 "Adcon-Telemetry-Gateway"
9 authors [
10 "Brendan Coles <bcoles@gmail.com>", # 2011-09-23
11 ]
12 version "0.1"
13 description "Adcon Telemetry Gateway base station - Manages large networks of UHF, GSM and GPRS RTUs automatically."
14 website "http://www.adcon.at/"
15
16 # ShodanHQ results as at 2011-09-23 #
17 # 366 for addUPI Server
18
19
20
21 # Matches #
22 matches [
23
24 # Server Version Detection # HTTP Server Header
25 { :search=>"headers[server]", :string=>/^addUPI (Server [^\s]+)/ },
26
27 # SSL Detection # HTTP Server Header
28 { :search=>"headers[server]", :module=>/^addUPI Server [^\s]+ \+(SSL)/ },
29
30
31 ### A840 #
32
33 # /mainpicture.jpeg
34 { :url=>"/mainpicture.jpeg", :md5=>"1e051ae64434f4092dc98774ff592406" },
35
36 # Adcon link # A840
37 { :text=>'<area href="http://www.adcon.at" coords="446,0,565,66" shape="rect" title="Adcon Telemetry" alt="Adcon Telemetry\'s web site">' },
38
39 # Version Detection # A840
40 { :version=>/<font face="Verdana,Arial,Helvetica,Geneva" size="2">Release ([^\s^,]+), ©20[^\s]{2} Adcon Telemetry GmbH; all other trademarks mentioned here are registered with their owners\.<\/font>/ },
41
42 # Model Detection # A840
43 { :model=>/<\/font> <font face="Verdana,Arial,Helvetica,Geneva" size="4"><b>Welcome to the ([^\s]+) Telemetry Gateway!<\/b><\/font>/ },
44
45
46 ### A850 #
47
48 # /images/background.gif
49 { :url=>"/images/background.gif", :md5=>"ba53de81edddae5e112c254d2ab182dc" },
50
51 # configurator link
52 { :text=>'<a name="configurator" href="/cgi-bin/configurator.jnlp">configure your Gateway</a>.' },
53
54 # Version Detection # A850
55 { :version=>/<hr>[\s]+<p>[\s]+Release ([^\s^,]+), © 20[\d]{2} Adcon Telemetry GmbH<br>/ },
56
57 # Model Detection # A850
58 { :model=>/<body onload="onLoadChangeConfiguratorLinks\(\)">[\s]+<h1 class="line1">([^\s]+) Telemetry Gateway<\/h1>/ },
59
60 ]
61
62 end
63