-
Notifications
You must be signed in to change notification settings - Fork 704
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ubuntu 22.04 5.4.2.4 Ensure root account access is controlled
- Loading branch information
1 parent
bc0a4a0
commit ca29437
Showing
7 changed files
with
73 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
.../accounts/accounts-restrictions/root_logins/ensure_root_access_controlled/oval/shared.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<def-group> | ||
<definition class="compliance" id="{{{ rule_id }}}" version="1"> | ||
{{{ oval_metadata("Ensure root account access is controlled") }}} | ||
<criteria> | ||
<criterion comment="verify root password is set" | ||
test_ref="test_root_access_controlled_etc_shadow" /> | ||
</criteria> | ||
</definition> | ||
<ind:textfilecontent54_test check="all" check_existence="only_one_exists" | ||
version="1" id="test_root_access_controlled_etc_shadow" | ||
comment="make sure root password is set in /etc/shadow"> | ||
<ind:object object_ref="obj_root_access_controlled_etc_shadow" /> | ||
</ind:textfilecontent54_test> | ||
<ind:textfilecontent54_object id="obj_root_access_controlled_etc_shadow" version="1"> | ||
<ind:filepath>/etc/shadow</ind:filepath> | ||
<ind:pattern operation="pattern match">^root:(\$(y|[0-9].+)\$|!.*|\*.*).*$</ind:pattern> | ||
<ind:instance datatype="int">1</ind:instance> | ||
</ind:textfilecontent54_object> | ||
</def-group> |
31 changes: 31 additions & 0 deletions
31
.../system/accounts/accounts-restrictions/root_logins/ensure_root_access_controlled/rule.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
documentation_complete: true | ||
|
||
|
||
title: 'Ensure root account access is controlled' | ||
|
||
description: |- | ||
There are a number of methods to access the root account directly. | ||
Without a password set any user would be able to gain access and | ||
thus control over the entire system. | ||
rationale: |- | ||
Access to root should be secured at all times. | ||
severity: medium | ||
|
||
platform: system_with_kernel | ||
|
||
ocil_clause: 'root password is not set or is not locked' | ||
|
||
ocil: |- | ||
Run the following command to verify that either the root user's | ||
password is set or the root user's account is locked: | ||
<pre># passwd -S root | awk '$2 ~ /^(P|L)/ {print "User: \"" $1 "\" Password is status: " $2}'</pre> | ||
Verify the output is either: | ||
User: "root" Password is status: P | ||
- OR - | ||
User: "root" Password is status: L | ||
Note: | ||
- P - Password is set | ||
- L - Password is locked | ||
5 changes: 5 additions & 0 deletions
5
...nts/accounts-restrictions/root_logins/ensure_root_access_controlled/tests/correct.pass.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/bash | ||
# packages = passwd | ||
# platform = multi_platform_all | ||
|
||
sed -i "s/^root:[^:]*/root:\$y\$AAAAAAAAAA/" /etc/shadow |
6 changes: 6 additions & 0 deletions
6
...ounts/accounts-restrictions/root_logins/ensure_root_access_controlled/tests/empty.fail.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/bash | ||
# packages = passwd | ||
# platform = multi_platform_all | ||
# remediation = None | ||
|
||
passwd -d root |
6 changes: 6 additions & 0 deletions
6
...unts/accounts-restrictions/root_logins/ensure_root_access_controlled/tests/locked.pass.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/bash | ||
# packages = passwd | ||
# platform = multi_platform_all | ||
# remediation = None | ||
|
||
passwd -l root |