14 lines
228 B
Ruby
14 lines
228 B
Ruby
module Msf::Sessions
|
|
|
|
class CommandShellUnix < CommandShell
|
|
def initialize(*args)
|
|
self.platform = "unix"
|
|
super
|
|
end
|
|
|
|
include Msf::Sessions::UnixEscaping
|
|
extend Msf::Sessions::UnixEscaping
|
|
end
|
|
|
|
end
|