CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/msf/base/sessions/meterpreter_x86_bsd.rb
Views: 1904
1
# -*- coding: binary -*-
2
3
4
module Msf
5
module Sessions
6
7
###
8
#
9
# This class creates a platform-specific meterpreter session type
10
#
11
###
12
class Meterpreter_x86_BSD < Msf::Sessions::Meterpreter
13
def initialize(rstream, opts={})
14
super
15
self.base_platform = 'bsd'
16
self.base_arch = ARCH_X86
17
end
18
end
19
20
end
21
end
22
23
24