Fix examples descriptions
parent
7f7b17c04e
commit
96c0f1847b
|
@ -161,7 +161,7 @@ describe Msf::Exploit::Remote::SMB::Server::Share do
|
|||
expect(mod.smb_cmd_find_file_both_directory_info(client, file_path)).to eq(existent_file_file_both_dir_res_length)
|
||||
end
|
||||
|
||||
it "sends a TRANSACTION2 response with SMB_STATUS_NO_SUCH_FILE error to the client" do
|
||||
it "sends a TRANSACTION2 response with the found FileName in SMB Data" do
|
||||
mod.smb_cmd_find_file_both_directory_info(client, file_path)
|
||||
client.seek(0)
|
||||
res = client.read
|
||||
|
@ -184,7 +184,7 @@ describe Msf::Exploit::Remote::SMB::Server::Share do
|
|||
expect(mod.smb_cmd_find_file_both_directory_info(client, folder_path)).to eq(existent_folder_file_both_dir_res_length)
|
||||
end
|
||||
|
||||
it "sends a TRANSACTION2 response with SMB_STATUS_NO_SUCH_FILE error to the client" do
|
||||
it "sends a TRANSACTION2 response with the found FileName in SMB Data" do
|
||||
mod.smb_cmd_find_file_both_directory_info(client, folder_path)
|
||||
client.seek(0)
|
||||
res = client.read
|
||||
|
@ -226,7 +226,7 @@ describe Msf::Exploit::Remote::SMB::Server::Share do
|
|||
expect(mod.smb_cmd_find_file_names_info(client, file_path)).to eq(existent_file_file_names_res_length)
|
||||
end
|
||||
|
||||
it "sends a TRANSACTION2 response with SMB_STATUS_NO_SUCH_FILE error to the client" do
|
||||
it "sends a TRANSACTION2 response with the found FileName in SMB Data" do
|
||||
mod.smb_cmd_find_file_names_info(client, file_path)
|
||||
client.seek(0)
|
||||
res = client.read
|
||||
|
@ -249,7 +249,7 @@ describe Msf::Exploit::Remote::SMB::Server::Share do
|
|||
expect(mod.smb_cmd_find_file_names_info(client, folder_path)).to eq(existent_folder_file_names_res_length)
|
||||
end
|
||||
|
||||
it "sends a TRANSACTION2 response with SMB_STATUS_NO_SUCH_FILE error to the client" do
|
||||
it "sends a TRANSACTION2 response with the found FileName in SMB Data" do
|
||||
mod.smb_cmd_find_file_names_info(client, folder_path)
|
||||
client.seek(0)
|
||||
res = client.read
|
||||
|
@ -291,7 +291,7 @@ describe Msf::Exploit::Remote::SMB::Server::Share do
|
|||
expect(mod.smb_cmd_find_file_full_directory_info(client, file_path)).to eq(existent_file_file_full_res_length)
|
||||
end
|
||||
|
||||
it "sends a TRANSACTION2 response with SMB_STATUS_NO_SUCH_FILE error to the client" do
|
||||
it "sends a TRANSACTION2 response with the found FileName in SMB Data" do
|
||||
mod.smb_cmd_find_file_full_directory_info(client, file_path)
|
||||
client.seek(0)
|
||||
res = client.read
|
||||
|
@ -314,7 +314,7 @@ describe Msf::Exploit::Remote::SMB::Server::Share do
|
|||
expect(mod.smb_cmd_find_file_full_directory_info(client, folder_path)).to eq(existent_folder_file_full_res_length)
|
||||
end
|
||||
|
||||
it "sends a TRANSACTION2 response with SMB_STATUS_NO_SUCH_FILE error to the client" do
|
||||
it "sends a TRANSACTION2 response with the found FileName in SMB Data" do
|
||||
mod.smb_cmd_find_file_full_directory_info(client, folder_path)
|
||||
client.seek(0)
|
||||
res = client.read
|
||||
|
|
Loading…
Reference in New Issue