## # 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://www.morningstarsecurity.com/research/whatweb ## Plugin.define do name "PacketShaper" authors [ "Brendan Coles ", # 2011-04-19 ] version "0.1" description "The Blue Coat PacketShaper provides application performance monitoring for an accurate picture of network traffic and ensures business-critical applications have the resources they need to operate effectively" website "http://www.bluecoat.com/products/packetshaper" # Datasheet: http://www.bluecoat.com/doc/7941 # ShodanHQ results as at 2011-04-19 # # 47 for PSlcV310 # Google results as at 2011-04-19 # # 29 for (intitle:"PacketShaper Login")|(intitle:"PacketShaper Customer Login") -intitle # Dorks # dorks [ '(intitle:"PacketShaper Login")|(intitle:"PacketShaper Customer Login") -intitle' ] # Matches # matches [ # Default title { :text=>'PacketShaper Customer Login' }, # JavaScript { :text=>'' }, ] # Passive # passive do m=[] # PScfgstr cookie if @headers['set-cookie'] =~ /^PScfgstr=/ m << { :name=>"PScfgstr cookie" } # Model Detection m << { :model=>@body.scan(/desc \+= 'PacketShaper ([\d\.]+)<\/I><\/FONT>';/) } if @body =~ /desc \+= 'PacketShaper ([\d\.]+)<\/I><\/FONT>';/ end # Return passive matches m end end