Welcome to mirror list, hosted at ThFree Co, Russian Federation.

tests_printers_spools « include - github.com/CISOfy/lynis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1a5fdac6b28c13831bbed71a648fe11acba5c505 (plain)
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
#!/bin/sh

#################################################################################
#
#   Lynis
# ------------------
#
# Copyright 2007-2014, Michael Boelen (michael@rootkit.nl), The Netherlands
# Web site: http://www.rootkit.nl
#
# Lynis comes with ABSOLUTELY NO WARRANTY. This is free software, and you are
# welcome to redistribute it under the terms of the GNU General Public License.
# See LICENSE file for usage of this software.
#
#################################################################################
#
# Printers and spools
#
#################################################################################
#
    CUPSD_CONFIG_LOCS="/etc/cups /usr/local/etc/cups"
    CUPSD_CONFIG_FILE=""
    CUPSD_RUNNING=0
    CUPSD_FOUND=0
    LPD_RUNNING=0
    PRINTING_DAEMON=""
#
#################################################################################
#
    InsertSection "Printers and Spools"
#
#################################################################################
#
    # Test        : PRNT-2302
    # Description : Check printcap file consistency
    Register --test-no PRNT-2302 --os FreeBSD --weight L --network NO --description "Check for available accounting information"
    if [ ${SKIPTEST} -eq 0 ]; then
        logtext "Test: Searching /usr/sbin/chkprintcap"
        if [ ! -f /usr/sbin/chkprintcap ]; then
            Display --indent 2 --text "- Checking chkprintcap..." --result "NOT FOUND" --color WHITE
            logtext "Result: /usr/sbin/chkprintcap NOT found, test skipped."
          else
            logtext "Result: /usr/sbin/chkprintcap found"
            FIND=`/usr/sbin/chkprintcap > /dev/null ; echo $?`
            # Only an exit code of zero should come back. Use string instead of integer, due unexpected trash
            if [ "${FIND}" = "0" ]; then
                Display --indent 2 --text "- Integrity check of printcap file" --result OK --color GREEN
                logtext "Result: chkprintcap did NOT gave any warnings"
              else
                Display --indent 2 --text "- Integrity check of printcap file" --result WARNING --color RED
                ReportSuggestion ${TEST_NO} "Run chkprintcap manually to test printcap file"
                logtext "Output from chkprintcap: ${FIND}"
                logtext "Run chkprintcap and check the /etc/printcap file."
            fi
        fi
    fi
#
#################################################################################
#
    # Test        : PRNT-2304
    # Description : Check cupsd status
    Register --test-no PRNT-2304 --weight L --network NO --description "Check cupsd status"
    if [ ${SKIPTEST} -eq 0 ]; then
        logtext "Test: Checking cupsd status"
        FIND=`${PSBINARY} ax | grep "cupsd" | grep -v "grep" | grep -v apcupsd`
        if [ ! "${FIND}" = "" ]; then
            Display --indent 2 --text "- Checking cups daemon..." --result RUNNING --color GREEN
            logtext "Result: cups daemon running"
            CUPSD_RUNNING=1; PRINTING_DAEMON="cups"
          else
            Display --indent 2 --text "- Checking cups daemon..." --result "NOT FOUND" --color WHITE
            logtext "Result: cups daemon not running, cups daemon tests skipped"
        fi
    fi
#
#################################################################################
#
    # Test        : PRNT-2306
    # Description : Check CUPSd configuration file
    if [ ${CUPSD_RUNNING} -eq 1 ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
    Register --test-no PRNT-2306 --preqs-met ${PREQS_MET} --weight L --network NO --description "Check CUPSd configuration file"
    if [ ${SKIPTEST} -eq 0 ]; then
        logtext "Test: Searching cupsd configuration file"
        for I in ${CUPSD_CONFIG_LOCS}; do
            if [ -f ${I}/cupsd.conf ]; then
                CUPSD_CONFIG_FILE="${I}/cupsd.conf"
                logtext "Result: found ${CUPSD_CONFIG_FILE}"
            fi
        done
        if [ ! "${CUPSD_CONFIG_FILE}" = "" ]; then
            Display --indent 2 --text "- Checking CUPS configuration file..." --result OK --color GREEN
            logtext "Result: configuration file found (${CUPSD_CONFIG_FILE})"
            CUPSD_FOUND=1
          else
            Display --indent 2 --text "- Checking CUPS configuration file..." --result "NOT FOUND" --color RED
            logtext "Result: configuration file not found"
            logtext "Development: no CUPS configuration file found"
        fi
    fi
#
#################################################################################
#
    # Test        : PRNT-2307
    # Description : Check CUPSd configuration file permissions
    if [ ${CUPSD_FOUND} -eq 1 ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
    Register --test-no PRNT-2307 --preqs-met ${PREQS_MET} --weight L --network NO --description "Check CUPSd configuration file permissions"
    if [ ${SKIPTEST} -eq 0 ]; then
        logtext "Test: Checking CUPS configuration file permissions"
        FIND=`ls -l ${CUPSD_CONFIG_FILE} | cut -c 2-10`
        logtext "Result: found ${FIND}"
        if [ "${FIND}" = "r--------" -o "${FIND}" = "rw-------" -o "${FIND}" = "rw-rw----" ]; then
            Display --indent 4 --text "- File permissions" --result "OK" --color GREEN
            AddHP 1 1
          else
            Display --indent 4 --text "- File permissions" --result "WARNING" --color RED
            ReportSuggestion ${TEST_NO} "Access to CUPS configuration could be more strict."
            AddHP 1 2
        fi
    fi
#
#################################################################################
#
    # Test        : PRNT-2308
    # Description : Check CUPS daemon network configuration
    if [ ${CUPSD_FOUND} -eq 1 ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
    Register --test-no PRNT-2308 --preqs-met ${PREQS_MET} --weight L --network NO --description "Check CUPSd network configuration"
    if [ ${SKIPTEST} -eq 0 ]; then
        FOUND=0
        # Checking network addresses
        logtext "Test: Checking CUPS daemon listening network addresses"
        FIND=`grep "^Listen" ${CUPSD_CONFIG_FILE} | grep -v "/" | awk '{ print $2 }'`
        N=0
        for I in ${FIND}; do
            logtext "Found network address: ${I}"
            N=`expr ${N} + 1`
            FOUND=1
        done
        if [ ${FOUND} -eq 0 ]; then
           ReportException "${TEST_NO}:1" "No listen statement found in CUPS configuration file"
        fi

        # Check if daemon is only running on localhost
        if [ ${N} -eq 1 ]; then
            if [ "${FIND}" = "localhost:631" -o "${FIND}" = "127.0.0.1:631" ]; then
                logtext "Result: CUPS daemon only running on localhost"
                AddHP 2 2
              else
                logtext "Result: CUPS daemon running on one or more interfaces (not limited to localhost)"
                ReportSuggestion ${TEST_NO} "Check CUPS configuration if it really needs to listen on the network"
                AddHP 1 2
            fi
          else
            logtext "Result: CUPS daemon is running on several network addresses"
            ReportSuggestion ${TEST_NO} "Check CUPS configuration if it really needs to run on several network addresses"
            AddHP 1 2
        fi

        # Checking sockets
        logtext "Test: Checking cups daemon listening sockets"
        FIND=`grep "^Listen" ${CUPSD_CONFIG_FILE} | grep "/" | awk '{ print $2 }'`
        for I in ${FIND}; do
            logtext "Found socket address: ${I}"
            N=`expr ${N} + 1`
        done

        if [ ${N} -eq 0 ]; then
            Display --indent 2 --text "- Checking CUPS addresses/sockets..." --result "NONE" --color WHITE
            logtext "Result: no addresses found on which CUPS daemon is listening"
          else
            Display --indent 2 --text "- Checking CUPS addresses/sockets..." --result "FOUND" --color GREEN
            logtext "Result: CUPS daemon is listening on network/socket"
        fi
    fi
#
#################################################################################
#
    # Test        : PRNT-2314
    # Description : Check lpd status
    Register --test-no PRNT-2314 --weight L --network NO --description "Check lpd status"
    if [ ${SKIPTEST} -eq 0 ]; then
        logtext "Test: Checking lpd status"
        IsRunning lpd
        if [ ${RUNNING} -eq 1 ]; then
            Display --indent 2 --text "- Checking lp daemon" --result RUNNING --color GREEN
            logtext "Result: lp daemon running"
            LPD_RUNNING=1; PRINTING_DAEMON="lp"
          else
            Display --indent 2 --text "- Checking lp daemon" --result "NOT RUNNING" --color WHITE
            logtext "Result: lp daemon not running"
            AddHP 4 4
        fi
    fi
#
#################################################################################
#
    # Test        : PRNT-23xx
    # Description : Test Linux printcap file
    #if [ ${CUPSD_RUNNING} -eq 1 -a ! "${CUPSD_CONFIG_FILE}" = "" ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
    #Register --test-no PRNT-23xx--preqs-met ${PREQS_MET} --weight L --network NO --description "Check cupsd address configuration"
    #if [ ${SKIPTEST} -eq 0 ]; then
    #if [ "${OS}" = "Linux" ]; then
    #    echo "        - Testing printcap file... [Test not implemented yet]"
    #    # Check printcap with checkpc command
    #fi
#
#################################################################################
#

report "printing_daemon=${PRINTING_DAEMON}"

wait_for_keypress

#
#================================================================================
# Lynis - Copyright 2007-2014, Michael Boelen - www.rootkit.nl - The Netherlands