mirror of
https://github.com/inspec/inspec
synced 2024-11-14 17:07:09 +00:00
112 lines
1.7 KiB
Ruby
112 lines
1.7 KiB
Ruby
# encoding: utf-8
|
|
# copyright: 2015, Vulcano Security GmbH
|
|
# license: All rights reserved
|
|
|
|
# The file format consists of
|
|
# - username
|
|
# - password
|
|
# - userid
|
|
# - groupid
|
|
# - user id info
|
|
# - home directory
|
|
# - command
|
|
|
|
# usage:
|
|
#
|
|
# describe passwd do
|
|
# its(:usernames) { should eq 'root' }
|
|
# its(:uids) { should eq 1 }
|
|
# end
|
|
#
|
|
# describe passwd.uid(0) do
|
|
# its(:username) { should eq 'root' }
|
|
# its(:count) { should eq 1 }
|
|
# end
|
|
|
|
class Passwd < Vulcano.resource(1)
|
|
name 'passwd'
|
|
|
|
attr_reader :uid
|
|
attr_reader :parsed
|
|
|
|
def initialize(path = nil)
|
|
@path = path || '/etc/passwd'
|
|
@content = vulcano.file(@path).content
|
|
@parsed = parse_passwd(@content)
|
|
end
|
|
|
|
def to_s
|
|
@path
|
|
end
|
|
|
|
# call passwd().uid(0)
|
|
# returns a seperate object with reference to this object
|
|
def uid(uid)
|
|
PasswdUid.new(self, uid)
|
|
end
|
|
|
|
def usernames
|
|
map_data('name')
|
|
end
|
|
|
|
def passwords
|
|
map_data('password')
|
|
end
|
|
|
|
def uids
|
|
map_data('uid')
|
|
end
|
|
|
|
def gids
|
|
map_data('gid')
|
|
end
|
|
|
|
def users
|
|
@parsed.map {|x|
|
|
x['name']
|
|
}
|
|
end
|
|
|
|
private
|
|
|
|
def map_data(id)
|
|
@parsed.map {|x|
|
|
x[id]
|
|
}
|
|
end
|
|
|
|
def parse_passwd(content)
|
|
content.split("\n").map do |line|
|
|
parse_passwd_line(line)
|
|
end
|
|
end
|
|
|
|
def parse_passwd_line(line)
|
|
x = line.split(':')
|
|
{
|
|
'name' => x.at(0),
|
|
'password' => x.at(1),
|
|
'uid' => x.at(2),
|
|
'gid' => x.at(3),
|
|
'desc' => x.at(4),
|
|
'home' => x.at(5),
|
|
'shell' => x.at(6),
|
|
}
|
|
end
|
|
end
|
|
|
|
# object that hold a specifc uid view on passwd
|
|
class PasswdUid
|
|
def initialize(passwd, uid)
|
|
@passwd = passwd
|
|
@users = @passwd.parsed.select { |x| x['uid'] == "#{uid}" }
|
|
end
|
|
|
|
def username
|
|
@users.at(0)['name']
|
|
end
|
|
|
|
def count
|
|
@users.size
|
|
end
|
|
end
|