Sha256: cbb55701d203f6e66d0f2dfe78b6d0955f3e2fc63afde8ae1ac86828531b1943
Contents?: true
Size: 1.46 KB
Versions: 6
Compression:
Stored size: 1.46 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 "Sony-LocationFree-TV" do @author = "Brendan Coles <bcoles@gmail.com>" # 2011-08-02 @version = "0.1" @description = "The LocationFree TV is an advanced, portable TV that allows you to watch TV or video, browse the Web, check your e-mail and manage your digital photos whether you are at home or not. When you are at home, you can carry the Monitor around the house and use it anywhere within its wireless transmission range. When you are away from home, you can watch the same TV programs and videos by accessing your Base Station via the Internet. By installing LocationFree Player on your computer, and registering the computer with the Base Station, you can use the LocationFree NetAV function on your computer as well." @website = "http://store.sony.com/p/LF-X1/en/p/LFX1" # Manual: http://www.docs.sony.com/release/LFX11_man.pdf # ShodanHQ results as at 2011-08-02 # # 374 for SONY LocationFreeTV # Passive # def passive(target) m = [] # HTTP Server Header if target.headers["server"] =~ /^SONY LocationFreeTV\/([^\s]+) HTTPD\/([^\s]+)$/ m << { version: $2.to_s } m << { model: $1.to_s } end # Return passive matches m end end
Version data entries
6 entries across 6 versions & 1 rubygems