2015-08-28 16:08:24 -07:00
|
|
|
# encoding: utf-8
|
2015-09-09 18:37:16 +02:00
|
|
|
# copyright: 2015, Vulcano Security GmbH
|
2015-10-06 18:55:44 +02:00
|
|
|
# author: Dominik Richter
|
|
|
|
# author: Christoph Hartmann
|
2015-07-15 15:15:18 +02:00
|
|
|
# license: All rights reserved
|
|
|
|
|
2016-03-08 13:06:55 -05:00
|
|
|
module Inspec::Resources
|
|
|
|
class Cmd < Inspec.resource(1)
|
|
|
|
name 'command'
|
|
|
|
desc 'Use the command InSpec audit resource to test an arbitrary command that is run on the system.'
|
|
|
|
example "
|
|
|
|
describe command('ls -al /') do
|
2016-04-18 08:47:27 -04:00
|
|
|
its('stdout') { should match /bin/ }
|
2016-03-08 13:06:55 -05:00
|
|
|
its('stderr') { should eq '' }
|
2016-04-18 08:47:27 -04:00
|
|
|
its('exit_status') { should eq 0 }
|
2016-03-08 13:06:55 -05:00
|
|
|
end
|
2016-05-16 11:53:21 +05:30
|
|
|
|
|
|
|
command('ls -al /').exist? will return false. Existence of command should be checked this way.
|
|
|
|
describe command('ls') do
|
|
|
|
it { should exist }
|
|
|
|
end
|
2016-03-08 13:06:55 -05:00
|
|
|
"
|
|
|
|
|
|
|
|
attr_reader :command
|
|
|
|
|
2016-04-18 08:47:27 -04:00
|
|
|
def initialize(cmd)
|
2016-03-08 13:06:55 -05:00
|
|
|
@command = cmd
|
2015-11-27 14:02:38 +01:00
|
|
|
end
|
|
|
|
|
2016-03-08 13:06:55 -05:00
|
|
|
def result
|
2016-04-18 08:47:27 -04:00
|
|
|
@result ||= inspec.backend.run_command(@command)
|
2016-03-08 13:06:55 -05:00
|
|
|
end
|
2015-08-28 16:08:24 -07:00
|
|
|
|
2016-03-08 13:06:55 -05:00
|
|
|
def stdout
|
|
|
|
result.stdout
|
|
|
|
end
|
2015-08-28 16:08:24 -07:00
|
|
|
|
2016-03-08 13:06:55 -05:00
|
|
|
def stderr
|
|
|
|
result.stderr
|
|
|
|
end
|
2015-08-28 16:08:24 -07:00
|
|
|
|
2016-03-08 13:06:55 -05:00
|
|
|
def exit_status
|
|
|
|
result.exit_status.to_i
|
|
|
|
end
|
2015-08-28 16:08:24 -07:00
|
|
|
|
2016-03-08 13:06:55 -05:00
|
|
|
def exist?
|
|
|
|
# silent for mock resources
|
|
|
|
return false if inspec.os[:family].to_s == 'unknown'
|
|
|
|
|
|
|
|
if inspec.os.linux?
|
|
|
|
res = inspec.backend.run_command("bash -c 'type \"#{@command}\"'")
|
|
|
|
elsif inspec.os.windows?
|
|
|
|
res = inspec.backend.run_command("where.exe \"#{@command}\"")
|
|
|
|
elsif inspec.os.unix?
|
|
|
|
res = inspec.backend.run_command("type \"#{@command}\"")
|
|
|
|
else
|
|
|
|
warn "`command(#{@command}).exist?` is not suported on your OS: #{inspec.os[:family]}"
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
res.exit_status.to_i == 0
|
2015-11-02 12:00:15 +01:00
|
|
|
end
|
2015-10-12 13:01:58 +02:00
|
|
|
|
2016-03-08 13:06:55 -05:00
|
|
|
def to_s
|
|
|
|
"Command #{@command}"
|
|
|
|
end
|
2015-10-12 13:01:58 +02:00
|
|
|
end
|
2015-08-28 16:08:24 -07:00
|
|
|
end
|