Sha256: 2a09134705caed61edadffd8f5d4da3ac7be6ac2e63550e4ca320e842fb05e2e
Contents?: true
Size: 1.65 KB
Versions: 6
Compression:
Stored size: 1.65 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 # 2016-04-18 # Andrew Horton # Replaced passive function with match for cookies ## WhatWeb::Plugin.define "AfterLogic-WebMail-Pro" do @author = "Brendan Coles <bcoles@gmail.com>" # 2011-05-20 @version = "0.2" @description = "AfterLogic WebMail Pro is a webmail front-end for your existing POP3/IMAP mail server." @website = "http://www.afterlogic.com/mailbee/webmail-pro.asp" # ShodanHQ results as at 2011-05-20 # # 226 for PHPWEBMAILSESSID # Google results as at 2011-05-20 # # 94 for "Powered by AfterLogic WebMail Pro" intitle:"AfterLogic WebMail Pro" # Dorks # @dorks = [ '"Powered by AfterLogic WebMail Pro" intitle:"AfterLogic WebMail Pro"' ] # Matches # @matches = [ # Powered by link { text: 'Powered by <a href="http://www.afterlogic.com/products/webmail-pro" target="_blank">AfterLogic WebMail Pro</a><br />' }, # Version Detection # HTML Comment { version: /AfterLogic Corporation<\/a>\s?<\/div>\s+<\/body>\s<\/html>\s<!--\s?([\d\.]+)\s?-->/ }, { version: /AfterLogic Corporation<\/a>\s?<\/div>\s+<!--\s?([\d\.]+)\s?-->\s<\/body>\s<\/html>/ }, # PHPWEBMAILSESSID cookie { name: "PHPWEBMAILSESSID cookie", search: "headers[set-cookie]", regexp: /^PHPWEBMAILSESSID=[^;]+;/ }, # PHPWMADMINSESSID cookie { name: "PHPWMADMINSESSID cookie", search: "headers[set-cookie]", regexp: /^PHPWEBMAILSESSID=[^;]+;/ }, ] end
Version data entries
6 entries across 6 versions & 1 rubygems