Sha256: baf81458a74d64cf5e22c754f7c3be826ed6264783fd162ffae449b3100939ce
Contents?: true
Size: 1.46 KB
Versions: 6
Compression:
Stored size: 1.46 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 # removed :probability & :name ## WhatWeb::Plugin.define "MailSiteExpress" do @author = "Andrew Horton" @version = "0.2" @description = "Webmail in ASP. Versions < 6.1.2 insecure http://marc.info/?l=bugtraq&m=113053680631151&w=2 -" @website = "http://www.mailsite.com/products/express-webmail-server.asp" # <!-- This software is copyright 1999, 2000 Rockliffe systems, Inc. --> # <!-- default.asp ver. 4.5.6 --> # <title>MailSite Express</title> # <font face="arial" size="1">MailSite Express <br> version 4.5.6</font> # version 6 # <b>MailSite <em>Express</em> Login</b> # onSubmit="OpenExpress(document.ExpressLogin)" # 24 for intitle:"MailSite Express" "MailSite Express Login" # Dorks # @dorks = [ 'intitle:"MailSite Express" "MailSite Express Login"' ] # Matches # @matches = [ { text: '<title>MailSite Express</title>' }, { regexp: /<font face="arial" size="1">MailSite Express <br> version [0-9\.]+<\/font>/ }, { certainty: 50, regexp: /<!-- This software is copyright [0-9 ,\.]+ Rockliffe systems, Inc. -->/ }, { text: '<b>MailSite <em>Express</em> Login</b>' }, { text: 'onSubmit="OpenExpress(document.ExpressLogin)"' } ] end
Version data entries
6 entries across 6 versions & 1 rubygems