]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/samhain/templates/samhainrc.erb
ignore a few more plugin symlinks
[dsa-puppet.git] / modules / samhain / templates / samhainrc.erb
1 ##
2 ## THIS FILE IS UNDER PUPPET CONTROL. DON'T EDIT IT HERE.
3 ## USE: git clone git+ssh://$USER@puppet.debian.org/srv/puppet.debian.org/git/dsa-puppet.git
4 ##
5
6 #####################################################################
7 #
8 # Configuration file template for samhain.
9 #
10 #####################################################################
11
12 # -- empty lines and lines starting with '#', ';' or '//' are ignored
13 # -- boolean options can be Yes/No or True/False or 1/0 
14 # -- you can PGP clearsign this file -- samhain will check (if compiled
15 #    with support) or otherwise ignore the signature
16 # -- CHECK mail address
17 #
18 # To each log facility, you can assign a threshold severity. Only
19 # reports with at least the threshold severity will be logged
20 # to the respective facility (even further below).
21 #
22 #####################################################################
23 #
24 # SETUP for file system checking:
25
26 # (i)   There are several policies, each has its own section. Put files
27 #       into the section for the appropriate policy (see below).
28 # (ii)  Section [EventSeverity]: 
29 #       To each policy, you can assign a severity (further below).
30 # (iii) Section [Log]: 
31 #       To each log facility, you can assign a threshold severity. Only
32 #       reports with at least the threshold severity will be logged
33 #       to the respective facility (even further below).
34 #
35 #####################################################################
36
37 #####################################################################
38 #
39 # Files are defined with: file = /absolute/path
40 #
41 # Directories are defined with:                  dir = /absolute/path
42 # or with an optional recursion depth (N <= 99): dir = N/absolute/path
43 #
44 # Directory inodes are checked. If you only want to check files
45 # in a directory, but not the directory inode itself, use (e.g.):
46 #
47 # [ReadOnly]
48 # dir = /some/directory
49 # [IgnoreAll]
50 # file = /some/directory
51 #
52 # You can use shell-style globbing patterns, like: file = /path/foo*
53
54 ######################################################################
55
56 [Misc]
57 ##
58 ## Add or subtract tests from the policies
59 ## - if you want to change their definitions,
60 ##   you need to do that before using the policies
61 ##
62 # RedefReadOnly = (no default)
63 # RedefAttributes=(no default)
64 # RedefLogFiles=(no default)
65 # RedefGrowingLogFiles=(no default)
66 # RedefIgnoreAll=(no default)
67 # RedefIgnoreNone=(no default)
68 # RedefUser0=(no default)
69 # RedefUser1=(no default)
70
71 [Attributes]
72 ##
73 ## for these files, only changes in permissions and ownership are checked
74 ##
75 file=/etc/mtab
76 file=/etc/ssh_random_seed
77 file=/etc/asound.conf
78 file=/etc/resolv.conf
79 file=/etc/localtime
80 file=/etc/ioctl.save
81 file=/etc/passwd.backup
82 file=/etc/shadow.backup
83 file=/etc/postfix/prng_exch
84 file=/etc/adjtime
85 file=/etc/lvm/.cache
86 file=/etc/lvm/cache
87 file=/etc/lvm/cache/.cache
88 file=/etc/network/run/ifstate
89 file=/var/state/samhain/samhain_file
90 file=/etc/bind/zones/db.debian.net
91 file=/etc/exim4/bsmtp
92 <% if hostname == "geo1" || hostname == "geo2" || hostname == "geo3" -%>
93 file=/etc/bind
94 file=/etc/bind/named.conf.acl
95 file=/etc/bind/named.conf.options
96 file=/etc/bind/named.conf.local
97 file=/etc/bind/geodns/named.conf.geo
98 file=/etc/bind/geodns/recvconf.files
99 <% end -%>
100
101
102 #
103 # There are files in /etc that might change, thus changing the directory
104 # timestamps. Put it here as 'file', and in the ReadOnly section as 'dir'.
105 #
106 file=/etc
107 file=/etc/ssh
108 file=/etc/network/run
109 file=/etc/bind/zones
110 file=/etc/spamassassin/sa-update-keys
111
112 # These are the directories for the files we handle with puppet
113 file=/etc/apache2/conf.d
114 files=/etc/apache2/mods-enabled
115 file=/etc/samhain
116 file=/etc/munin
117 file=/etc/munin/plugins
118 file=/etc/exim4
119 file=/etc/exim4/ssl
120 file=/etc/apt
121 file=/etc/apt/apt.conf.d
122 file=/etc/apt/sources.list.d
123 file=/etc/default
124 file=/etc/logrotate.d
125 file=/etc/nagios
126 file=/etc/nagios/nrpe.d
127 file=/etc/nagios/obsolete-packages-ignore.d
128 file=/etc/bind/geodns
129 <%= extradir=""
130 case fqdn 
131 when "spohr.debian.org": extradir="file=/etc/nagios3/puppetconf.d
132 file=/etc/puppet"
133 else extradir="file=/etc/puppet"
134 end
135 extradir
136 %>
137 file=/etc/cron.d
138 file=/usr/lib/nagios/plugins
139 file=/usr/sbin
140 file=/etc/monit
141 file=/etc/monit/monit.d
142 file=/etc/pam.d
143 file=/etc/sysctl.d
144 file=/etc/syslog-ng
145
146
147 [LogFiles]
148 ##
149 ## for these files, changes in signature, timestamps, and size are ignored 
150 ##
151 file=/var/run/utmp
152 file=/etc/motd
153
154
155
156 #####################################################################
157 #
158 # This would be the proper syntax for parts that should only be
159 #    included for certain hosts.
160 # You may enclose anything in a @HOSTNAME/@end bracket, as long as the
161 #    result still has the proper syntax for the config file.
162 # You may have any number of @HOSTNAME/@end brackets.
163 # HOSTNAME should be the fully qualified 'official' name 
164 #    (e.g. 'nixon.watergate.com', not 'nixon'), no aliases. 
165 #    No IP number - except if samhain cannot determine the 
166 #    fully qualified hostname.
167 #
168 # @HOSTNAME
169 # file=/foo/bar
170 # @end
171 #
172 # These are two examples for conditional inclusion/exclusion
173 # of a machine based on the output from 'uname -srm'
174 #
175 # $Linux:2.*.7:i666
176 # file=/foo/bar3
177 # $end
178 #
179 # !$Linux:2.*.7:i686
180 # file=/foo/bar2
181 # $end
182 #
183 #####################################################################
184
185 [GrowingLogFiles]
186 ##
187 ## for these files, changes in signature, timestamps, and increase in size
188 ##                  are ignored 
189 ##
190 file=/var/log/warn
191 file=/var/log/messages
192 file=/var/log/wtmp
193 file=/var/log/faillog
194 file=/var/log/auth.log
195 file=/var/log/daemon.log
196 file=/var/log/user.log
197 file=/var/log/kern.log
198 file=/var/log/syslog
199
200
201 [IgnoreAll]
202 ##
203 ## for these files, no modifications are reported
204 ##
205 ## This file might be created or removed by the system sometimes.
206 ##
207 file=/etc/resolv.conf.pcmcia.save
208 file=/etc/nologin
209 file=/etc/postfix/debian.db
210 file=/etc/postfix/debian
211 file=/etc/ssh/ssh_known_hosts
212 file=/etc/ssh/ssh-rsa-shadow
213 file=/var/lib/misc/ssh-rsa-shadow
214 file=/etc/.da-backup.trace
215 file=/etc/postfix/debianhosts
216 file=/etc/postfix/debianhosts.db
217 file=/etc/blkid.tab
218 file=/etc/blkid.tab.old
219 file=/etc/resolv.conf.dhclient-new
220
221 # We handle these files with puppet - please to not be bothering us
222 file=/etc/timezone
223 file=/etc/motd.tail
224 file=/etc/ntp.conf
225 file=/etc/samhain/samhainrc
226 file=/etc/munin/munin-node.conf
227 file=/etc/userdir-ldap.confc
228 file=/etc/exim4/blacklist
229 file=/etc/exim4/host_blacklist
230 file=/etc/exim4/callout_users
231 file=/etc/exim4/exim4.conf
232 file=/etc/exim4/grey_users
233 file=/etc/exim4/helo-check
234 file=/etc/exim4/locals
235 file=/etc/exim4/localusers
236 file=/etc/exim4/manualroute
237 file=/etc/exim4/rbllist
238 file=/etc/exim4/rcpthosts
239 file=/etc/exim4/rhsbllist
240 file=/etc/exim4/virtualdomains
241 file=/etc/exim4/whitelist
242 file=/etc/exim4/local-auto.conf
243 file=/etc/exim4/local-settings.conf
244 file=/etc/exim4/ssl/ca.crt
245 file=/etc/exim4/ssl/ca.crl
246 file=/etc/exim4/ssl/thishost.crt
247 file=/etc/exim4/ssl/thishost.key
248 file=/etc/ssh/ssh_config
249 file=/etc/ssh/sshd_config
250 <%=
251 out=""
252 if not nodeinfo['heavy_exim'].empty?
253   out = '
254 file=/etc/exim4/surbl_whitelist.txt
255 file=/etc/exim4/exim_surbl.pl
256 file=/etc/exim4/ccTLD.txt
257 file=/etc/clamav-unofficial-sigs.conf
258 file=/etc/clamav-unofficial-sigs.dsa.conf
259 '
260 end
261 out
262 %>
263 file=/etc/munin/plugins/cpu
264 file=/etc/munin/plugins/df
265 file=/etc/munin/plugins/df_abs
266 file=/etc/munin/plugins/df_inode
267 file=/etc/munin/plugins/entropy
268 file=/etc/munin/plugins/forks
269 file=/etc/munin/plugins/interrupts
270 file=/etc/munin/plugins/iostat
271 file=/etc/munin/plugins/irqstats
272 file=/etc/munin/plugins/load
273 file=/etc/munin/plugins/memory
274 file=/etc/munin/plugins/ntp_offset
275 file=/etc/munin/plugins/open_files
276 file=/etc/munin/plugins/open_inodes
277 file=/etc/munin/plugins/processes
278 file=/etc/munin/plugins/ps_apache2
279 file=/etc/munin/plugins/swap
280 file=/etc/munin/plugins/uptime
281 file=/etc/munin/plugins/vmstat
282 file=/etc/munin/plugins/apache_accesses
283 file=/etc/munin/plugins/apache_processes
284 file=/etc/munin/plugins/apache_volume
285 file=/etc/munin/plugins/exim_mailqueue
286 file=/etc/munin/plugins/exim_mailstats
287 file=/etc/munin/plugins/postfix_mailqueue
288 file=/etc/munin/plugins/postfix_mailvolume
289 file=/etc/apache2/conf.d/ressource-limits
290 file=/etc/apache2/mods-enabled/info.conf
291 file=/etc/apache2/mods-enabled/info.load
292 file=/etc/apache2/mods-enabled/server.conf
293 file=/etc/apache2/mods-enabled/server.load
294 file=/etc/apache2/conf.d/server-status
295 file=/etc/apache2/conf.d/local-serverinfo
296 file=/etc/apt/preferences
297 file=/etc/apt/sources.list.d/volatile.list
298 file=/etc/apt/sources.list.d/security.list
299 file=/etc/apt/sources.list.d/buildd.list
300 file=/etc/apt/sources.list.d/debian.org.list
301 file=/etc/apt/sources.list.d/debian.restricted.list
302 file=/etc/apt/sources.list.d/debian.list
303 file=/etc/apt/sources.list.d/backports.org.list
304 file=/etc/apt/apt.conf.d/local-recommends
305 file=/etc/apt/apt.conf.d/local-pdiffs
306 file=/etc/puppet/puppet.conf
307 file=/etc/default/puppet
308 file=/etc/default/postgrey
309 file=/etc/logrotate.d/exim4-paniclog
310 file=/etc/logrotate.d/exim4-base
311 file=/etc/logrotate.d/syslog-ng
312 file=/etc/syslog-ng/syslog-ng.conf
313 file=/usr/sbin/dsa-update-apt-status
314 file=/usr/sbin/dsa-update-samhain-status
315 file=/etc/nagios/nrpe.d/nrpe_dsa.cfg
316 file=/etc/nagios/nrpe.d/debianorg.cfg
317 file=/etc/nagios/obsolete-packages-ignore
318 file=/etc/nagios/obsolete-packages-ignore.d/hostspecific
319 file=/usr/lib/nagios/plugins/dsa-check-packages
320 file=/usr/lib/nagios/plugins/dsa-check-soas
321 file=/usr/lib/nagios/plugins/dsa-check-mirrorsync
322 file=/usr/lib/nagios/plugins/dsa-check-samhain
323 file=/usr/lib/nagios/plugins/dsa-check-statusfile
324 file=/usr/lib/nagios/plugins/dsa-check-dabackup-server
325 file=/usr/lib/nagios/plugins/dsa-check-config
326 file=/usr/lib/nagios/plugins/dsa-check-hpacucli
327 file=/usr/lib/nagios/plugins/dsa-check-raid-mpt
328 file=/usr/lib/nagios/plugins/dsa-check-puppet
329 file=/usr/lib/nagios/plugins/dsa-check-running-kernel
330 file=/usr/lib/nagios/plugins/dsa-check-raid-3ware
331 file=/usr/lib/nagios/plugins/dsa-check-dabackup
332 file=/usr/lib/nagios/plugins/dsa-check-raid-dac960
333 file=/usr/lib/nagios/plugins/dsa-check-udldap-freshness
334 file=/usr/lib/nagios/plugins/dsa-check-raid-areca
335 file=/usr/lib/nagios/plugins/dsa-check-raid-sw
336 file=/usr/lib/nagios/plugins/dsa-update-samhain-status
337 file=/etc/sudoers
338 file=/etc/sysctl.d/mmap_min_addr.conf
339 file=/etc/pam.d/sudo
340 file=/etc/monit/monitrc
341 file=/etc/monit/monit.d/01puppet
342 file=/etc/monit/monit.d/00debian.org
343 file=/etc/cron.d/dsa-puppet-stuff
344 <%= extrafiles=""
345 case fqdn 
346 when "spohr.debian.org": extrafiles="file=/etc/nagios3/puppetconf.d/auto-hostgroups.cfg
347 file=/etc/nagios3/puppetconf.d/auto-hosts.cfg
348 file=/etc/nagios3/puppetconf.d/auto-services.cfg
349 file=/etc/nagios3/puppetconf.d/auto-dependencies.cfg
350 file=/etc/nagios3/puppetconf.d/auto-hostextinfo.cfg
351 file=/etc/nagios3/puppetconf.d/auto-serviceextinfo.cfg"
352 when "handel.debian.org": extrafiles="dir=8/etc/puppet"
353 when "dijkstra.debian.org": extrafiles="dir=4/etc/dsa-kvm"
354 when /geo[123].debian.org/: extrafiles="dir=1/etc/bind/geodns"
355 end
356 extrafiles
357 %>
358
359 [IgnoreNone]
360 ##
361 ## for these files, all modifications (even access time) are reported
362 ##    - you may create some interesting-looking file (like /etc/safe_passwd),
363 ##      just to watch whether someone will access it ...
364 ##
365
366 [Prelink]
367 ##
368 ## Use for prelinked files or directories holding them
369 ##
370
371
372 [ReadOnly]
373 ##
374 ## for these files, only access time is ignored
375 ##
376 dir=/usr/bin
377 dir=/bin
378 dir=/boot
379 #
380 # SuSE (old) has the boot init scripts in /sbin/init.d/*, 
381 # so we go 3 levels deep
382 #
383 dir=3/sbin
384 dir=/usr/sbin
385 dir=/lib
386 dir=3/usr/lib
387 #
388 # RedHat and Debian have the bootinit scripts in /etc/init.d/* or /etc/rc.d/*, 
389 #        so we go 3 levels deep there too
390 #
391 dir=3/etc
392
393 # Various directories / files that may include / be SUID/SGID binaries
394 #
395 #
396 file=/usr/lib/pt_chown
397 # X11, in Debian X7 this is now a symlink
398 #dir=/usr/X11R6/bin
399 #dir=/usr/X11R6/lib/X11/xmcd/bin
400 # Apache:
401 #file=/usr/lib/apache/suexec
402 #file=/usr/lib/apache/suexec.disabled
403 # Extra directories:
404 #dir=/opt/gnome/bin
405 #dir=/opt/kde/bin
406
407 [User0]
408 [User1]
409 ## User0 and User1 are sections for files/dirs with user-definable checking
410 ## (see the manual) 
411
412
413 [EventSeverity]
414 ##
415 ## Here you can assign severities to policy violations.
416 ## If this severity exceeds the treshold of a log facility (see below),
417 ## a policy violation will be logged to that facility.
418 ##
419 ## Severity for verification failures.
420 ##
421 # SeverityReadOnly=crit
422 # SeverityLogFiles=crit
423 # SeverityGrowingLogs=crit
424 # SeverityIgnoreNone=crit
425 # SeverityAttributes=crit
426 # SeverityUser0=crit
427 # SeverityUser1=crit
428
429 # Default behaviour
430 SeverityReadOnly=crit
431 SeverityLogFiles=crit
432 SeverityGrowingLogs=warn
433 SeverityIgnoreNone=crit
434 SeverityAttributes=crit
435
436
437 ##
438 ## We have a file in IgnoreAll that might or might not be present.
439 ## Setting the severity to 'info' prevents messages about deleted/new file.
440 ##
441 # SeverityIgnoreAll=crit
442 SeverityIgnoreAll=info
443
444 ## Files : file access problems
445 # SeverityFiles=crit
446
447 ## Dirs  : directory access problems
448 # SeverityDirs=crit
449
450 ## Names : suspect (non-printable) characters in a pathname
451 # SeverityNames=crit
452
453 # Default behaviour
454 SeverityFiles=crit
455 SeverityDirs=crit
456 SeverityNames=warn
457
458
459 [Log]
460 ##
461 ## Switch on/OFF log facilities and set their threshold severity
462 ##
463 ## Values: debug, info, notice, warn, mark, err, crit, alert, none.
464 ## 'mark' is used for timestamps.
465 ##
466 ##
467 ## Use 'none' to SWITCH OFF a log facility
468 ## 
469 ## By default, everything equal to and above the threshold is logged.
470 ## The specifiers '*', '!', and '=' are interpreted as  
471 ## 'all', 'all but', and 'only', respectively (like syslogd(8) does, 
472 ## at least on Linux). Examples:
473 ## MailSeverity=*
474 ## MailSeverity=!warn
475 ## MailSeverity==crit
476
477 ## E-mail
478 ##
479 # MailSeverity=none
480
481 ## Console
482 ##
483 # PrintSeverity=info
484
485 ## Logfile
486 ##
487 # LogSeverity=mark
488
489 ## Syslog
490 ##
491 # SyslogSeverity=none
492
493 ## Remote server (yule)
494 ##
495 # ExportSeverity=none
496
497 ## External script or program
498 ##
499 # ExternalSeverity = none
500
501 ## Logging to a database
502 ##
503 # DatabaseSeverity = none
504
505 # Default behaviour
506 MailSeverity=crit
507 PrintSeverity=none
508 LogSeverity=info
509 SyslogSeverity=alert
510 ExportSeverity=none
511
512
513
514
515
516 #####################################################
517 #
518 # Optional modules
519 #
520 #####################################################
521
522 # [SuidCheck]
523 ##
524 ## --- Check the filesystem for SUID/SGID binaries
525 ## 
526
527 ## Switch on
528 #
529 # SuidCheckActive = yes
530
531 ## Interval for check (seconds)
532 #
533 # SuidCheckInterval = 7200
534
535 ## Alternative: crontab-like schedule
536 #
537 # SuidCheckSchedule = NULL
538  
539 ## Directory to exclude 
540 #
541 # SuidCheckExclude = NULL
542
543 ## Limit on files per second (0 == no limit)
544 #
545 # SuidCheckFps = 0
546
547 ## Alternative: yield after every file
548 #
549 # SuidCheckYield = no
550
551 ## Severity of a detection
552 #
553 # SeveritySuidCheck = crit
554
555 ## Quarantine SUID/SGID files if found
556 #
557 # SuidCheckQuarantineFiles = yes
558
559 ## Method for Quarantining files:
560 #  0 - Delete or truncate the file.
561 #  1 - Remove SUID/SGID permissions from file.
562 #  2 - Move SUID/SGID file to quarantine dir.
563 #
564 # SuidCheckQuarantineMethod = 0
565
566 ## For method 1 and 3, really delete instead of truncating
567
568 # SuidCheckQuarantineDelete = yes
569
570 # [Kernel]
571 ##
572 ## --- Check for loadable kernel module rootkits (Linux/FreeBSD only) 
573 ##
574
575 ## Switch on/off
576 #
577 KernelCheckActive = True
578
579 ## Check interval (seconds); btw., the check is VERY fast
580 #
581 # KernelCheckInterval = 300
582
583 ## Severity
584 #
585 # SeverityKernel = crit
586
587
588 # [Utmp]
589 ##
590 ## --- Logging of login/logout events
591 ##
592
593 ## Switch on/off
594 #
595 LoginCheckActive = True
596
597 ## Severity for logins, multiple logins, logouts
598
599 # SeverityLogin=info
600 # SeverityLoginMulti=warn
601 # SeverityLogout=info
602
603 ## Interval for login/logout checks
604 #
605 # LoginCheckInterval = 300
606
607
608 # [Database]
609 ##
610 ## --- Logging to a relational database
611 ##
612
613 ## Database name
614 #
615 # SetDBName = samhain
616
617 ## Database table
618 #
619 # SetDBTable = log
620
621 ## Database user
622 #
623 # SetDBUser = samhain
624
625 ## Database password
626 #
627 # SetDBPassword = (default: none)
628
629 ## Database host
630 #
631 # SetDBHost = localhost
632
633 ## Log the server timestamp for received messages
634 #
635 # SetDBServerTstamp = True
636
637 ## Use a persistent connection
638 #
639 # UsePersistent = True
640
641 # [External]
642 ##
643 ## Interface to call external scripts/programs for logging
644 ##
645
646 ## The absolute path to the command
647 ## - Each invocation of this directive will end the definition of the
648 ##   preceding command, and start the definition of 
649 ##   an additional, new command
650 #
651 # OpenCommand = (no default)
652
653 ## Type (log or rv)
654 ## - log for log messages, srv for messages received by the server
655 #
656 # SetType = log
657
658 ## The command (full command line) to execute
659 #
660 # SetCommandLine = (no default)
661
662 ## The environment (KEY=value; repeat for more)
663 #
664 # SetEnviron = TZ=(your timezone)
665
666 ## The TIGER192 checksum (optional)
667 #
668 # SetChecksum = (no default)
669
670 ## User who runs the command
671 #
672 # SetCredentials = (default: samhain process uid)
673
674 ## Words not allowed in message
675 #
676 # SetFilterNot = (none)
677
678 ## Words required (ALL of them)
679 #
680 # SetFilterAnd = (none)
681
682 ## Words required (at least one)
683 #
684 # SetFilterOr = (none)
685
686 ## Deadtime between consecutive calls
687 #
688 # SetDeadtime = 0
689
690 ## Add default environment (HOME, PATH, SHELL)
691 #
692 # SetDefault = no
693
694
695 #####################################################
696 #
697 # Miscellaneous configuration options
698 #
699 #####################################################
700
701 [Misc]
702
703 ## whether to become a daemon process
704 ## (this is not honoured on database initialisation)
705 #
706 # Daemon = no
707 Daemon = yes
708
709 ## whether to test signature of files (init/check/none)
710 ## - if 'none', then we have to decide this on the command line -
711 #
712 # ChecksumTest = none
713 ChecksumTest=check
714
715 ## whether to drop linux capabilities that are not required
716 ## - will make a root process a 'mere mortal' in many respects
717 #
718 # UseCaps = yes
719
720 ## Set nice level (-19 to 19, see 'man nice'),
721 ## and I/O limit (kilobytes per second; 0 == off)
722 ## to reduce load on host.
723 #
724 # SetNiceLevel = 0
725 # SetIOLimit = 0
726
727 ## The version string to embed in file signature databases
728 #
729 # VersionString = NULL
730
731 ## Interval between time stamp messages
732 #
733 # SetLoopTime = 60
734 SetLoopTime = 600
735
736 ## Interval between file checks 
737 #
738 # SetFileCheckTime = 600
739 SetFileCheckTime = 7200
740
741 ## Alternative: crontab-like schedule
742 #
743 # FileCheckScheduleOne = NULL
744
745 ## Alternative: crontab-like schedule(2)
746 #
747 # FileCheckScheduleTwo = NULL
748
749 ## Report only once on modified fles 
750 ## Setting this to 'FALSE' will generate a report for any policy 
751 ## violation (old and new ones) each time the daemon checks the file system.
752 #
753 # ReportOnlyOnce = True
754
755 ## Report in full detail
756 #
757 # ReportFullDetail = False
758
759 ## Report file timestamps in local time rather than GMT
760 #
761 # UseLocalTime = No
762
763 ## The console device (can also be a file or named pipe)
764 ## - There are two console devices. Accordingly, you can use
765 ##   this directive a second time to set the second console device.
766 ##   If you have not defined the second device at compile time,
767 ##   and you don't want to use it, then:
768 ##   setting it to /dev/null is less effective than just leaving
769 ##   it alone (setting to /dev/null will waste time by opening
770 ##   /dev/null and writing to it)
771 #
772 # SetConsole = /dev/console
773
774 ## Activate the SysV IPC message queue
775 #
776 # MessageQueueActive = False
777
778
779 ## If false, skip reverse lookup when connecting to a host known 
780 ## by name rather than IP address (i.e. trust the DNS)
781 #
782 # SetReverseLookup = True
783
784 ## --- E-Mail ---
785
786 # Only highest-level (alert) reports will be mailed immediately,
787 # others will be queued. Here you can define, when the queue will
788 # be flushed (Note: the queue is automatically flushed after
789 # completing a file check).
790 #
791 SetMailTime = 86400
792
793 ## Maximum number of mails to queue
794 #
795 SetMailNum = 10
796
797 ## Recipient (max. 8)
798 #
799 SetMailAddress=samhain-reports@debian.org
800
801 ## Mail relay (IP address)
802 <%=
803 out=""
804 if not nodeinfo['smarthost'].empty?
805   out = '
806 SetMailRelay = localhost
807 '
808 else
809 out = '
810 SetMailRelay = master.debian.org
811 '
812 end
813 out
814 %>
815 ## Custom subject format
816 #
817 MailSubject = [Samhain at %H] %T: %S
818
819 ## --- end E-Mail ---
820
821 ## Path to the prelink executable
822 #
823 # SetPrelinkPath = /usr/sbin/prelink
824
825 ## TIGER192 checksum of the prelink executable
826 #
827 # SetPrelinkChecksum = (no default)
828
829
830 ## Path to the executable. If set, will be checksummed after startup
831 ## and before exit.
832 #
833 # SamhainPath = (no default)
834
835
836 ## The IP address of the log server
837 #
838 # SetLogServer = (default: compiled-in)
839
840 ## The IP address of the time server
841 #
842 # SetTimeServer = (default: compiled-in)
843
844 ## Trusted Users (comma delimited list of user names) 
845 #
846 # TrustedUser = (no default; this adds to the compiled-in list)
847
848 ## Path to the file signature database
849 #
850 # SetDatabasePath = (default: compiled-in)
851
852 ## Path to the log file
853 #
854 # SetLogfilePath = (default: compiled-in)
855
856 ## Path to the PID file
857 #
858 # SetLockPath = (default: compiled-in)
859
860
861 ## The digest/checksum/hash algorithm
862 #
863 # DigestAlgo = TIGER192
864
865
866 ## Custom format for message header. 
867 ## CAREFUL if you use XML logfile format.
868 ##
869 ## %S severity
870 ## %T timestamp
871 ## %C class
872 ##
873 ## %F source file
874 ## %L source line
875 #
876 # MessageHeader="%S %T "
877
878
879 ## Don't log path to config/database file on startup
880 #
881 # HideSetup = False
882
883 ## The syslog facility, if you log to syslog
884 #
885 # SyslogFacility = LOG_AUTHPRIV
886 SyslogFacility=LOG_LOCAL2
887
888 ## The message authentication method
889 ## - If you change this, you *must* change it
890 ##   on client *and* server
891 #
892 # MACType = HMAC-TIGER
893
894
895 ## everything below is ignored
896 [EOF]
897
898 #####################################################################
899 # This would be the proper syntax for parts that should only be
900 #    included for certain hosts.
901 # You may enclose anything in a @HOSTNAME/@end bracket, as long as the
902 #    result still has the proper syntax for the config file.
903 # You may have any number of @HOSTNAME/@end brackets.
904 # HOSTNAME should be the fully qualified 'official' name 
905 #    (e.g. 'nixon.watergate.com', not 'nixon'), no aliases. 
906 #    No IP number - except if samhain cannot determine the 
907 #    fully qualified hostname.
908 #
909 # @HOSTNAME
910 # file=/foo/bar
911 # @end
912 #
913 # These are two examples for conditional inclusion/exclusion
914 # of a machine based on the output from 'uname -srm'
915 # $Linux:2.*.7:i666
916 # file=/foo/bar3
917 # $end
918 #
919 # !$Linux:2.*.7:i686
920 # file=/foo/bar2
921 # $end
922 #
923 #####################################################################