-
Notifications
You must be signed in to change notification settings - Fork 706
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12770 from alanmcanonical/ubt24_53341
Ubuntu 24.04: Implement 5.3.3.4.1 Ensure pam_unix does not include nullok
- Loading branch information
Showing
6 changed files
with
111 additions
and
11 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
34 changes: 33 additions & 1 deletion
34
...ccounts/accounts-restrictions/password_storage/no_empty_passwords/tests/no_nullok.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
38 changes: 37 additions & 1 deletion
38
.../accounts-restrictions/password_storage/no_empty_passwords/tests/nullok_commented.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 |
---|---|---|
@@ -1,7 +1,43 @@ | ||
#!/bin/bash | ||
# platform = Oracle Linux 7,Red Hat Virtualization 4,multi_platform_fedora | ||
# platform = Oracle Linux 7,Red Hat Virtualization 4,multi_platform_fedora,multi_platform_ubuntu | ||
# packages = pam | ||
|
||
{{% if 'ubuntu' in product %}} | ||
config_file=/usr/share/pam-configs/tmp_unix | ||
|
||
cat << EOF > "$config_file" | ||
Name: Unix authentication | ||
Default: yes | ||
Priority: 256 | ||
Auth-Type: Primary | ||
Auth: | ||
[success=end default=ignore] pam_unix.so nullok try_first_pass | ||
Auth-Initial: | ||
[success=end default=ignore] pam_unix.so nullok | ||
Account-Type: Primary | ||
Account: | ||
[success=end new_authtok_reqd=done default=ignore] pam_unix.so | ||
Account-Initial: | ||
[success=end new_authtok_reqd=done default=ignore] pam_unix.so | ||
Session-Type: Additional | ||
Session: | ||
required pam_unix.so | ||
Session-Initial: | ||
required pam_unix.so | ||
Password-Type: Primary | ||
Password: | ||
[success=end default=ignore] pam_unix.so obscure use_authtok try_first_pass yescrypt # nullok | ||
Password-Initial: | ||
[success=end default=ignore] pam_unix.so obscure yescrypt # nullok | ||
EOF | ||
|
||
DEBIAN_FRONTEND=noninteractive pam-auth-update --enable tmp_unix | ||
|
||
rm "$config_file" | ||
|
||
{{% else %}} | ||
for pam_file in /etc/pam.d/system-auth /etc/pam.d/password-auth; do | ||
sed -i --follow-symlinks '/nullok/d' $pam_file | ||
echo "# auth sufficient pam_unix.so try_first_pass nullok" >> $pam_file | ||
done | ||
{{% endif %}} |
39 changes: 33 additions & 6 deletions
39
...ts/accounts-restrictions/password_storage/no_empty_passwords/tests/nullok_present.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 |
---|---|---|
@@ -1,17 +1,44 @@ | ||
#!/bin/bash | ||
# platform = Oracle Linux 7,Red Hat Virtualization 4,multi_platform_fedora,multi_platform_ubuntu | ||
# packages = pam | ||
|
||
{{% if 'ubuntu' in product %}} | ||
for FILE in "/etc/pam.d/common-password"; do | ||
if ! grep -q "^[^#].*pam_unix\.so.*nullok" ${FILE}; then | ||
sed -i 's/\([\s]pam_unix\.so\)/\1 nullok/g' ${FILE} | ||
fi | ||
done | ||
config_file=/usr/share/pam-configs/tmp_unix | ||
|
||
cat << EOF > "$config_file" | ||
Name: Unix authentication | ||
Default: yes | ||
Priority: 256 | ||
Auth-Type: Primary | ||
Auth: | ||
[success=end default=ignore] pam_unix.so nullok try_first_pass | ||
Auth-Initial: | ||
[success=end default=ignore] pam_unix.so nullok | ||
Account-Type: Primary | ||
Account: | ||
[success=end new_authtok_reqd=done default=ignore] pam_unix.so | ||
Account-Initial: | ||
[success=end new_authtok_reqd=done default=ignore] pam_unix.so | ||
Session-Type: Additional | ||
Session: | ||
required pam_unix.so | ||
Session-Initial: | ||
required pam_unix.so | ||
Password-Type: Primary | ||
Password: | ||
[success=end default=ignore] pam_unix.so obscure use_authtok try_first_pass yescrypt nullok | ||
Password-Initial: | ||
[success=end default=ignore] pam_unix.so obscure yescrypt nullok | ||
EOF | ||
|
||
DEBIAN_FRONTEND=noninteractive pam-auth-update --enable tmp_unix | ||
|
||
rm "$config_file" | ||
{{% else %}} | ||
SYSTEM_AUTH_FILE="/etc/pam.d/system-auth" | ||
|
||
if ! $(grep -q "^[^#].*pam_unix\.so.*nullok" $SYSTEM_AUTH_FILE); then | ||
sed -i --follow-symlinks 's/\([\s].*pam_unix\.so.*\)\s\(try_first_pass.*\)/\1nullok \2/' $SYSTEM_AUTH_FILE | ||
sed -i --follow-symlinks 's/\(^[^#].*pam_unix\.so.*\)\s\(try_first_pass.*\)/\1nullok \2/' $SYSTEM_AUTH_FILE | ||
fi | ||
{{% endif %}} | ||
|
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