Sha256: ce518185e71ebcc583a1325d30c46a71dd9eb8c83c0731896248daeb663196a0
Contents?: true
Size: 841 Bytes
Versions: 6
Compression:
Stored size: 841 Bytes
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 # 2011-02-16 # # Removed redundant target.headers["Via"] match ## WhatWeb::Plugin.define "Via-Proxy" do @author = "Brendan Coles <bcoles@gmail.com>" # 2010-10-14 @version = "0.2" @description = "This plugin extracts the proxy server details from the Via param of the HTTP header." # ShodanHQ results as at 2010-10-14 # # 131,646 for "Via: " # Passive # def passive(target) m = [] # Via HTTP header m << { string: target.headers["via"].to_s } unless target.headers["via"].nil? # Return passive matches m end end
Version data entries
6 entries across 6 versions & 1 rubygems