2015-07-15 13:15:18 +00:00
|
|
|
# encoding: utf-8
|
|
|
|
# copyright: 2015, Vulcano Security GmbH
|
|
|
|
# license: All rights reserved
|
2015-07-15 13:15:53 +00:00
|
|
|
|
|
|
|
# The file format consists of
|
|
|
|
# - username
|
|
|
|
# - password
|
|
|
|
# - userid
|
|
|
|
# - groupid
|
|
|
|
# - user id info
|
|
|
|
# - home directory
|
|
|
|
# - command
|
|
|
|
|
2015-07-26 10:30:12 +00:00
|
|
|
include Serverspec::Type
|
2015-07-14 22:47:17 +00:00
|
|
|
|
2015-07-26 10:30:12 +00:00
|
|
|
class Passwd < Serverspec::Type::File
|
2015-07-14 22:47:17 +00:00
|
|
|
|
2015-07-26 10:30:12 +00:00
|
|
|
attr_accessor :uid
|
2015-07-14 22:47:17 +00:00
|
|
|
|
2015-07-26 10:30:12 +00:00
|
|
|
def to_s
|
|
|
|
%Q[/etc/passwd]
|
|
|
|
end
|
2015-07-14 22:47:17 +00:00
|
|
|
|
2015-07-26 10:30:12 +00:00
|
|
|
def determine_uid ()
|
|
|
|
parsed = parse()
|
|
|
|
uids = Array.new
|
|
|
|
parsed.each {|x|
|
|
|
|
if ( x.at(2) == "#{@uid}") then
|
|
|
|
uids.push(x.at(0))
|
2015-07-14 22:47:17 +00:00
|
|
|
end
|
2015-07-26 10:30:12 +00:00
|
|
|
}
|
|
|
|
uids
|
|
|
|
end
|
2015-07-14 22:47:17 +00:00
|
|
|
|
2015-07-26 10:30:12 +00:00
|
|
|
def username
|
|
|
|
uids = determine_uid()
|
|
|
|
uids.at(0)
|
|
|
|
end
|
2015-07-14 22:50:19 +00:00
|
|
|
|
2015-07-26 10:30:12 +00:00
|
|
|
def count
|
|
|
|
arr = determine_uid()
|
|
|
|
arr.length
|
|
|
|
end
|
2015-07-15 13:15:53 +00:00
|
|
|
|
2015-07-26 10:30:12 +00:00
|
|
|
def map_data (id)
|
|
|
|
parsed = parse()
|
|
|
|
parsed.map {|x|
|
|
|
|
x.at(id)
|
|
|
|
}
|
|
|
|
end
|
2015-07-15 13:15:53 +00:00
|
|
|
|
2015-07-26 10:30:12 +00:00
|
|
|
def usernames
|
|
|
|
map_data(0)
|
|
|
|
end
|
2015-07-15 13:15:53 +00:00
|
|
|
|
2015-07-26 10:30:12 +00:00
|
|
|
def passwords
|
|
|
|
map_data(1)
|
|
|
|
end
|
2015-07-15 13:15:53 +00:00
|
|
|
|
2015-07-26 10:30:12 +00:00
|
|
|
def uids
|
|
|
|
map_data(2)
|
|
|
|
end
|
2015-07-14 22:47:17 +00:00
|
|
|
|
2015-07-26 10:30:12 +00:00
|
|
|
def gids
|
|
|
|
map_data(3)
|
|
|
|
end
|
2015-07-14 22:47:17 +00:00
|
|
|
|
2015-07-26 10:30:12 +00:00
|
|
|
def users
|
|
|
|
parsed = parse()
|
|
|
|
parsed.map {|x|
|
|
|
|
{
|
|
|
|
"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
|
2015-07-14 22:47:17 +00:00
|
|
|
|
2015-07-26 10:30:12 +00:00
|
|
|
def parse
|
|
|
|
entries = Array.new
|
|
|
|
content().split("\n").each do |line|
|
|
|
|
entries.push(line.split(':'))
|
2015-07-14 22:47:17 +00:00
|
|
|
end
|
2015-07-26 10:30:12 +00:00
|
|
|
entries
|
2015-07-14 22:47:17 +00:00
|
|
|
end
|
|
|
|
|
2015-07-26 10:30:12 +00:00
|
|
|
end
|
2015-08-03 00:40:08 +00:00
|
|
|
|
|
|
|
module Serverspec::Type
|
|
|
|
def passwd(uid=nil)
|
|
|
|
i = Passwd.new('/etc/passwd')
|
|
|
|
i.uid = uid
|
|
|
|
i
|
|
|
|
end
|
|
|
|
end
|