2021-01-05 16:20:42 +00:00
|
|
|
module Msf::Sessions
|
|
|
|
|
|
|
|
|
|
class CommandShellUnix < CommandShell
|
|
|
|
|
def initialize(*args)
|
|
|
|
|
self.platform = "unix"
|
|
|
|
|
super
|
|
|
|
|
end
|
|
|
|
|
def shell_command_token(cmd,timeout = 10)
|
|
|
|
|
shell_command_token_unix(cmd,timeout)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2021-01-06 12:48:16 +00:00
|
|
|
end
|