Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add checks for other shadow and passwd/group files into os-02 and os-03 rules #162

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
112 changes: 112 additions & 0 deletions controls/os_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -282,3 +282,115 @@
end
end
end

control 'os-14' do
impact 1.0
title 'Check owner and permissions for /etc/gshadow'
desc 'Check periodically the owner and permissions for /etc/gshadow'
describe file('/etc/gshadow') do
it { should exist }
it { should be_file }
it { should be_owned_by 'root' }
its('group') { should eq shadow_group }
it { should_not be_executable }
it { should_not be_writable.by('group') }
it { should_not be_writable.by('other') }
it { should_not be_readable.by('other') }
end
end

control 'os-15' do
impact 1.0
title 'Check owner and permissions for /etc/shadow-'
desc 'Check periodically the owner and permissions for /etc/shadow-'
only_if('/etc/shadow- exists') do
file('/etc/shadow-').exist?
end
describe file('/etc/shadow-') do
it { should be_file }
it { should be_owned_by 'root' }
its('group') { should eq shadow_group }
it { should_not be_executable }
it { should_not be_writable.by('group') }
it { should_not be_writable.by('other') }
it { should_not be_readable.by('other') }
end
end

control 'os-16' do
impact 1.0
title 'Check owner and permissions for /etc/gshadow-'
desc 'Check periodically the owner and permissions for /etc/gshadow-'
only_if('/etc/gshadow- exists') do
file('/etc/gshadow-').exist?
end
describe file('/etc/gshadow-') do
it { should be_file }
it { should be_owned_by 'root' }
its('group') { should eq shadow_group }
it { should_not be_executable }
it { should_not be_writable.by('group') }
it { should_not be_writable.by('other') }
it { should_not be_readable.by('other') }
end
end

control 'os-17' do
impact 1.0
title 'Check owner and permissions for /etc/group'
desc 'Check periodically the owner and permissions for /etc/group'
describe file('/etc/group') do
it { should exist }
it { should be_file }
it { should be_owned_by 'root' }
its('group') { should eq 'root' }
it { should_not be_executable }
it { should be_writable.by('owner') }
it { should be_readable.by('owner') }
it { should_not be_writable.by('group') }
it { should be_readable.by('group') }
it { should_not be_writable.by('other') }
it { should be_readable.by('other') }
end
end

control 'os-18' do
impact 1.0
title 'Check owner and permissions for /etc/passwd-'
desc 'Check periodically the owner and permissions for /etc/passwd-'
only_if('/etc/passwd- exists') do
file('/etc/passwd-').exist?
end
describe file('/etc/passwd-') do
it { should be_file }
it { should be_owned_by 'root' }
its('group') { should eq 'root' }
it { should_not be_executable }
it { should be_writable.by('owner') }
it { should be_readable.by('owner') }
it { should_not be_writable.by('group') }
it { should be_readable.by('group') }
it { should_not be_writable.by('other') }
it { should be_readable.by('other') }
end
end

control 'os-19' do
impact 1.0
title 'Check owner and permissions for /etc/group-'
desc 'Check periodically the owner and permissions for /etc/group-'
only_if('/etc/group- exists') do
file('/etc/group-').exist?
end
describe file('/etc/group-') do
it { should be_owned_by 'root' }
its('group') { should eq 'root' }
it { should_not be_executable }
it { should be_writable.by('owner') }
it { should be_readable.by('owner') }
it { should_not be_writable.by('group') }
it { should be_readable.by('group') }
it { should_not be_writable.by('other') }
it { should be_readable.by('other') }
end
end