metasploit-framework/lib/rex/proto/acpp.rb

18 lines
396 B
Ruby
Raw Normal View History

# -*- 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.
#
2015-01-05 23:06:46 +00:00
require 'rex/proto/acpp/client'
require 'rex/proto/acpp/message'
2015-01-13 03:43:57 +00:00
module Rex
module Proto
module ACPP
DEFAULT_PORT = 5009
end
end
end