mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
37 lines
992 B
Ruby
37 lines
992 B
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://www.morningstarsecurity.com/research/whatweb
|
|
##
|
|
Plugin.define do
|
|
name "MSGS"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2011-05-20
|
|
"Andrew Horton", # v0.2 # 2019-07-10 # Removed Homepage: from the website
|
|
]
|
|
version "0.2"
|
|
description "Mercury Satellite Ground Station is a software system for commanding and controlling a satellite ground station. It's goal is to help enable ubiquitous access to satellite resources via the Internet."
|
|
website "http://mgsn.sourceforge.net/"
|
|
|
|
# Google results as at 2011-05-20 #
|
|
# 2 for intitle:"Mercury Satellite Ground Station"
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'intitle:"Mercury Satellite Ground Station"'
|
|
]
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
# Version Detection # Default Title
|
|
{ :version=>/<title> Mercury Satellite Ground Station: Version ([\d\.]+)<\/title>/ },
|
|
|
|
]
|
|
|
|
end
|
|
|