Sha256: e3291207d8635b6ff5c9e6ab18ead2d166531a1bcf70a2f45b71a5f0a128fd0b

Contents?: true

Size: 1.41 KB

Versions: 4

Compression:

Stored size: 1.41 KB

Contents

# -*- encoding: utf-8 -*-
#
# Copyright 2016 Matt Wrock <matt@mattwrock.com>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#    http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

require 'rexml/document'

module WinRM
  module PSRP
    module MessageData
      # Handles decoding a raw powershell output response
      class PipelineOutput < Base
        def output
          extract_out_string(remove_bom(raw.force_encoding('utf-8')))
        end

        private

        def extract_out_string(text)
          doc = REXML::Document.new(text)
          doc.root.get_elements('//S').map do |node|
            text = ''
            if node.text
              text << node.text.gsub(/_x(\h\h\h\h)_/) do
                Regexp.last_match[1].hex.chr
              end.chomp
            end
            text << "\r\n"
          end.join
        end

        def remove_bom(text)
          text.sub("\xEF\xBB\xBF", '')
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
winrm-2.0.3 lib/winrm/psrp/message_data/pipeline_output.rb
winrm-2.0.2 lib/winrm/psrp/message_data/pipeline_output.rb
winrm-2.0.1 lib/winrm/psrp/message_data/pipeline_output.rb
winrm-2.0.0 lib/winrm/psrp/message_data/pipeline_output.rb