Sha256: b3d919c0f18b13b4febd9a32bf917b5f85032f35f6f63332d55df624eb1813c8
Contents?: true
Size: 1.45 KB
Versions: 6
Compression:
Stored size: 1.45 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 "AirOS" do @author = "Brendan Coles <bcoles@gmail.com>" # 2010-10-30 @version = "0.1" @description = "AirOS is an intuitive, versatile, highly developed Ubiquiti firmware technology that resides on Ubiquiti Station products. It is exceptionally intuitive and was designed to require no training to operate. Behind the user interface is a powerful firmware architecture which enables hi-performance outdoor multipoint networking. " @website = "http://www.ubnt.com/airos" # ShodanHQ results as at 2010-10-30 # # 8,411 for "Set-Cookie:" "AIROS_SESSIONID" Path= Version= # 8,411 for "cookiechecker uri=" @matches = [ # Login page { text: "cache_images(['main_top.png', 'main.png', 'link.png', 'net.png', '4dv.png', 'srv.png', 'system.png', 'border.gif', 'spectr.gif']);" }, ] # Passive # HTTP Header def passive(target) m = [] # Cookie m << { name: "AIROS_SESSIONID Cookie" } if target.headers["set-cookie"] =~ /AIROS_SESSIONID=[a-z0-9]{32}; Path=\/; Version=([\d\.]+)/ # Location: /cookiechecker?uri=/ m << { name: "Location HTTP Header", status: 301 } if target.headers["location"] =~ /\/cookiechecker\?uri=\// m end end
Version data entries
6 entries across 6 versions & 1 rubygems