15 lines
254 B
Ruby
15 lines
254 B
Ruby
|
|
module Msf::Sessions
|
|
|
|
class CommandShellWindows < CommandShell
|
|
def initialize(*args)
|
|
self.platform = "windows"
|
|
super
|
|
end
|
|
def shell_command_token(cmd,timeout = 10)
|
|
shell_command_token_win32(cmd,timeout)
|
|
end
|
|
end
|
|
|
|
end
|