Sha256: c4dfd0e31d62577ec251eb54286a140500649b91676a6ad80c8f8a3f031899cd
Contents?: true
Size: 1.32 KB
Versions: 6
Compression:
Stored size: 1.32 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 ## WhatWeb::Plugin.define "OpenLabyrinth" do @author = "Brendan Coles <bcoles@gmail.com>" # 2011-08-03 @version = "0.1" @description = "OpenLabyrinth is a web application for authoring and delivering virtual patient and other decision path and maze-like activities. It is written in ASP/VBScript and requires an ODBC SQL database." @website = "http://sourceforge.net/projects/openlabyrinth/" # Google results as at 2011-08-03 # # 12 for inurl:mstartnode.asp?mapid= # Dorks # @dorks = [ 'inurl:mstartnode.asp?mapid=' ] # Matches # @matches = [ # Logo HTML { text: '/images/openlabyrinth-logo.jpg" alt="Labyrinth Identity" border="0" width="150" height="150"></a>' }, ] # Passive # def passive(target) m = [] # Form if /^<form method="post" action="logpass\.asp">$/.match?(target.body) m << { certainty: 25, name: "Form Tag" } # Version Detection if target.body =~ /<h5><font color="#000000">v([^\s^<]+)</ m << { version: $1.to_s } end end # Return passive matches m end end
Version data entries
6 entries across 6 versions & 1 rubygems