-
Notifications
You must be signed in to change notification settings - Fork 0
/
RHEL-06-000030.sh
executable file
·79 lines (73 loc) · 2.7 KB
/
RHEL-06-000030.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#!/bin/bash
#
##########################################################################
#Red Hat Enterprise Linux 6 - DISA STIG Compliance Remediation Content
#Copyright (C) 2013
#Vincent C. Passaro ([email protected])
#
##########################################################################
#
###################### Buddha Labs LLC ################################
# By Vincent C. Passaro #
# Buddha Labs LLC. #
# vince[@]buddhalabs[.]com #
# www.buddhalabs.com #
###################### Buddha Labs LLC ################################
#_________________________________________________________________________
# Version | Change Information | Author | Date
#-------------------------------------------------------------------------
# 1.0 | Initial Script Creation | Vincent Passaro | 1-JUNE-2013
#
#
#######################DISA INFORMATION##################################
# Group ID (Vulid): RHEL-06-000030
# Group Title: SRG-OS-999999
#
# Rule ID: RHEL-06-000030_rule
# Severity: high
# Rule Version (STIG-ID): RHEL-06-000030
# Rule Title: The system must not have accounts configured with blank or
# null passwords.
#
# Vulnerability Discussion: If an account has an empty password, anyone
# could log in and run commands with the privileges of that account.
# Accounts with empty passwords should never be used in operational
# environments.
#
# Responsibility:
# IAControls:
#
# Check Content:
#
# To verify that null passwords cannot be used, run the following
# command:
# grep nullok /etc/pam.d/system-auth /etc/pam.d/system-auth-ac
# If this produces any output, it may be possible to log into accounts with
# empty passwords.
# If NULL passwords can be used, this is a finding.
#
# Fix Text:
#
# If an account is configured for password authentication but does not
# have an assigned password, it may be possible to log into the account
# without authentication. Remove any instances of the "nullok" option in
# "/etc/pam.d/system-auth-ac" to prevent logins with empty passwords.
#######################DISA INFORMATION##################################
#
# Global Variables
PDI=RHEL-06-000030
SEVERITY=high
#
#BEGIN_CHECK
. ./aqueduct_functions
PKG_CONFIG="/etc/pam.d/*"
MOD_MSG="PAM disable empty password support"
if grep -q 'nullok' $PKG_CONFIG; then
#END_CHECK
#BEGIN_REMEDY
sed -i 's/ nullok//g' $PKG_CONFIG
show_message $PDI "$MOD_MSG" fixed
else
show_message $PDI "$MOD_MSG" pass
fi
#END_REMEDY