Files
metasploit-gs/lib/msf/ui/console/command_dispatcher/local_file_system.rb
T
2024-03-06 15:52:09 +00:00

39 lines
728 B
Ruby

# -*- coding: binary -*-
module Msf
module Ui
module Console
module CommandDispatcher
###
#
# Generic file system commands
#
###
class LocalFileSystem
include Rex::Ui::Text::DispatcherShell::CommandDispatcher
include Msf::Ui::Console::LocalFileSystem
#
# List of supported commands.
#
# @return [Hash]
def commands
local_fs_commands
end
# @param [String]
def name
'Local File System'
end
def unknown_command(cmd, line)
status = super
status
end
end
end
end
end
end