Files
metasploit-gs/lib/msf/base/sessions/command_shell_windows.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
254 B
Ruby
Raw Normal View History

2021-01-05 16:20:42 +00:00
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
2021-01-06 12:48:16 +00:00
end