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 47 48 49 50 51 52 53
|
##
# 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.5 # 2011-05-14 # Brendan Coles <bcoles@gmail.com>
# Changed @cookies to @headers["set-cookie"] to support recursive mode
##
# Version 0.4 # 2011-04-08 # Brendan Coles <bcoles@gmail.com>
# Added username and localfile path detection for cookies containing public_html
##
# Version 0.3 # 2011-01-30 # Brendan Coles <bcoles@gmail.com>
# Fixed regex bug # Cookies were always split by "=" even when it wasn't present
##
# Version 0.2
# removed :certainty=>100
##
Plugin.define "Cookies" do
author "Andrew Horton"
version "0.5"
description "Display the names of cookies in the HTTP headers. The values are not returned to save on space."
# ShodanHQ results as at 2011-04-08 #
# 2,527,334 for set-cookie
# 37 for set-cookie path home public_html
# 17 for set-cookie path=/home/ /public_html
# Passive #
def passive
m=[]
unless @headers["set-cookie"].nil? or @headers["set-cookie"].empty?
# Extract cookie names
@headers["set-cookie"].split("\n").each do |cookie|
m << { :string=>cookie.split("=")[0] } if cookie =~ /=/
end
# Detect local file paths containing public_html
if @headers["set-cookie"].to_s =~ /path=\/home[\d]*\/([^\/]+)\/public_html\//
m << { :account=>@headers["set-cookie"].to_s.scan(/path=\/home[\d]*\/([^\/]+)\/public_html\//).flatten }
m << { :filepath=>@headers["set-cookie"].to_s.scan(/path=(\/home[\d]*\/[^\/]+\/public_html\/)/).flatten }
end
end
# Return passive match
m
end
end
|