Sha256: 431cf10e288669f9a0960abfb5a78e20e1d1d270ea156a96ca8573bbe3ffa1e8
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 "Nintendo-Wii" do @author = "Brendan Coles <bcoles@gmail.com>" # 2011-08-02 @version = "0.1" @description = "Nintendo Wii video game console" @website = "http://www.nintendo.com/" # More Info # Wi-Fi Network Adapter (for Wii or DS) # # http://wifi.nintendo.co.jp/wap/index.html # http://en.wikipedia.org/wiki/Nintendo_Wi-Fi_USB_Connector # http://store.nintendo.com/webapp/wcs/stores/servlet/ProductDisplay?lastAction=setCurr&jspStoreDir=NOASTORE&languageId=-1&catalogId=10001&categoryId=11157&productId=95704¤cy=USD&storeId=10001&ddkey=SetCurrencyPreference # ShodanHQ results as at 2011-08-02 # # 33 for "Nintendo Wi-Fi Network Adapter" # 4 for Nintendo Wii # Passive # def passive(target) m = [] # HTTP Server Header if /^Nintendo Wii( \(http\))?$/.match?(target.headers["server"]) m << { name: "HTTP Server Header" } elsif target.headers["server"] =~ /^Nintendo Wii ([^\(]+)$/ m << { string: $1.to_s } end # WWW-Authenticate Header m << { certainty: 75, name: "www-authenticate" } if target.headers["www-authenticate"] =~ /Basic realm="Nintendo Wi-Fi Network Adapter"/ # Return passive matches m end end
Version data entries
6 entries across 6 versions & 1 rubygems