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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
##
# 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.
# https://morningstarsecurity.com/research/whatweb
##
Plugin.define do
name "iGuard-Security-System"
authors [
"Brendan Coles <bcoles@gmail.com>", # 2010-07-18
# v0.2 # 2011-02-19 # Updated version detection.
# v0.3 # 2011-08-05 # Updated http server header match. Added www-authenticate match and google dork.
]
version "0.3"
description "Lucky Technology iGuard security system, based on smart card and biometric fingerprint technology."
website "http://www.lucky-tech.com/p1.php"
# ShodanHQ results as at 2011-08-05 #
# 280 for iGuard Embedded Web Server
# Google results as at 2011-08-05 #
# 6 for "iGuard Security System" "Lucky Technology Ltd.. All rights reserved." "US Patent No.: 6,643,779"
# Dorks #
dorks [
'"iGuard Security System" "Lucky Technology Ltd.. All rights reserved." "US Patent No.: 6,643,779"'
]
# Matches #
matches [
# Default Title
{ :text=>' <TITLE>iGuard Fingerprint Security System</TITLE>' },
# Version Detection # Meta Generator
{ :firmware=>/ <meta content="Lucky-Tech iGuard ([\d\.]{1,5})" name="GENERATOR">/ },
# Firmware Detection # /Admins/Content.vtml
{ :url=>"/Admins/Content.vtml", :firmware=>/iGuard Security[^<]+<\/td><\/tr><tr><td>Firmware Version<\/td><td>([^<]+)<\/td>/ },
# Count Users # /Admins/Content.vtml
{ :url=>"/Admins/Content.vtml", :string=>/<tr><td>Registered Automatch<\/td><td>([^<]+)<\/td><\/tr>/ },
]
# Passive #
passive do
m=[]
# HTTP Server Header
if @headers['server'] =~ /^iGuard Embedded Web Server\/([^\s]{1,15}) \(([^\s^\)]+)\) (SN:[^\s]+)$/
m << { :firmware=>"#{$1}" }
m << { :model =>"#{$2}" }
m << { :string =>"#{$3}" }
end
# WWW-Authenticate: Basic realm="iGuard System"
m << { :name=>"WWW-Authenticate Header" } if @headers["www-authenticate"] =~ /Basic realm="iGuard System"/
# Return passive matches
m
end
end
|