INNER CODE UNIT · Ruby
FileManager
Hackplayers/evil-winrm · evil-winrm.rb:121
class FileManager
def download(remote_path, local_path, chunk_size = 1024 * 1024, first = true, size: -1)
@logger.debug("downloading: #{remote_path} -> #{local_path} #{chunk_size}")
index = 0
return download_dir(remote_path, local_path, chunk_size, false) if remote_path.match?(/(\*\.?|\*\*|\.?\*|\*)/)
output = _output_from_file(remote_path, chunk_size, index)
return download_dir(remote_path, local_path, chunk_size, true) if output.exitcode == 2
return false if output.exitcode >= 1
File.open(local_path, 'wb') do |fd|
begin
out = _write_file(fd, output)
index += out.length
until out.empty?
yield index, size if size != -1
output = _output_from_file(remote_path, chunk_size, index)
return false if output.exitcode >= 1