Sha256: 924d0966696376227b79a2237f8e64c896f66c9b1ed3ea0f2b73b6558ab28318
Contents?: true
Size: 1.54 KB
Versions: 6
Compression:
Stored size: 1.54 KB
Contents
# frozen_string_literal: true ## # 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. # http://www.morningstarsecurity.com/research/whatweb ## # Version 0.2 # 2011-07-30 # Brendan Coles <bcoles@gmail.com> # Added examples URLs, added passive match and added google dork ## # Version 0.3 Andrew Horton. Replaced aggressive function with matches WhatWeb::Plugin.define "MapServer" do @author = "Aung Khant, http://yehg.net" @version = "0.3" @description = "Detect MapServer CGI application (http://www.mapserver.org/)" # Google results as at 2011-07-30 # # 210 for inurl:cgi-bin/mapserv/?map # 133 for inurl:"cgi-bin/mapserv/?map" # 80 for inurl:"cgi-bin/mapserv.exe/?map" # Dorks # @dorks = [ 'inurl:cgi-bin/mapserv/?map' ] @matches = [ { name: "Version", url: "?map=*", version: /<\/HEAD>\s*<!\-\- MapServer version (.*?)\s/ }, { name: "Invalid Map Parameter", url: "/cgi-bin/mapserv/?map=*", regexp: /<BODY BGCOLOR="#FFFFFF">\s*msLoadMap(): Regular expression error/ }, { name: "Invalid Map Parameter", url: "/cgi-bin/mapserv/?map=*", regexp: /<HEAD><TITLE>MapServer Message<\/TITLE><\/HEAD>\s*<!\-\- MapServer version/ } ] # Passive # def passive(target) m = [] # Error Message # Empty QUERY_STRING if target.body == "No query information to decode. QUERY_STRING is set, but empty.\n" m << { name: "Error Message" } end # Return passive matches m end end
Version data entries
6 entries across 6 versions & 1 rubygems