1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
##
# 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
##
Plugin.define "Axel-Device" do
author "Brendan Coles <bcoles@gmail.com>" # 2011-05-20
version "0.1"
description "Axel design and manufacture innovative TCP/IP based Thin Client Terminals and Office Servers for Windows, Unix/Linux and AS/400 environments. Axel products are unique in having no embedded operating system."
website "http://www.axel.com/"
# ShodanHQ results as at 2011-05-20 #
# 28 for Axel Admin Server
# Google results as at 2011-05-20 #
# 1 for "Syntax Error or Not Axel XML data"
# Dorks #
dorks [
'"Syntax Error or Not Axel XML data"'
]
# Passive #
def passive
m=[]
# HTTP Server Header
if @headers["server"] =~ /^Axel Admin Server$/
m << { :name=>"HTTP Server Header" }
if @body =~ /^<AxelAdmin>$/
# Server Name
m << { :string=>@body.scan(/^<Name>([^\s^<]+)<\/Name>$/) } if @body =~ /^<Name>([^\s^<]+)<\/Name>$/
# Firmware Version Detection
m << { :firmware=>@body.scan(/^<Version>([^\s^<]+)<\/Version>$/) } if @body =~ /^<Version>([^\s^<]+)<\/Version>$/
end
end
# Return passive matches
m
end
end
=begin
The AX3000 hardware information is in the form of FKx-BVyyy
FKx is the electronic board code (click here for more information)
BVyyy is the boot code version (the boot code is the non-erasable part of the flash memory)
More info: http://www.axel.com/faq/faq_axtcp_e.html
=end
|