2015-10-03 11:32:19 +00:00
# encoding: utf-8
# author: Christoph Hartmann
2015-10-06 16:55:44 +00:00
# author: Dominik Richter
2015-10-03 11:32:19 +00:00
# Usage:
#
# describe user('root') do
# it { should exist }
2016-05-03 22:14:33 +00:00
# its('uid') { should eq 0 }
# its('gid') { should eq 0 }
# its('group') { should eq 'root' }
# its('groups') { should eq ['root', 'wheel']}
# its('home') { should eq '/root' }
# its('shell') { should eq '/bin/bash' }
# its('mindays') { should eq 0 }
# its('maxdays') { should eq 99 }
# its('warndays') { should eq 5 }
2015-10-03 11:32:19 +00:00
# end
#
# The following Serverspec matchers are deprecated in favor for direct value access
#
# describe user('root') do
# it { should belong_to_group 'root' }
# it { should have_uid 0 }
# it { should have_home_directory '/root' }
# it { should have_login_shell '/bin/bash' }
2016-05-03 22:14:33 +00:00
# its('minimum_days_between_password_change') { should eq 0 }
# its('maximum_days_between_password_change') { should eq 99 }
2015-10-03 11:32:19 +00:00
# end
# ServerSpec tests that are not supported:
#
# describe user('root') do
# it { should have_authorized_key 'ssh-rsa ADg54...3434 user@example.local' }
# its(:encrypted_password) { should eq 1234 }
# end
2015-10-04 16:07:45 +00:00
require 'utils/parser'
2015-10-05 09:40:34 +00:00
require 'utils/convert'
2015-10-04 16:07:45 +00:00
2016-03-08 18:06:55 +00:00
module Inspec::Resources
class User < Inspec . resource ( 1 ) # rubocop:disable Metrics/ClassLength
name 'user'
desc 'Use the user InSpec audit resource to test user profiles, including the groups to which they belong, the frequency of required password changes, the directory paths to home and shell.'
example "
describe user ( 'root' ) do
it { should exist }
its ( 'uid' ) { should eq 1234 }
its ( 'gid' ) { should eq 1234 }
end
"
def initialize ( user )
@user = user
# select package manager
@user_provider = nil
os = inspec . os
if os . linux?
@user_provider = LinuxUser . new ( inspec )
elsif os . windows?
@user_provider = WindowsUser . new ( inspec )
elsif [ 'darwin' ] . include? ( os [ :family ] )
@user_provider = DarwinUser . new ( inspec )
elsif [ 'freebsd' ] . include? ( os [ :family ] )
@user_provider = FreeBSDUser . new ( inspec )
elsif [ 'aix' ] . include? ( os [ :family ] )
@user_provider = AixUser . new ( inspec )
elsif os . solaris?
@user_provider = SolarisUser . new ( inspec )
2016-04-21 08:31:56 +00:00
elsif [ 'hpux' ] . include? ( os [ :family ] )
@user_provider = HpuxUser . new ( inspec )
2016-03-08 18:06:55 +00:00
else
return skip_resource 'The `user` resource is not supported on your OS yet.'
end
2015-10-03 11:32:19 +00:00
end
2016-03-08 18:06:55 +00:00
def exists?
! identity . nil? && ! identity [ :user ] . nil?
end
2015-10-03 11:32:19 +00:00
2016-03-08 18:06:55 +00:00
def uid
identity [ :uid ] unless identity . nil?
end
2015-10-03 11:32:19 +00:00
2016-03-08 18:06:55 +00:00
def gid
identity [ :gid ] unless identity . nil?
end
2015-10-03 11:32:19 +00:00
2016-03-08 18:06:55 +00:00
def group
identity [ :group ] unless identity . nil?
end
2015-10-03 11:32:19 +00:00
2016-03-08 18:06:55 +00:00
def groups
identity [ :groups ] unless identity . nil?
end
2015-10-03 11:32:19 +00:00
2016-03-08 18:06:55 +00:00
def home
meta_info [ :home ] unless meta_info . nil?
end
2015-10-03 11:32:19 +00:00
2016-03-08 18:06:55 +00:00
def shell
meta_info [ :shell ] unless meta_info . nil?
end
2015-10-03 11:32:19 +00:00
2016-03-08 18:06:55 +00:00
# returns the minimum days between password changes
def mindays
credentials [ :mindays ] unless credentials . nil?
end
2015-10-03 11:32:19 +00:00
2016-03-08 18:06:55 +00:00
# returns the maximum days between password changes
def maxdays
credentials [ :maxdays ] unless credentials . nil?
end
2015-10-03 11:32:19 +00:00
2016-03-08 18:06:55 +00:00
# returns the days for password change warning
def warndays
credentials [ :warndays ] unless credentials . nil?
end
2015-10-03 11:32:19 +00:00
2016-03-08 18:06:55 +00:00
# implement 'mindays' method to be compatible with serverspec
def minimum_days_between_password_change
2016-05-03 22:14:33 +00:00
deprecated ( 'minimum_days_between_password_change' , " Please use: its('mindays') " )
2016-03-08 18:06:55 +00:00
mindays
end
2015-10-03 11:32:19 +00:00
2016-03-08 18:06:55 +00:00
# implement 'maxdays' method to be compatible with serverspec
def maximum_days_between_password_change
2016-05-03 22:14:33 +00:00
deprecated ( 'maximum_days_between_password_change' , " Please use: its('maxdays') " )
2016-03-08 18:06:55 +00:00
maxdays
end
2015-10-03 11:32:19 +00:00
2016-03-08 18:06:55 +00:00
# implements rspec has matcher, to be compatible with serverspec
# @see: https://github.com/rspec/rspec-expectations/blob/master/lib/rspec/matchers/built_in/has.rb
def has_uid? ( compare_uid )
deprecated ( 'has_uid?' )
uid == compare_uid
end
2015-10-03 11:32:19 +00:00
2016-03-08 18:06:55 +00:00
def has_home_directory? ( compare_home )
2016-05-03 22:14:33 +00:00
deprecated ( 'has_home_directory?' , " Please use: its('home') " )
2016-03-08 18:06:55 +00:00
home == compare_home
end
2015-10-03 11:32:19 +00:00
2016-03-08 18:06:55 +00:00
def has_login_shell? ( compare_shell )
2016-05-03 22:14:33 +00:00
deprecated ( 'has_login_shell?' , " Please use: its('shell') " )
2016-03-08 18:06:55 +00:00
shell == compare_shell
end
2015-10-03 11:32:19 +00:00
2016-03-08 18:06:55 +00:00
def has_authorized_key? ( _compare_key )
deprecated ( 'has_authorized_key?' )
fail NotImplementedError
end
2015-10-03 11:32:19 +00:00
2016-03-08 18:06:55 +00:00
def deprecated ( name , alternative = nil )
warn " [DEPRECATION] #{ name } is deprecated. #{ alternative } "
end
2015-10-03 11:32:19 +00:00
2016-03-08 18:06:55 +00:00
def to_s
" User #{ @user } "
end
2015-10-05 09:22:03 +00:00
2016-03-08 18:06:55 +00:00
def identity
return @id_cache if defined? ( @id_cache )
@id_cache = @user_provider . identity ( @user ) if ! @user_provider . nil?
end
2015-10-05 09:22:03 +00:00
2016-03-08 18:06:55 +00:00
private
2016-01-28 13:26:31 +00:00
2016-03-08 18:06:55 +00:00
def meta_info
return @meta_cache if defined? ( @meta_cache )
@meta_cache = @user_provider . meta_info ( @user ) if ! @user_provider . nil?
end
2015-10-05 09:40:34 +00:00
2016-03-08 18:06:55 +00:00
def credentials
return @cred_cache if defined? ( @cred_cache )
@cred_cache = @user_provider . credentials ( @user ) if ! @user_provider . nil?
end
2015-10-05 09:40:34 +00:00
end
2015-10-03 11:32:19 +00:00
2016-03-08 18:06:55 +00:00
class UserInfo
include Converter
2015-10-05 09:40:34 +00:00
2016-03-08 18:06:55 +00:00
attr_reader :inspec
def initialize ( inspec )
@inspec = inspec
end
2015-10-03 11:32:19 +00:00
2016-03-08 18:06:55 +00:00
def credentials ( _username )
end
2016-01-28 13:26:31 +00:00
end
2016-03-08 18:06:55 +00:00
# implements generic unix id handling
class UnixUser < UserInfo
attr_reader :inspec , :id_cmd
def initialize ( inspec )
@inspec = inspec
@id_cmd || = 'id'
super
end
2015-10-03 11:32:19 +00:00
2016-03-08 18:06:55 +00:00
# parse one id entry like '0(wheel)''
def parse_value ( line )
SimpleConfig . new (
line ,
line_separator : ',' ,
assignment_re : / ^ \ s*([^ \ (]*?) \ s* \ ( \ s*(.*?) \ )*$ / ,
group_re : nil ,
multiple_values : false ,
) . params
end
2015-11-24 17:39:32 +00:00
2016-03-08 18:06:55 +00:00
# extracts the identity
def identity ( username )
cmd = inspec . command ( " #{ id_cmd } #{ username } " )
return nil if cmd . exit_status != 0
# parse words
params = SimpleConfig . new (
parse_id_entries ( cmd . stdout . chomp ) ,
assignment_re : / ^ \ s*([^=]*?) \ s*= \ s*(.*?) \ s*$ / ,
group_re : nil ,
multiple_values : false ,
) . params
{
uid : convert_to_i ( parse_value ( params [ 'uid' ] ) . keys [ 0 ] ) ,
user : parse_value ( params [ 'uid' ] ) . values [ 0 ] ,
gid : convert_to_i ( parse_value ( params [ 'gid' ] ) . keys [ 0 ] ) ,
group : parse_value ( params [ 'gid' ] ) . values [ 0 ] ,
groups : parse_value ( params [ 'groups' ] ) . values ,
}
2015-11-24 17:39:32 +00:00
end
2015-10-03 11:32:19 +00:00
2016-03-08 18:06:55 +00:00
# splits the results of id into seperate lines
def parse_id_entries ( raw )
data = [ ]
until ( index = raw . index ( / \ ) \ s{1} / ) ) . nil?
data . push ( raw [ 0 , index + 1 ] ) # inclue closing )
raw = raw [ index + 2 , raw . length - index - 2 ]
end
data . push ( raw ) if ! raw . nil?
data . join ( " \n " )
end
2015-10-03 11:32:19 +00:00
end
2015-10-05 09:40:34 +00:00
2016-03-08 18:06:55 +00:00
class LinuxUser < UnixUser
include PasswdParser
include CommentParser
2015-10-03 11:32:19 +00:00
2016-03-08 18:06:55 +00:00
def meta_info ( username )
cmd = inspec . command ( " getent passwd #{ username } " )
return nil if cmd . exit_status != 0
# returns: root:x:0:0:root:/root:/bin/bash
passwd = parse_passwd_line ( cmd . stdout . chomp )
{
home : passwd [ 'home' ] ,
shell : passwd [ 'shell' ] ,
}
end
2016-01-28 13:26:31 +00:00
2016-03-08 18:06:55 +00:00
def credentials ( username )
cmd = inspec . command ( " chage -l #{ username } " )
return nil if cmd . exit_status != 0
params = SimpleConfig . new (
cmd . stdout . chomp ,
assignment_re : / ^ \ s*([^:]*?) \ s*: \ s*(.*?) \ s*$ / ,
group_re : nil ,
multiple_values : false ,
) . params
{
mindays : convert_to_i ( params [ 'Minimum number of days between password change' ] ) ,
maxdays : convert_to_i ( params [ 'Maximum number of days between password change' ] ) ,
warndays : convert_to_i ( params [ 'Number of days of warning before password expires' ] ) ,
}
end
2016-01-28 13:26:31 +00:00
end
2016-03-08 18:06:55 +00:00
class SolarisUser < LinuxUser
def initialize ( inspec )
@inspec = inspec
@id_cmd || = 'id -a'
super
2015-12-19 00:45:26 +00:00
end
2016-03-08 18:06:55 +00:00
def credentials ( _username )
nil
end
2015-12-19 00:45:26 +00:00
end
2016-03-08 18:06:55 +00:00
class AixUser < UnixUser
def identity ( username )
id = super ( username )
return nil if id . nil?
# AIX 'id' command doesn't include the primary group in the supplementary
# yet it can be somewhere in the supplementary list if someone added root
# to a groups list in /etc/group
# we rearrange to expected list if that is the case
if id [ :groups ] . first != id [ :group ]
id [ :groups ] . reject! { | i | i == id [ :group ] } if id [ :groups ] . include? ( id [ :group ] )
id [ :groups ] . unshift ( id [ :group ] )
end
id
end
2015-12-19 00:45:26 +00:00
2016-03-08 18:06:55 +00:00
def meta_info ( username )
lsuser = inspec . command ( " lsuser -C -a home shell #{ username } " )
return nil if lsuser . exit_status != 0
2015-12-19 00:45:26 +00:00
2016-03-08 18:06:55 +00:00
user = lsuser . stdout . chomp . split ( " \n " ) . last . split ( ':' )
{
home : user [ 1 ] ,
shell : user [ 2 ] ,
}
end
2015-12-19 00:45:26 +00:00
2016-03-08 18:06:55 +00:00
def credentials ( username )
cmd = inspec . command (
" lssec -c -f /etc/security/user -s #{ username } -a minage -a maxage -a pwdwarntime " ,
)
return nil if cmd . exit_status != 0
2015-12-19 00:45:26 +00:00
2016-03-08 18:06:55 +00:00
user_sec = cmd . stdout . chomp . split ( " \n " ) . last . split ( ':' )
2015-12-19 00:45:26 +00:00
2016-03-08 18:06:55 +00:00
{
mindays : user_sec [ 1 ] . to_i * 7 ,
maxdays : user_sec [ 2 ] . to_i * 7 ,
warndays : user_sec [ 3 ] . to_i ,
}
end
2015-10-03 11:32:19 +00:00
end
2015-10-03 11:58:45 +00:00
2016-04-21 08:31:56 +00:00
class HpuxUser < UnixUser
def meta_info ( username )
hpuxuser = inspec . command ( " logins -x -l #{ username } " )
return nil if hpuxuser . exit_status != 0
user = hpuxuser . stdout . chomp . split ( ' ' )
{
home : user [ 4 ] ,
shell : user [ 5 ] ,
}
end
end
2016-03-08 18:06:55 +00:00
# we do not use 'finger' for MacOS, because it is harder to parse data with it
# @see https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man8/fingerd.8.html
# instead we use 'dscl' to request user data
# @see https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man1/dscl.1.html
# @see http://superuser.com/questions/592921/mac-osx-users-vs-dscl-command-to-list-user
class DarwinUser < UnixUser
def meta_info ( username )
cmd = inspec . command ( " dscl -q . -read /Users/ #{ username } NFSHomeDirectory PrimaryGroupID RecordName UniqueID UserShell " )
return nil if cmd . exit_status != 0
params = SimpleConfig . new (
cmd . stdout . chomp ,
assignment_re : / ^ \ s*([^:]*?) \ s*: \ s*(.*?) \ s*$ / ,
group_re : nil ,
multiple_values : false ,
) . params
{
home : params [ 'NFSHomeDirectory' ] ,
shell : params [ 'UserShell' ] ,
}
end
2015-10-04 15:20:59 +00:00
end
2016-03-08 18:06:55 +00:00
# FreeBSD recommends to use the 'pw' command for user management
# @see: https://www.freebsd.org/doc/handbook/users-synopsis.html
# @see: https://www.freebsd.org/cgi/man.cgi?pw(8)
# It offers the following commands:
# - adduser(8) The recommended command-line application for adding new users.
# - rmuser(8) The recommended command-line application for removing users.
# - chpass(1) A flexible tool for changing user database information.
# - passwd(1) The command-line tool to change user passwords.
class FreeBSDUser < UnixUser
include PasswdParser
def meta_info ( username )
cmd = inspec . command ( " pw usershow #{ username } -7 " )
return nil if cmd . exit_status != 0
# returns: root:*:0:0:Charlie &:/root:/bin/csh
passwd = parse_passwd_line ( cmd . stdout . chomp )
{
home : passwd [ 'home' ] ,
shell : passwd [ 'shell' ] ,
}
end
2015-10-04 15:20:59 +00:00
end
2016-03-08 18:06:55 +00:00
# For now, we stick with WMI Win32_UserAccount
# @see https://msdn.microsoft.com/en-us/library/aa394507(v=vs.85).aspx
# @see https://msdn.microsoft.com/en-us/library/aa394153(v=vs.85).aspx
#
# using Get-AdUser would be the best command for domain machines, but it will not be installed
# on client machines by default
# @see https://technet.microsoft.com/en-us/library/ee617241.aspx
# @see https://technet.microsoft.com/en-us/library/hh509016(v=WS.10).aspx
# @see http://woshub.com/get-aduser-getting-active-directory-users-data-via-powershell/
# @see http://stackoverflow.com/questions/17548523/the-term-get-aduser-is-not-recognized-as-the-name-of-a-cmdlet
#
# Just for reference, we could also use ADSI (Active Directory Service Interfaces)
# @see https://mcpmag.com/articles/2015/04/15/reporting-on-local-accounts.aspx
class WindowsUser < UserInfo
# parse windows account name
def parse_windows_account ( username )
account = username . split ( '\\' )
name = account . pop
domain = account . pop if account . size > 0
[ name , domain ]
end
2015-10-04 15:20:59 +00:00
2016-03-08 18:06:55 +00:00
def identity ( username )
# extract domain/user information
account , domain = parse_windows_account ( username )
# TODO: escape content
if ! domain . nil?
filter = " Name = ' #{ account } ' and Domain = ' #{ domain } ' "
else
filter = " Name = ' #{ account } ' and LocalAccount = true "
end
script = <<-EOH
# find user
$user = Get - WmiObject Win32_UserAccount - filter " #{ filter } "
# get related groups
$groups = $user . GetRelated ( 'Win32_Group' ) | Select - Object - Property Caption , Domain , Name , LocalAccount , SID , SIDType , Status
# filter user information
$user = $user | Select - Object - Property Caption , Description , Domain , Name , LocalAccount , Lockout , PasswordChangeable , PasswordExpires , PasswordRequired , SID , SIDType , Status
# build response object
New - Object - Type PSObject | `
Add - Member - MemberType NoteProperty - Name User - Value ( $user ) - PassThru | `
Add - Member - MemberType NoteProperty - Name Groups - Value ( $groups ) - PassThru | `
ConvertTo - Json
EOH
2016-08-26 07:33:35 +00:00
cmd = inspec . powershell ( script )
2016-03-08 18:06:55 +00:00
# cannot rely on exit code for now, successful command returns exit code 1
# return nil if cmd.exit_status != 0, try to parse json
begin
params = JSON . parse ( cmd . stdout )
rescue JSON :: ParserError = > _e
return nil
end
2016-08-25 18:51:53 +00:00
user_hash = params [ 'User' ] || { }
group_hashes = params [ 'Groups' ] || [ ]
2016-03-08 18:06:55 +00:00
# if groups is no array, generate one
2016-08-25 18:51:53 +00:00
group_hashes = [ group_hashes ] unless group_hashes . is_a? ( Array )
group_names = group_hashes . map { | grp | grp [ 'Caption' ] }
2016-03-08 18:06:55 +00:00
{
2016-08-25 18:51:53 +00:00
uid : user_hash [ 'SID' ] ,
user : user_hash [ 'Caption' ] ,
2016-03-08 18:06:55 +00:00
gid : nil ,
group : nil ,
2016-08-25 18:51:53 +00:00
groups : group_names ,
2016-03-08 18:06:55 +00:00
}
end
# not implemented yet
def meta_info ( _username )
{
home : nil ,
shell : nil ,
}
end
2015-10-03 11:58:45 +00:00
end
end