Files
metasploit-gs/lib/rex/proto/acpp.rb
T
2015-01-12 19:43:57 -08:00

18 lines
396 B
Ruby

# -*- coding: binary -*-
#
# Support for the protocol used by Apple Airport products, typically on
# 5009/TCP. This protocol is not documented and doesn't appear to have a name,
# so I'm calling it ACPP because that is the protocol header.
#
require 'rex/proto/acpp/client'
require 'rex/proto/acpp/message'
module Rex
module Proto
module ACPP
DEFAULT_PORT = 5009
end
end
end