CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/rex/proto/acpp.rb
Views: 11655
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