Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rapid7
GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/rex/proto/acpp.rb
21537 views
1
# -*- coding: binary -*-
2
#
3
# Support for the protocol used by Apple Airport products, typically on
4
# 5009/TCP. This protocol is not documented and doesn't appear to have a name,
5
# so I'm calling it ACPP because that is the protocol header.
6
#
7
8
9
module Rex
10
module Proto
11
module ACPP
12
DEFAULT_PORT = 5009
13
end
14
end
15
end
16
17