Sha256: af695287939d3674831727a9de54f0239dc2fa28842e0e050793f73e4ac61753
Contents?: true
Size: 1 KB
Versions: 6
Compression:
Stored size: 1 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 "X-UA-Compatible" do @author = "Brendan Coles <bcoles@gmail.com>" # 2011-01-08 @version = "0.1" @description = "This plugin retrieves the X-UA-Compatible value from the HTTP header and meta http-equiv tag. - More Info: http://msdn.microsoft.com/en-us/library/cc817574.aspx" # About 30930 ShodanHQ results for X-UA-Compatible @ 2011-01-08 # Matches # @matches = [ # meta http-equiv tag { string: /<meta http-equiv[\s]*=[^>]*X-UA-Compatible[^>]*[\s]+content[\s]*=[\s]*['|"]?([a-z0-9=]+)[^>]*>/i }, ] # Passive # def passive(target) m = [] # X-UA-Compatible HTTP Header m << { string: target.headers["x-ua-compatible"].to_s } unless target.headers["x-ua-compatible"].nil? m end end
Version data entries
6 entries across 6 versions & 1 rubygems