1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
##
# 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.
# https://morningstarsecurity.com/research/whatweb
##
Plugin.define do
name "X-Cache"
authors [
"Brendan Coles <bcoles@gmail.com>", # 2011-01-30
]
version "0.1"
description "This plugin identifies the X-Cache HTTP header and extracts the value."
# ShodanHQ results as at 2011-01-30 #
# 3,883 for x-cache-Lookup -squid
# 59,766 for x-cache
# 95,263 for x-cache-Lookup
# Passive #
passive do
m=[]
# X-Cache
if @headers["x-cache"] =~ /(MISS|HIT|NONE) from ([^\r^\n]{1,128})/
# @headers["x-cache"].each do |x_cache|
m << { :string=>@headers["x-cache"].to_s.scan(/ from ([^\r^\n]{1,128})/).flatten }
# end
end
# X-Cache-Lookup
if @headers["x-cache-lookup"] =~ /(MISS|HIT|NONE) from ([^\r^\n]{1,128})/
# @headers["x-cache-lookup"].each do |x_cache|
m << { :string=>@headers["x-cache-lookup"].scan(/ from ([^\r^\n]{1,128})/).flatten }
# end
end
# Return passive matches
m
end
end
|