2021-01-05 16:20:42 +00:00
|
|
|
module Msf::Sessions
|
|
|
|
|
|
|
|
|
|
class CommandShellWindows < CommandShell
|
2024-04-10 16:18:52 +10:00
|
|
|
def initialize(*args)
|
|
|
|
|
self.platform = "windows"
|
|
|
|
|
super
|
|
|
|
|
end
|
|
|
|
|
|
2024-12-18 10:42:52 +11:00
|
|
|
include Msf::Sessions::WindowsEscaping
|
|
|
|
|
extend Msf::Sessions::WindowsEscaping
|
2021-01-05 16:20:42 +00:00
|
|
|
end
|
2021-01-06 12:48:16 +00:00
|
|
|
end
|