mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
42 lines
1.3 KiB
Ruby
42 lines
1.3 KiB
Ruby
##
|
|
# 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 "GpsGate-Server"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2011-06-20
|
|
]
|
|
version "0.1"
|
|
description "GpsGate Server is a platform for web based GPS tracking of vehicles, valuable assets and persons. The modular GpsGate Server platform also allows you to configure, extend and customize applications to your needs."
|
|
website "http://gpsgate.com/products/gpsgate_server"
|
|
|
|
# Google results as at 2011-06-20 #
|
|
# 37 for "GpsGate Server - Login" intitle:"GpsGate Server - Login"
|
|
|
|
# ShodanHQ results as at 2011-06-20 #
|
|
# 2 for gpsgateserver
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'"GpsGate Server - Login" intitle:"GpsGate Server - Login"'
|
|
]
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
# Password input # HTML is static between languages unlike the username field
|
|
{ :text=>'<input name="LoginControl$TextBoxPassword" type="password" id="LoginControl_TextBoxPassword" tabindex="2" class="form" onfocus="document.getElementById(\'LoginControl_TextBoxPassword\').select()" value="password"' },
|
|
|
|
# Title
|
|
{ :regexp=>/<head><title>\r?\n\tGpsGate Server - Login\r?\n<\/title><\/head>/ },
|
|
|
|
]
|
|
|
|
end
|
|
|