Sha256: c0327ec0bc14d9f843ddc43724a7e60d87cd9a43366743d3b29bc60bbb8d8dbd
Contents?: true
Size: 1.34 KB
Versions: 6
Compression:
Stored size: 1.34 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 "W3-Total-Cache" do @author = "Brendan Coles <bcoles@gmail.com>" # 2011-02-19 @version = "0.1" @description = "The fastest and most complete WordPress performance optimization plugin. Trusted by many popular blogs - W3 Total Cache improves the user experience of your blog by improving your server performance, caching every aspect of your site, reducing the download time of your theme and providing transparent content delivery network (CDN) integration." @website = "http://www.w3-edge.com/wordpress-plugins/w3-total-cache/" # ShodanHQ results as at 2011-02-19 # # 3,086 for W3 Total Cache # Matches # @matches = [ # Default HTML Comment { text: '<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/' }, ] # Passive # def passive(target) m = [] # Version detection # X-Powered-By m << { version: target.headers['x-powered-by'].scan(/W3 Total Cache\/([\d\.]+)/) } if target.headers['x-powered-by'] =~ /W3 Total Cache\/([\d\.]+)/ # Return passive matches m end end
Version data entries
6 entries across 6 versions & 1 rubygems