2015-10-07 11:04:40 +00:00
|
|
|
# encoding: utf-8
|
|
|
|
# copyright: 2015, Vulcano Security GmbH
|
|
|
|
# author: Christoph Hartmann
|
|
|
|
# author: Dominik Richter
|
|
|
|
|
2016-03-08 18:06:55 +00:00
|
|
|
module Inspec::Resources
|
2016-03-18 11:29:36 +00:00
|
|
|
class PowershellScript < Cmd
|
|
|
|
name 'powershell'
|
|
|
|
desc 'Use the powershell InSpec audit resource to test a Windows PowerShell script on the Microsoft Windows platform.'
|
2016-03-08 18:06:55 +00:00
|
|
|
example "
|
|
|
|
script = <<-EOH
|
2017-04-20 15:43:33 +00:00
|
|
|
# your powershell script
|
2016-03-08 18:06:55 +00:00
|
|
|
EOH
|
2015-11-27 13:02:38 +00:00
|
|
|
|
2016-03-18 11:29:36 +00:00
|
|
|
describe powershell(script) do
|
2016-03-08 18:06:55 +00:00
|
|
|
its('matcher') { should eq 'output' }
|
|
|
|
end
|
|
|
|
"
|
2015-10-07 11:13:37 +00:00
|
|
|
|
2016-03-08 18:06:55 +00:00
|
|
|
def initialize(script)
|
|
|
|
unless inspec.os.windows?
|
2017-05-30 16:36:15 +00:00
|
|
|
super('')
|
2016-03-08 18:06:55 +00:00
|
|
|
return skip_resource 'The `script` resource is not supported on your OS yet.'
|
|
|
|
end
|
2016-09-04 17:32:48 +00:00
|
|
|
# since WinRM 2.0 and the default use of powershell for local execution in
|
|
|
|
# train, we do not need to wrap the script here anymore
|
|
|
|
super(script)
|
2016-03-08 18:06:55 +00:00
|
|
|
end
|
2015-10-07 11:04:40 +00:00
|
|
|
|
2016-03-08 18:06:55 +00:00
|
|
|
# we cannot determine if a command exists, because that does not work for scripts
|
|
|
|
def exist?
|
|
|
|
nil
|
|
|
|
end
|
2015-10-12 11:01:58 +00:00
|
|
|
|
2016-03-26 21:25:53 +00:00
|
|
|
# Removes leading and trailing whitespace from stdout
|
|
|
|
def strip
|
2017-11-21 07:49:41 +00:00
|
|
|
result.stdout&.strip
|
2016-03-26 21:25:53 +00:00
|
|
|
end
|
|
|
|
|
2016-03-08 18:06:55 +00:00
|
|
|
def to_s
|
2016-03-18 11:29:36 +00:00
|
|
|
'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.'
|
2016-03-08 18:06:55 +00:00
|
|
|
end
|
2015-10-12 11:01:58 +00:00
|
|
|
end
|
2015-10-07 11:04:40 +00:00
|
|
|
end
|