Sha256: 208687e0385656421415cb1fea579cf2806f006b5b6d373f364d14e95e6a1d51
Contents?: true
Size: 1.18 KB
Versions: 6
Compression:
Stored size: 1.18 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 "Pogoplug" do @author = "Brendan Coles <bcoles@gmail.com>" # 2011-08-05 @version = "0.1" @description = "Pogoplug is a device that connects your USB drive to the Internet so you can easily share and access your files from anywhere. To set it up, all that is needed is to plug it into a wall socket, connect the device to your router using an etherent cable and plug a USB drive into the other side of the pogoplug. No network setup is required." @website = "http://www.pogoplug.com/products.html" # Default SSH login credentials # # root:ceadmin # ShodanHQ results as at 2011-08-05 # # 193 for HBHTTP # Passive # def passive(target) m = [] # Version Detection # HTTP Server Header if target.headers["server"] =~ /^HBHTTP ([A-Z\d]+) - ([\d\.]+) - Linux$/ m << { string: $1.to_s } m << { version: $2.to_s } end # Return passive matches m end end
Version data entries
6 entries across 6 versions & 1 rubygems