inspec/lib/resources/powershell.rb
Jerry Aldrich 2c4f041e9d powershell resource: Add support other OSs (#2894)
This adds `powershell` resource support for non-Windows OSs via `pwsh`
and Base64 encoded commands.

Signed-off-by: Jerry Aldrich <jerryaldrichiii@gmail.com>
2018-03-29 11:57:15 -04:00

66 lines
1.8 KiB
Ruby

# encoding: utf-8
# copyright: 2015, Vulcano Security GmbH
module Inspec::Resources
class PowershellScript < Cmd
name 'powershell'
supports platform: 'windows'
desc 'Use the powershell InSpec audit resource to test a Windows PowerShell script on the Microsoft Windows platform.'
example "
script = <<-EOH
# your powershell script
EOH
describe powershell(script) do
its('matcher') { should eq 'output' }
end
"
def initialize(script)
# PowerShell is the default shell on Windows, use the `command` resource
return super(script) if inspec.os.windows?
unless inspec.command('pwsh').exist?
raise Inspec::Exceptions::ResourceSkipped, 'Can not find `pwsh` command'
end
# Prevent progress stream from leaking into stderr
command = "$ProgressPreference='SilentlyContinue';" + script
# Encode as Base64 to remove any quotes/escapes/etc issues
command = command.encode('UTF-16LE', 'UTF-8')
command = Base64.strict_encode64(command)
# Use the `command` resource to execute the command via `pwsh`
super("pwsh -encodedCommand '#{command}'")
end
# we cannot determine if a command exists, because that does not work for scripts
def exist?
nil
end
# Removes leading and trailing whitespace from stdout
def strip
result.stdout&.strip
end
def to_s
'Powershell'
end
end
# this is deprecated syntax and will be removed in future versions
class LegacyPowershellScript < PowershellScript
name 'script'
def initialize(script)
deprecated
super(script)
end
def deprecated
warn '[DEPRECATION] `script(script)` is deprecated. Please use `powershell(script)` instead.'
end
end
end