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

tests_nameservices « include - github.com/CISOfy/lynis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f2e72ee9f077f1b6c83da8733197d98cd7e99d9d (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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
#!/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.
#
#################################################################################
#
# Name services
#
#################################################################################
#
    InsertSection "Software: name services"
#
#################################################################################
#
    BIND_RUNNING=0
    BIND_CONFIG_LOCS="/etc /etc/bind /usr/local/etc"
    BIND_CONFIG_LOCATIONS=""
    POWERDNS_RUNNING=0
    POWERDNS_CONFIG_LOCS="/etc/powerdns /usr/local/etc"
    POWERDNS_AUTH_CONFIG_LOCATION=""
    POWERDNS_AUTH_MASTER=0
    POWERDNS_AUTH_SLAVE=0
    YPBIND_RUNNING=0
#
#################################################################################
#
    # Test        : NAME-4016
    # Description : Check main domain (domain <domain name> in /etc/resolv.conf)
    Register --test-no NAME-4016 --weight L --network NO --description "Check /etc/resolv.conf default domain"
    if [ ${SKIPTEST} -eq 0 ]; then
        logtext "Test: check /etc/resolv.conf for default domain"
        if [ -f /etc/resolv.conf ]; then
            logtext "Result: /etc/resolv.conf found"
            FIND=`cat /etc/resolv.conf | grep "^domain" | awk '{ print $2 }'`
            if [ "${FIND}" = "" ]; then
                logtext "Result: no default domain found"
                Display --indent 2 --text "- Checking default DNS search domain..." --result NONE --color WHITE
              else
                logtext "Result: found default domain"
                logtext "Output: ${FIND}"
                report "resolv_conf_domain=${FIND}"
                Display --indent 2 --text "- Checking default DNS search domain..." --result FOUND --color GREEN
                RESOLV_DOMAINNAME="${FIND}"
            fi
        fi
    fi
#
#################################################################################
#
    # Test        : NAME-4018
    # Description : Check search domains in /etc/resolv.conf
    # Notes       : Maximum of one search keyword is allowed in /etc/resolv.conf
    Register --test-no NAME-4018 --weight L --network NO --description "Check /etc/resolv.conf search domains"
    if [ ${SKIPTEST} -eq 0 ]; then
        N=0
        logtext "Test: check /etc/resolv.conf for search domains"
        if [ -f /etc/resolv.conf ]; then
            logtext "Result: /etc/resolv.conf found"
            FIND=`cat /etc/resolv.conf | grep "^search" | sed 's/^search //'`
            if [ "${FIND}" = "" ]; then
                logtext "Result: no search domains found, default domain is being used"
              else
                for I in ${FIND}; do
                    logtext "Found search domain: ${I}"
                    report "resolv_conf_search_domain[]=${I}"
                    N=`expr ${N} + 1`
                done
                # Warn if we have more than 6 search domains, which is maximum in most resolvers
                if [ ${N} -gt 6 ]; then
                    logtext "Result: Found ${N} search domains"
                    Display --indent 2 --text "- Checking search domains..." --result WARNING --color YELLOW
                    ReportWarning ${TEST_NO} "L" "Found more than 6 search domains, which is usually more than the maximum allowed number in most resolvers"
                  else
                    logtext "Result: Found ${N} search domains"
                    Display --indent 2 --text "- Checking search domains..." --result FOUND --color GREEN
                fi
            fi
          else
            logtext "Result: /etc/resolv.conf does not exist, skipping test"
            Display --indent 2 --text "- Checking search domains..." --result "NOT FOUND" --color YELLOW
        fi

        # Check amount of search domains (max 1)
            FIND=`cat /etc/resolv.conf | grep "^search" | wc -l | tr -s ' ' | tr -d ' '`
            if [ ! "${FIND}" = "0" -a ! "${FIND}" = "1" ]; then
                logtext "Result: found ${FIND} line(s) with a search statement (expecting less than 2 lines)"    
                Display --indent 4 --text "- Checking search domains lines..." --result "CONFIG ERROR" --color YELLOW
                ReportWarning ${TEST_NO} "L" "Found more than 1 search lines in /etc/resolv.conf, which is probably a misconfiguration"
              else
                logtext "Result: found ${FIND} line(s) with a search statement (expecting less than 2 lines)"
            fi
    fi
#
#################################################################################
#
    # Test        : NAME-4020
    # Description : Check non default resolv.conf options
    Register --test-no NAME-4020 --weight L --network NO --description "Check non default options"
    if [ ${SKIPTEST} -eq 0 ]; then
        logtext "Test: check /etc/resolv.conf for non default options"
        if [ -f /etc/resolv.conf ]; then
            logtext "Result: /etc/resolv.conf found"
            FIND=`grep "^options" /etc/resolv.conf | awk '{ print $2 }'`
            if [ "${FIND}" = "" ]; then
                logtext "Result: no specific other options configured in /etc/resolv.conf"
                Display --indent 2 --text "- Checking /etc/resolv.conf options..." --result "NONE" --color WHITE
              else
                for I in ${FIND}; do
                    logtext "Found option: ${I}"
                    report "resolv_conf_option[]=${I}"
                    #rotate --> add performance tune point
                    #timeout <3 --> add performe tune point
                done
                Display --indent 2 --text "- Checking /etc/resolv.conf options..." --result "FOUND" --color GREEN
            fi
          else
            logtext "Result: /etc/resolv.conf not found, test skipped"
            Display --indent 2 --text "- Checking /etc/resolv.conf options..." --result "NOT FOUND" --color YELLOW
        fi
    fi
#
#################################################################################
#
    # Test        : NAME-4024
    # Description : Check Solaris uname -n output
    Register --test-no NAME-4024 --os Solaris --weight L --network NO --description "Solaris uname -n output"
    if [ ${SKIPTEST} -eq 0 ]; then
        FIND=`uname -n`
        logtext "Result: 'uname -n' returned ${FIND}"
        Display --indent 2 --text "- Checking uname -n output..." --result DONE --color GREEN
    fi
#
#################################################################################
#
    # Test        : NAME-4026
    # Description : Check Solaris /etc/nodename
    # Notes       : If a system is standalone, /etc/nodename should contain a system name only, not FQDN
    Register --test-no NAME-4026 --os Solaris --weight L --network NO --description "Check /etc/nodename"
    if [ ${SKIPTEST} -eq 0 ]; then
        logtext "Test: checking /etc/nodename"
        if [ -f /etc/nodename ]; then
            logtext "Result: file /etc/nodename exists"
            FIND=`cat /etc/nodename`
            logtext "Output: ${FIND}"
            Display --indent 2 --text "- Checking /etc/nodename..." --result "DONE" --color GREEN
          else
            logtext "Result: file /etc/nodename could not be found"
            Display --indent 2 --text "- Checking /etc/nodename..." --result "NONE FOUND" --color YELLOW
        fi
    fi
#
#################################################################################
#
    # Test        : NAME-4028
    # Description : Check DNS domain name
    # To Do       : grep ^DOMAINNAME /etc/conf.d/domainname (remove "'s)
    Register --test-no NAME-4028 --weight L --network NO --description "Check domain name"
    if [ ${SKIPTEST} -eq 0 ]; then
        DOMAINNAME=""
        # NIS
        #logtext "Test: Checking file /etc/domainname"
        #if [ -f /etc/domainname ]; then
        #    logtext "Result: file /etc/domainname exists"
        #    FIND2=`cat /etc/domainname`
        #        if [ ! "${FIND}" = "" ]; then
        #        logtext "Found domain name: ${FIND}"
        #        DOMAINNAME="${FIND}"
        #      else
        #        logtext "Result: no domain name found in file"
        #    fi
        #  else
        #    logtext "Result: file /etc/domainname does not exist"
        #fi

        logtext "Test: Checking if dnsdomainname command is available"
        if [ ! "${DNSDOMAINNAMEBINARY}" = "" ]; then
            FIND2=`${DNSDOMAINNAMEBINARY} 2> /dev/null`
            if [ ! "${FIND2}" = "" ]; then
                logtext "Result: dnsdomainname command returned a value"
                logtext "Found domain name: ${FIND2}"
                DOMAINNAME="${FIND2}"
              else
                logtext "Result: dnsdomainname command returned no value"
            fi
          else
            logtext "Result: dnsdomainname binary not found, skip specific test"
        fi

        # If files and commands can't be found, use defined value from resolv.conf
        if [ "${DOMAINNAME}" = "" ]; then
            if [ ! "${RESOLV_DOMAINNAME}" = "" ]; then
                logtext "Result: using domain name from /etc/resolv.conf"
                DOMAINNAME=${RESOLV_DOMAINNAME}
              else
                logtext "Result: using domain name from FQDN hostname"
                DOMAINNAME=${FQDN#${HOSTNAME}.}
            fi
        fi

        if [ ! "${DOMAINNAME}" = "" ]; then
            logtext "Result: found domain name"
            report "domainname=${DOMAINNAME}"
            Display --indent 2 --text "- Searching DNS domain name..." --result "FOUND" --color GREEN
            Display --indent 6 --text "Domain name: ${DOMAINNAME}"
          else
            Display --indent 2 --text "- Searching DNS domain name..." --result "UNKNOWN" --color YELLOW
            ReportSuggestion ${TEST_NO} "Check DNS configuration for the dns domain name"
        fi
    fi
#
#################################################################################
#
    # Test        : NAME-4032
    # Description : Check name service caching daemon (NSCD) status
    Register --test-no NAME-4032 --weight L --network NO --description "Check nscd status"
    if [ ${SKIPTEST} -eq 0 ]; then
        logtext "Test: checking nscd status"
        FIND=`${PSBINARY} ax | grep "nscd" | grep -v "grep"`
        if [ ! "${FIND}" = "" ]; then
            logtext "Result: nscd is running"
            Display --indent 2 --text "- Checking nscd status..." --result RUNNING --color GREEN
          else
            logtext "Result: nscd is not running"
            Display --indent 2 --text "- Checking nscd status..." --result "NOT FOUND" --color WHITE
            #YYY show performance suggestion if LDAP is used
        fi
    fi
#
#################################################################################
#
    # Test        : NAME-4202
    # Description : Check if BIND is running
    Register --test-no NAME-4202 --weight L --network NO --description "Check BIND status"
    if [ ${SKIPTEST} -eq 0 ]; then
        logtext "Test: Checking for running BIND instance"
        FIND=`${PSBINARY} ax | grep "/named" | grep -v "grep"`
        if [ ! "${FIND}" = "" ]; then
            logtext "Result: found BIND process"
            Display --indent 2 --text "- Checking BIND status..." --result "FOUND" --color GREEN
            BIND_RUNNING=1
          else
            logtext "Result: BIND not running"
            Display --indent 2 --text "- Checking BIND status..." --result "NOT FOUND" --color WHITE
        fi
    fi
#
#################################################################################
#
    # Test        : NAME-4204
    # Description : Check configuration file of BIND
    if [ ${BIND_RUNNING} -eq 1 ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
    Register --test-no NAME-4204 --preqs-met ${PREQS_MET} --weight L --network NO --description "Search BIND configuration file"
    if [ ${SKIPTEST} -eq 0 ]; then
        logtext "Test: Search BIND configuration file"
        #YYY add chrooted environments
        for I in ${BIND_CONFIG_LOCS}; do
            if [ -f ${I}/named.conf ]; then
                BIND_CONFIG_LOCATION="${I}/named.conf"
                logtext "Result: found configuration file (${BIND_CONFIG_LOCATION})"
            fi
        done
        if [ ! "${BIND_CONFIG_LOCATION}" = "" ]; then
            Display --indent 4 --text "- Checking BIND configuration file..." --result "FOUND" --color GREEN
          else
            Display --indent 4 --text "- Checking BIND configuration file..." --result "NOT FOUND" --color YELLOW
        fi
    fi
#
#################################################################################
#
    # Test        : NAME-4206
    # Description : Check BIND configuration file consistency
    if [ ${BIND_RUNNING} -eq 1 -a ! "${BIND_CONFIG_LOCATION}" = "" ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
    Register --test-no NAME-4206 --preqs-met ${PREQS_MET} --weight L --network NO --description "Check BIND configuration consistency"
    if [ ${SKIPTEST} -eq 0 ]; then
        logtext "Test: searching for named-checkconf binary"
        if [ ! "${NAMEDCHECKCONFBINARY}" = "" ]; then
            logtext "Result: named-checkconf is installed"
            FIND=`${NAMEDCHECKCONFBINARY} ${BIND_CONFIG_LOCATION}; echo $?`
            if [ "${FIND}" = "0" ]; then
                logtext "Result: configuration file ${BIND_CONFIG_LOCATION} seems to be fine"
                Display --indent 4 --text "- Checking BIND configuration consistency..." --result "OK" --color GREEN
              else
                logtext "Result: possible errors found in ${BIND_CONFIG_LOCATION}"
                Display --indent 4 --text "- Checking BIND configuration consistency..." --result WARNING --color RED
                ReportWarning ${TEST_NO} "Errors discovered in BIND configuration file"
            fi
          else
            logtext "Result: named-checkconf not found, skipping test"
        fi
    fi
#
#################################################################################
#
    # Test        : NAME-4208
    # Description : Check DNS server type (master, slave, caching, forwarding)
    #Register --test-no NAME-4050 --weight L --network NO --description "Check nscd status"
    #if [ ${SKIPTEST} -eq 0 ]; then
#
#################################################################################
#
    # Test        : NAME-4210
    # Description : Check if we can determine useful information from banner
    if [ ${BIND_RUNNING} -eq 1 -a ! "${BIND_CONFIG_LOCATION}" = "" -a ! "${DIGBINARY}" = "" ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
    Register --test-no NAME-4210 --preqs-met ${PREQS_MET} --weight L --network NO --description "Check DNS banner"
    if [ ${SKIPTEST} -eq 0 ]; then
        logtext "Test: Trying to determine version from banner"
        FIND=`${DIGBINARY} @localhost version.bind chaos txt | grep "^version.bind" | grep TXT | egrep "[0-9].[0-9].[0-9]*"`
        if [ "${FIND}" = "" ]; then
            logtext "Result: no useful information in banner found"
            Display --indent 4 --text "- Checking BIND version in banner ..." --result "OK" --color GREEN
            AddHP 2 2
          else
            logtext "Result: possible BIND version available in version banner"
            Display --indent 4 --text "- Checking BIND version in banner..." --result WARNING --color RED
            ReportWarning ${TEST_NO} "M" "Found BIND version in banner"
            ReportSuggestion ${TEST_NO} "The version in BIND can be masked by defining 'version none' in the configuration file"
            AddHP 0 2
        fi
    fi
#
#################################################################################
#
    # Test        : NAME-4212
    # Description : Check version option in BIND configuration
    #if [ ${BIND_RUNNING} -eq 1 -a ! "${BIND_CONFIG_LOCATION}" = "" -a ! "${DIGBINARY}" = "" ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
    #Register --test-no NAME-4210 --preqs-met ${PREQS_MET} --weight L --network NO --description "Check DNS banner"
#
#################################################################################
#
    # Test        : NAME-4220
    # Description : Check if we can perform a zone transfer of primary domain
    #Register --test-no NAME-4220 --weight L --network NO --description "Check zone transfer"
    #if [ ${SKIPTEST} -eq 0 ]; then
#
#################################################################################
#
    # Test        : NAME-4222
    # Description : Check if we can perform a zone transfer of PTR (of primary domain)
    #Register --test-no NAME-4222 --weight L --network NO --description "Check zone transfer"
    #if [ ${SKIPTEST} -eq 0 ]; then
#
#################################################################################
#
    # Test        : NAME-4230
    # Description : Check if PowerDNS is running
    Register --test-no NAME-4230 --weight L --network NO --description "Check PowerDNS status"
    if [ ${SKIPTEST} -eq 0 ]; then
        logtext "Test: Checking for running PowerDNS instance"
        FIND=`${PSBINARY} ax | grep "/pdns_server" | grep -v "grep"`
        if [ ! "${FIND}" = "" ]; then
            logtext "Result: found PowerDNS process"
            Display --indent 2 --text "- Checking PowerDNS status..." --result "RUNNING" --color GREEN
            POWERDNS_RUNNING=1
          else
            logtext "Result: PowerDNS not running"
            Display --indent 2 --text "- Checking PowerDNS status..." --result "NOT FOUND" --color WHITE
        fi
    fi
#
#################################################################################
#
    # Test        : NAME-4232
    # Description : Check PowerDNS configuration file
    if [ ${POWERDNS_RUNNING} -eq 1 ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
    Register --test-no NAME-4232 --preqs-met ${PREQS_MET} --weight L --network NO --description "Search PowerDNS configuration file"
    if [ ${SKIPTEST} -eq 0 ]; then
        logtext "Test: Search PowerDNS configuration file"
        #YYY add chrooted environments
        for I in ${POWERDNS_CONFIG_LOCS}; do
            if [ -f ${I}/pdns.conf ]; then
                POWERDNS_AUTH_CONFIG_LOCATION="${I}/pdns.conf"
                logtext "Result: found configuration file (${POWERDNS_AUTH_CONFIG_LOCATION})"		
            fi
        done
        if [ ! "${POWERDNS_AUTH_CONFIG_LOCATION}" = "" ]; then
            Display --indent 4 --text "- Checking PowerDNS configuration file..." --result "FOUND" --color GREEN
          else
            Display --indent 4 --text "- Checking PowerDNS configuration file..." --result "NOT FOUND" --color YELLOW
        fi
    fi
#
#################################################################################
#
#    # Test        : NAME-4234
#    # Description : Check PowerDNS configuration file consistency
#    if [ ${POWERDNS_RUNNING} -eq 1 -a ! "${POWERDNS_AUTH_CONFIG_LOCATION}" = "" ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
#    Register --test-no NAME-4234 --weight L --network NO --description "Check PowerDNS configuration consistency"
#    if [ ${SKIPTEST} -eq 0 ]; then
#    fi
#
#################################################################################
#
    # Test        : NAME-4236
    # Description : Check PowerDNS server backends
    if [ ${POWERDNS_RUNNING} -eq 1 -a ! "${POWERDNS_AUTH_CONFIG_LOCATION}" = "" ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
    Register --test-no NAME-4236 --preqs-met ${PREQS_MET} --weight L --network NO --description "Check PowerDNS backends"
    if [ ${SKIPTEST} -eq 0 ]; then
        logtext "Test: Checking for PowerDNS backends"
        FIND=`cat ${POWERDNS_AUTH_CONFIG_LOCATION} | grep "^launch" | awk -F= '{ print $2 }'`
        if [ ! "${FIND}" = "" ]; then
            for I in ${FIND}; do
                logtext "Found backend: ${I}"
            done
            Display --indent 4 --text "- Checking PowerDNS backends..." --result "FOUND" --color GREEN
          else
            logtext "Result: no PowerDNS backends found"
            Display --indent 4 --text "- Checking PowerDNS backends..." --result "NOT FOUND" --color YELLOW
        fi
    fi
#
#################################################################################
#
    # Test        : NAME-4238
    # Description : Check PowerDNS authoritive status
    if [ ${POWERDNS_RUNNING} -eq 1 -a ! "${POWERDNS_AUTH_CONFIG_LOCATION}" = "" ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
    Register --test-no NAME-4238 --preqs-met ${PREQS_MET} --weight L --network NO --description "Check PowerDNS authoritive status"
    if [ ${SKIPTEST} -eq 0 ]; then
        logtext "Test: Checking for PowerDNS master status"
        FIND=`cat ${POWERDNS_AUTH_CONFIG_LOCATION} | grep "^master=yes"`
        if [ ! "${FIND}" = "" ]; then
            logtext "Found master=yes in configuration file"
            Display --indent 4 --text "- PowerDNS authoritive master: YES"
            POWERDNS_AUTH_MASTER=1
          else
            logtext "Result: most likely not master (no master=yes)"
            Display --indent 4 --text "- PowerDNS authoritive master: NO"
        fi
        logtext "Test: Checking for PowerDNS slave status"
        FIND=`cat ${POWERDNS_AUTH_CONFIG_LOCATION} | grep "^slave=yes"`
        if [ ! "${FIND}" = "" ]; then
            logtext "Found slave=yes in configuration file"
            Display --indent 4 --text "- PowerDNS authoritive slave: YES"
            POWERDNS_AUTH_SLAVE=1
          else
            logtext "Result: most likely not slave (no slave=yes)"
            Display --indent 4 --text "- PowerDNS authoritive slave: NO"
        fi
    fi
#
#################################################################################
#
    # Test        : NAME-4302
    # Description : Check NIS ypbind daemon status
    Register --test-no NAME-4304 --weight L --network NO --description "Check NIS ypbind status"
    if [ ${SKIPTEST} -eq 0 ]; then
        logtext "Test: Checking status of ypbind daemon"
        FIND=`${PSBINARY} ax | grep "ypbind" | grep -v "grep"`
        if [ ! "${FIND}" = "" ]; then
            logtext "Result: ypbind is running"
            Display --indent 2 --text "- Checking ypbind status..." --result "FOUND" --color GREEN
            YPBIND_RUNNING=1
            ReportSuggestion "Disable the usage of NIS/NIS+ and use an alternative like LDAP or Kerberos instead"
          else
            logtext "Result: ypbind is not active"
            Display --indent 2 --text "- Checking ypbind status..." --result "NOT FOUND" --color WHITE
        fi
    fi
#
#################################################################################
#
    # Test        : NAME-4306
    # Description : Check NIS domain
    # Notes       : FreeBSD: sysctl kern.domainname
    if [ ${YPBIND_RUNNING} -eq 1 ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
    Register --test-no NAME-4306 --preqs-met ${PREQS_MET} --weight L --network NO --description "Check NIS domain"
    if [ ${SKIPTEST} -eq 0 ]; then
        logtext "Test: Checking `domainname` for NIS domain value"
        FIND=`${DOMAINNAMEBINARY} | grep -v "(none)"`
        if [ ! "${FIND}" = "" ]; then
            logtext "Value: ${FIND}"
            NISDOMAIN="${FIND}"
          else
            logtext "Result: no NIS domain found in command output"
        fi
        # Solaris / Linux style
        logtext "Test: Checking file /etc/defaultdomain"
        if [ -f /etc/defaultdomain ]; then
            logtext "Result: file /etc/defaultdomain exists"
            FIND2=`cat /etc/defaultdomain`
            if [ ! "${FIND2}" = "" ]; then
                logtext "Output: ${FIND2}"
                NISDOMAIN="${FIND2}"
              else
                logtext "Result: no NIS domain found in file"
            fi
        fi
        # Red Hat style
        logtext "Test: checking /etc/sysconfig/network"
        if [ -f /etc/sysconfig/network ]; then
            logtext "Result: file /etc/sysconfig/network exists"
            logtext "Test: checking NISDOMAIN value in file"
            FIND3=`grep "^NISDOMAIN" /etc/sysconfig/network | awk -F= '{ print $2 }' | sed 's/"//g'`
            if [ ! "${FIND3}" = "" ]; then
                logtext "Found NIS domain: ${FIND3}"
                NISDOMAIN="${FIND3}"
              else
                logtext "Result: No NIS domain found in file"
            fi
          else
            logtext "Result: file /etc/sysconfig/network does not exist"
        fi

        # Check sysctl (e.g. FreeBSD)
        logtext "Test: checking sysctl for kern.domainname"
        FIND=`sysctl -a 2>&1 | grep "^kern.domainname" | awk -F: '{ print $2 }' | sed 's/ //g' | grep -v "^$"`
        if [ ! "${FIND}" = "" ]; then
            logtext "Result: found NIS domain via sysctl"
            NISDOMAIN="${FIND}"
        fi
        # Check if we found any NIS domain
        if [ ! "${NISDOMAIN}" = "" ]; then    
            logtext "Found NIS domain: ${NISDOMAIN}"
            report "nisdomain=${NISDOMAIN}"
            Display --indent 4 --text "- Checking NIS domain..." --result "FOUND" --color GREEN
          else
            logtext "Result: No NIS domain found"
            Display --indent 4 --text "- Checking NIS domain..." --result "UNKNOWN" --color YELLOW
        fi
    fi
#
#################################################################################
#
    if [ -f /etc/hosts ]; then
      Display --indent 2 --text "- Checking /etc/hosts"
    fi

    # Test        : NAME-4402
    # Description : Check /etc/hosts configuration
    Register --test-no NAME-4402 --weight L --network NO --description "Check duplicate line in /etc/hosts"
    if [ ${SKIPTEST} -eq 0 ]; then
        logtext "Test: check duplicate line in /etc/hosts"
        if [ -f /etc/hosts ]; then
            sFIND=`cat /etc/hosts | egrep -v '^(#|$)' | uniq -d`
            if [ "${sFIND}" = "" ]; then
                logtext "Result: OK, no duplicate lines found"
                Display --indent 4 --text "- Checking /etc/hosts (duplicates)" --result OK --color GREEN
              else
                logtext "Found duplicate line: ${sFIND}"
                logtext "Result: found duplicate line"
                Display --indent 4 --text "- Checking /etc/hosts (duplicates)" --result SUGGESTION --color YELLOW
                ReportSuggestion ${TEST_NO} "L" "Remove duplicate lines in /etc/hosts"
            fi
        else
          logtext "Result: /etc/hosts not found, test skipped"
          Display --indent 4 --text "Searching duplicate line..." --result "SKIPPED" --color YELLOW
        fi
     fi
#
#################################################################################
#
    # Test        : NAME-4404
    # Description : Check /etc/hosts contains an entry for this server name
    Register --test-no NAME-4404 --weight L --network NO --description "Check /etc/hosts contains an entry for this server name"
    if [ ${SKIPTEST} -eq 0 ]; then
        logtext "Test: Check /etc/hosts contains an entry for this server name"
        if [ -f /etc/hosts ]; then
            sFIND=`cat /etc/hosts | egrep -v '^(#|$|::1|localhost)' | grep ${HOSTNAME}`
            if [ "${sFIND}" != "" ]; then
                logtext "Result: Found entry for ${HOSTNAME} in /etc/hosts"
                Display --indent 4 --text "- Checking /etc/hosts (hostname)" --result OK --color GREEN
              else
                logtext "Result: No entry found for ${HOSTNAME} in /etc/hosts"
                Display --indent 4 --text "- Checking /etc/hosts (hostname)" --result SUGGESTION --color YELLOW
                ReportSuggestion ${TEST_NO} "Add the IP name and FQDN to /etc/hosts for proper name resolving"
                logtext "Risk: No entry for the server name [hostname] in /etc/hosts may cause unexpected performance problems for local connections"
            fi
         fi
     fi
#
#################################################################################
#
    # Test        : NAME-4406
    # Description : Check server hostname mapping
    Register --test-no NAME-4406 --weight L --network NO --description "Check server hostname mapping"
    if [ ${SKIPTEST} -eq 0 ]; then
        logtext "Test: Check server hostname not locally mapped in /etc/hosts"
        sFIND=`cat /etc/hosts | egrep -v '^(#|$)' | egrep '(localhost|::1)' | grep ${HOSTNAME}`
        if  [ ! "${sFIND}" = "" ]; then
          logtext "Result: Found this server hostname mapped to a local address"
          Display --indent 4 --text "- Checking /etc/hosts (localhost)" --result SUGGESTION --color YELLOW
          logtext "Information: Linking the hostname to the localhost entry may break some resolving. Split resolving so that localhost resolves back to 127.0.0.1 (and ::1) and the hostname of the machine to the real IP address on the network interface."
          ReportSuggestion ${TEST_NO} "Split resolving between localhost and the hostname of the system"
        else
          logtext "Result: this server hostname is not mapped to a local address"
          Display --indent 4 --text "- Checking /etc/hosts (localhost)" --result OK --color GREEN
        fi
    fi
#
#################################################################################
#

wait_for_keypress

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