Fix includes

bug/bundler_fix
jvazquez-r7 2015-02-23 11:14:45 -06:00
parent 439507d359
commit 7d9f661d78
6 changed files with 12 additions and 17 deletions

View File

@ -21,18 +21,12 @@ module Msf
include Msf::Exploit::Remote::SMB::Server::Share::Command::NtCreateAndx include Msf::Exploit::Remote::SMB::Server::Share::Command::NtCreateAndx
include Msf::Exploit::Remote::SMB::Server::Share::Command::ReadAndx include Msf::Exploit::Remote::SMB::Server::Share::Command::ReadAndx
include Msf::Exploit::Remote::SMB::Server::Share::Command::SessionSetupAndx include Msf::Exploit::Remote::SMB::Server::Share::Command::SessionSetupAndx
include Msf::Exploit::Remote::SMB::Server::Share::Command::Trans2
include Msf::Exploit::Remote::SMB::Server::Share::Command::Trans2::FindFirst2
include Msf::Exploit::Remote::SMB::Server::Share::Command::Trans2::QueryFileInformation
include Msf::Exploit::Remote::SMB::Server::Share::Command::Trans2::QueryPathInformation
include Msf::Exploit::Remote::SMB::Server::Share::InformationLevel::Find include Msf::Exploit::Remote::SMB::Server::Share::InformationLevel::Find
include Msf::Exploit::Remote::SMB::Server::Share::InformationLevel::Query include Msf::Exploit::Remote::SMB::Server::Share::InformationLevel::Query
include Msf::Exploit::Remote::SMB::Server::Share::SubCommand::Trans2
include Msf::Exploit::Remote::SMB::Server::Share::SubCommand::Trans2::FindFirst2
include Msf::Exploit::Remote::SMB::Server::Share::SubCommand::Trans2::QueryFileInformation
include Msf::Exploit::Remote::SMB::Server::Share::SubCommand::Trans2::QueryPathInformation
include Msf::Exploit::Remote::SMB::Server::Share::InformationLevel::Find
include Msf::Exploit::Remote::SMB::Server::Share::InformationLevel::Query
include Msf::Exploit::Remote::SMB::Server::Share::SubCommand::Trans2
include Msf::Exploit::Remote::SMB::Server::Share::SubCommand::Trans2::FindFirst2
include Msf::Exploit::Remote::SMB::Server::Share::SubCommand::Trans2::QueryFileInformation
include Msf::Exploit::Remote::SMB::Server::Share::SubCommand::Trans2::QueryPathInformation
include Msf::Exploit::Remote::SMB::Server include Msf::Exploit::Remote::SMB::Server

View File

@ -9,6 +9,7 @@ module Msf
require 'msf/core/exploit/smb/server/share/command/nt_create_andx' require 'msf/core/exploit/smb/server/share/command/nt_create_andx'
require 'msf/core/exploit/smb/server/share/command/read_andx' require 'msf/core/exploit/smb/server/share/command/read_andx'
require 'msf/core/exploit/smb/server/share/command/session_setup_andx' require 'msf/core/exploit/smb/server/share/command/session_setup_andx'
require 'msf/core/exploit/smb/server/share/command/trans2'
end end
end end
end end

View File

@ -3,11 +3,11 @@
module Msf module Msf
module Exploit::Remote::SMB::Server module Exploit::Remote::SMB::Server
module Share module Share
module SubCommand module Command
module Trans2 module Trans2
require 'msf/core/exploit/smb/server/share/sub_command/trans2/find_first2' require 'msf/core/exploit/smb/server/share/command/trans2/find_first2'
require 'msf/core/exploit/smb/server/share/sub_command/trans2/query_file_information' require 'msf/core/exploit/smb/server/share/command/trans2/query_file_information'
require 'msf/core/exploit/smb/server/share/sub_command/trans2/query_path_information' require 'msf/core/exploit/smb/server/share/command/trans2/query_path_information'
# #
# Responds to client TRANSACTION2 requests and dispatches the request off to # Responds to client TRANSACTION2 requests and dispatches the request off to

View File

@ -3,7 +3,7 @@
module Msf module Msf
module Exploit::Remote::SMB::Server module Exploit::Remote::SMB::Server
module Share module Share
module SubCommand module Command
module Trans2 module Trans2
# This mixin provides methods to handle TRAN2_FIND_FIRST2 subcommands # This mixin provides methods to handle TRAN2_FIND_FIRST2 subcommands
module FindFirst2 module FindFirst2

View File

@ -3,7 +3,7 @@
module Msf module Msf
module Exploit::Remote::SMB::Server module Exploit::Remote::SMB::Server
module Share module Share
module SubCommand module Command
module Trans2 module Trans2
# This mixin provides methods to handle TRAN2_QUERY_PATH_INFORMATION subcommands # This mixin provides methods to handle TRAN2_QUERY_PATH_INFORMATION subcommands
module QueryFileInformation module QueryFileInformation

View File

@ -3,7 +3,7 @@
module Msf module Msf
module Exploit::Remote::SMB::Server module Exploit::Remote::SMB::Server
module Share module Share
module SubCommand module Command
module Trans2 module Trans2
# This mixin provides methods to handle TRAN2_QUERY_PATH_INFORMATION subcommands # This mixin provides methods to handle TRAN2_QUERY_PATH_INFORMATION subcommands
module QueryPathInformation module QueryPathInformation