File: linux.yaml

package info (click to toggle)
forensic-artifacts 20230928-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 996 kB
  • sloc: python: 1,939; sh: 22; makefile: 11
file content (1008 lines) | stat: -rw-r--r-- 24,996 bytes parent folder | download
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
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
# Linux specific artifacts.
---
name: AnacronFiles
doc: Anacron files.
sources:
- type: FILE
  attributes:
    paths:
    - '/etc/anacrontab'
    - '/etc/cron.daily/*'
    - '/etc/cron.hourly/*'
    - '/etc/cron.monthly/*'
    - '/etc/cron.weekly/*'
    - '/var/spool/anacron/cron.daily'
    - '/var/spool/anacron/cron.hourly'
    - '/var/spool/anacron/cron.monthly'
    - '/var/spool/anacron/cron.weekly'
supported_os: [Linux]
---
name: AptitudeLogFiles
doc: Linux aptitude package manager log files.
sources:
- type: FILE
  attributes: {paths: ['/var/log/aptitude*']}
supported_os: [Linux]
urls: ['https://www.debian.org/doc/manuals/aptitude/rn01re01.en.html']
---
name: APTSources
doc: APT package sources list
sources:
- type: FILE
  attributes:
    paths:
    - '/etc/apt/sources.list'
    - '/etc/apt/sources.list.d/*.list'
supported_os: [Linux]
urls: ['http://manpages.ubuntu.com/manpages/trusty/en/man5/sources.list.5.html']
---
name: APTTrustKeys
doc: APT trusted keys
sources:
- type: FILE
  attributes:
    paths:
    - '/etc/apt/trusted.gpg'
    - '/etc/apt/trusted.gpg.d/*.gpg'
    - '/etc/apt/trustdb.gpg'
    - '/usr/share/keyrings/*.gpg'
supported_os: [Linux]
urls: ['https://wiki.debian.org/SecureApt']
---
name: CronAtAllowDenyFiles
doc: Files containing users authorised to run cron or at jobs.
sources:
- type: FILE
  attributes:
    paths:
    - '/etc/cron.allow'
    - '/etc/cron.deny'
    - '/etc/at.allow'
    - '/etc/at.deny'
supported_os: [Linux]
urls:
- http://manpages.ubuntu.com/manpages/saucy/man5/at.allow.5.html
- http://manpages.ubuntu.com/manpages/precise/en/man1/crontab.1.html
---
name: DebianPackagesLogFiles
doc: Linux dpkg log files.
sources:
- type: FILE
  attributes:
    paths:
    - '/var/log/dpkg.log*'
    - '/var/log/apt/history.log*'
    - '/var/log/apt/term.log*'
supported_os: [Linux]
---
name: DebianPackagesStatus
doc: Linux dpkg status file.
sources:
- type: FILE
  attributes: {paths: ['/var/lib/dpkg/status']}
supported_os: [Linux]
---
name: DebianVersion
doc: Debian version information.
sources:
- type: FILE
  attributes: {paths: ['/etc/debian_version']}
provides: [os_release, os_major_version, os_minor_version]
supported_os: [Linux]
---
name: DNSResolvConfFile
doc: DNS Resolver configuration file.
sources:
- type: FILE
  attributes: {paths: ['/etc/resolv.conf']}
supported_os: [Linux]
urls: ['http://man7.org/linux/man-pages/man5/resolv.conf.5.html']
---
name: GnomeApplicationState
doc: Gnome application state for frequent application data.
sources:
- type: FILE
  attributes: {paths: ['%%users.homedir%%/.local/share/gnome-shell/application_state']}
supported_os: [Linux]
urls: ['https://forensics.wiki/gnome_desktop_environment']
---
name: FreeDesktopTrashInfoFiles
doc: FreeDesktop.org Trash Info Files.
sources:
- type: FILE
  attributes:
    paths:
    - '%%users.homedir%%/.local/share/Trash/info/*.trashinfo'
supported_os: [Linux]
urls:
- 'https://specifications.freedesktop.org/trash-spec/trashspec-latest.html'
---
name: FreeDesktopTrashFiles
doc: FreeDesktop.org Trash Files.
sources:
- type: FILE
  attributes:
    paths:
    - '%%users.homedir%%/.local/share/Trash/files/*'
supported_os: [Linux]
urls:
- 'https://specifications.freedesktop.org/trash-spec/trashspec-latest.html'
---
name: GnomeTracker
doc: Gnome Tracker database and backup files.
sources:
- type: FILE
  attributes:
    paths:
    - '%%users.homedir%%/.cache/tracker/*'
    - '%%users.homedir%%/.local/share/tracker/data/*'
supported_os: [Linux]
urls: ['https://wiki.gnome.org/Projects/Tracker/Documentation/GettingStarted']
---
name: GTKRecentlyUsedDatabase
doc: GTK Recent Manager database.
sources:
- type: FILE
  attributes:
    paths:
    - '%%users.homedir%%/.local/share/recently-used.xbel'
supported_os: [Linux]
---
name: HostAccessPolicyConfiguration
doc: Linux files related to host access policy configuration.
sources:
- type: FILE
  attributes:
    paths:
    - '/etc/hosts.allow'
    - '/etc/hosts.deny'
supported_os: [Linux]
---
name: IPTablesRules
doc: List IPTables rules.
sources:
- type: COMMAND
  attributes:
    args: ["-L", "-n", "-v"]
    cmd: /sbin/iptables
supported_os: [Linux]
---
name: KernelModules
doc: Kernel modules to be loaded on boot.
sources:
- type: FILE
  attributes:
    paths:
    - '/etc/modules.conf'
    - '/etc/modprobe.d/*'
supported_os: [Linux]
---
name: LessHistoryFile
doc: less history file which remembers search and shell commands
sources:
- type: FILE
  attributes: {paths: ['%%users.homedir%%/.lesshst']}
supported_os: [Linux]
urls: ['https://man7.org/linux/man-pages/man1/less.1.html']
---
name: LinuxAtJobs
doc: Linux at jobs.
sources:
- type: FILE
  attributes: {paths: ['/var/spool/at/*']}
supported_os: [Linux]
---
name: LinuxAtJobsTemporaryOutputs
doc: Linux at jobs temporary outputs.
sources:
- type: FILE
  attributes:
    paths:
    - '/var/spool/at/spool/*'
    - '/var/spool/cron/atspool/*'
supported_os: [Linux]
---
name: LinuxAuditLogs
doc: Linux audit log files.
sources:
- type: FILE
  attributes: {paths: ['/var/log/audit/*']}
supported_os: [Linux]
---
name: LinuxAuthLogs
doc: Linux authentication log files.
sources:
- type: FILE
  attributes:
    paths:
    - '/var/log/auth.log*'
    - '/var/log/secure*'
supported_os: [Linux]
---
name: LinuxCACertificatesConfiguration
doc: Linux CA Certificates configuration file.
sources:
- type: FILE
  attributes:
    paths:
    - '/etc/ca-certificates.conf'
---
name: LinuxCACertificates
doc: Linux CA Certificates.
sources:
- type: FILE
  attributes:
    paths:
    - '/etc/ssl/certs/ca-certificates.crt'
    - '/usr/share/ca-certificates/*'
    - '/usr/local/share/ca-certificates/*'
supported_os: [Linux]
---
name: LinuxCronLogs
doc: Linux cron log files.
sources:
- type: FILE
  attributes: {paths: ['/var/log/cron.log*']}
supported_os: [Linux]
---
name: LinuxCronTabs
doc: Crontab files.
sources:
- type: FILE
  attributes:
    paths:
    - '/etc/crontab'
    - '/etc/cron.d/*'
    - '/var/spool/cron/**'
supported_os: [Linux]
---
name: LinuxDaemonLogFiles
doc: Linux daemon log files.
sources:
- type: FILE
  attributes: {paths: ['/var/log/daemon.log*']}
supported_os: [Linux]
---
name: LinuxDHCPConfigurationFile
doc: Linux DHCP Configuration File
sources:
- type: FILE
  attributes:
    paths:
    - '/etc/dhcp/dhcp.conf'
supported_os: [Linux]
---
name: LinuxDistributionRelease
doc: Linux distribution release information of non-LSB compliant systems.
sources:
- type: FILE
  attributes:
    paths:
    - '/etc/centos-release'
    - '/etc/enterprise-release'
    - '/etc/oracle-release'
    - '/etc/redhat-release'
    - '/etc/rocky-release'
    - '/etc/SuSE-release'
    - '/etc/system-release'
provides: [os_release, os_major_version, os_minor_version]
supported_os: [Linux]
---
name: LinuxDSDTTable
doc: Linux file containing DSDT table.
sources:
- type: FILE
  attributes: {paths: ['/sys/firmware/acpi/tables/DSDT']}
urls: ['https://www.kernel.org/doc/Documentation/acpi/initrd_table_override.txt']
supported_os: [Linux]
---
name: LinuxFstab
doc: Linux fstab file.
sources:
- type: FILE
  attributes: {paths: ['/etc/fstab']}
supported_os: [Linux]
urls: ['http://en.wikipedia.org/wiki/Fstab']
---
name: LinuxGrubConfiguration
doc: Linux grub configuration file.
sources:
- type: FILE
  attributes:
    paths:
    - '/boot/grub/grub.cfg'
    - '/boot/grub2/grub.cfg'
supported_os: [Linux]
urls: ['https://en.wikipedia.org/wiki/GNU_GRUB']
---
name: LinuxHostnameFile
doc: Linux hostname file.
sources:
- type: FILE
  attributes: {paths: ['/etc/hostname']}
supported_os: [Linux]
---
name: LinuxIfUpDownScripts
doc: ifupdown scripts executed whenever a network interface goes up or down respectively.
sources:
- type: FILE
  attributes:
    paths:
    - '/etc/network/if-up.d/*'
    - '/etc/network/if-down.d/*'
supported_os: [Linux]
---
name: LinuxInitrdFiles
doc: Initrd (initramfs) files in /boot/ executed on startup.
sources:
- type: FILE
  attributes:
    paths:
    - '/boot/initramfs*'
    - '/boot/initrd*'
supported_os: [Linux]
urls:
- 'http://en.wikipedia.org/wiki/Initrd'
- 'https://www.kernel.org/doc/Documentation/initrd.txt'
---
name: LinuxIssueFile
doc: Linux prelogin message and identification (issue) file.
sources:
- type: FILE
  attributes:
    paths:
    - '/etc/issue'
    - '/etc/issue.net'
supported_os: [Linux]
urls: ['https://linux.die.net/man/5/issue']
---
name: LinuxKerberosConfiguration
doc: Linux Kerberos configuration information.
sources:
- type: FILE
  attributes: {paths: ['/etc/krb5.conf']}
supported_os: [Linux]
urls: ['https://web.mit.edu/kerberos/krb5-1.12/doc/admin/conf_files/krb5_conf.html']
---
name: LinuxKernelLogFiles
doc: Linux kernel log files.
sources:
- type: FILE
  attributes: {paths: ['/var/log/kern.log*']}
supported_os: [Linux]
---
name: LinuxLastlogFile
doc: Linux lastlog file.
sources:
- type: FILE
  attributes: {paths: ['/var/log/lastlog']}
supported_os: [Linux]
---
name: LinuxLoaderSystemPreloadFile
doc: Linux dynamic linker/loader system-wide preload file (ld.so.preload).
sources:
- type: FILE
  attributes: {paths: ['/etc/ld.so.preload']}
supported_os: [Linux]
urls: ['http://man7.org/linux/man-pages/man8/ld.so.8.html']
---
name: LinuxLSBInit
doc: Linux LSB-style init scripts.
sources:
- type: FILE
  attributes:
    paths:
    - '/etc/init.d/*'
    - '/etc/insserv.conf'
    - '/etc/insserv.conf.d/**'
supported_os: [Linux]
urls: ['https://wiki.debian.org/LSBInitScripts']
---
name: LinuxLocalTime
doc: Local time zone configuration
sources:
- type: FILE
  attributes: {paths: ['/etc/localtime']}
supported_os: [Linux]
---
name: LinuxLSBRelease
doc: Linux Standard Base (LSB) release information
sources:
- type: FILE
  attributes: {paths: ['/etc/lsb-release']}
provides: [os_release, os_major_version, os_minor_version]
supported_os: [Linux]
urls: ['https://linux.die.net/man/1/lsb_release']
---
name: LinuxMessagesLogFiles
doc: Linux messages log files.
sources:
- type: FILE
  attributes: {paths: ['/var/log/messages*']}
supported_os: [Linux]
---
name: LinuxMountCmd
doc: Linux output of mount
sources:
- type: COMMAND
  attributes:
    args: []
    cmd: /bin/mount
supported_os: [Linux]
---
name: LinuxMountInfo
doc: Linux mount options.
sources:
- type: ARTIFACT_GROUP
  attributes:
    names:
    - LinuxFstab
    - LinuxProcMounts
supported_os: [Linux]
---
name: LinuxNetworkManager
doc: Linux NetworkManager files.
sources:
- type: FILE
  attributes:
    paths:
    - '/etc/NetworkManager/conf.d/name.conf'
    - '/etc/NetworkManager/NetworkManager.conf'
    - '/etc/NetworkManager/system-connections'
    - '/run/NetworkManager/conf.d/name.conf'
    - '/usr/lib/NetworkManager/conf.d/name.conf'
    - '/var/lib/NetworkManager/NetworkManager-intern.conf'
    - '/var/lib/NetworkManager/*'
supported_os: [Linux]
urls:
- 'https://linux.die.net/man/5/networkmanager.conf'
- 'https://man.archlinux.org/man/NetworkManager.conf.5.en#FILE_FORMAT'
---
name: LinuxPamConfigs
doc: Configuration files for PAM.
sources:
- type: FILE
  attributes:
    paths:
    - '/etc/pam.conf'
    - '/etc/pam.d'
    - '/etc/pam.d/common-password'
    - '/etc/pam.d/*'
supported_os: [Linux]
urls: ['http://www.linux-pam.org/']
---
name: LinuxPasswdFile
doc: |
  Linux passwd file.

  A passwd file consist of colon separated values in the format:
  username:password:uid:gid:full name:home directory:shell
sources:
- type: FILE
  attributes: {paths: ['/etc/passwd']}
supported_os: [Linux]
---
name: LinuxReleaseInfo
doc: Release information for Linux platforms.
sources:
- type: ARTIFACT_GROUP
  attributes:
    names:
    - LinuxDistributionRelease
    - LinuxLSBRelease
    - LinuxSystemdOSRelease
provides: [os_release, os_major_version, os_minor_version]
supported_os: [Linux]
---
name: LinuxRsyslogConfigs
doc: Linux rsyslog configurations.
sources:
- type: FILE
  attributes:
    paths:
    - '/etc/rsyslog.conf'
    - '/etc/rsyslog.d'
    - '/etc/rsyslog.d/*'
supported_os: [Linux]
urls: ['http://www.rsyslog.com/doc/rsyslog_conf.html']
---
name: LinuxScheduleFiles
doc: All Linux job scheduling files.
sources:
- type: ARTIFACT_GROUP
  attributes:
    names:
    - AnacronFiles
    - LinuxCronTabs
    - LinuxAtJobs
supported_os: [Linux]
---
name: LinuxServices
doc: Services running on a Linux system.
sources:
- type: ARTIFACT_GROUP
  attributes:
    names:
    - LinuxXinetd
    - LinuxLSBInit
    - LinuxSysVInit
    - LinuxSystemdServices
supported_os: [Linux]
---
name: LinuxSSDTTables
doc: Linux files containing SSDT table.
sources:
- type: FILE
  attributes: {paths: ['/sys/firmware/acpi/tables/SSDT*']}
urls: ['https://www.kernel.org/doc/Documentation/acpi/initrd_table_override.txt']
supported_os: [Linux]
---
name: LinuxSudoReplayLogs
doc: Linux sudoreplay log files.
sources:
- type: FILE
  attributes: {paths: ['/var/log/sudo-io/**']}
supported_os: [Linux]
---
name: LinuxSysctlConfigurationFiles
doc: Linux sysctl preload/configuration files.
sources:
- type: FILE
  attributes:
    paths:
    - /etc/sysctl.d/*.conf
    - /run/sysctl.d/*.conf
    - /usr/local/lib/sysctl.d/*.conf
    - /usr/lib/sysctl.d/*.conf
    - /lib/sysctl.d/*.conf
    - /etc/sysctl.con
supported_os: [Linux]
urls:
- 'https://man7.org/linux/man-pages/man5/sysctl.conf.5.html'
---
name: LinuxSysLogFiles
doc: Linux syslog log files.
sources:
- type: FILE
  attributes: {paths: ['/var/log/syslog*']}
supported_os: [Linux]
---
name: LinuxSyslogNgConfigs
doc: Linux syslog-ng configurations.
sources:
- type: FILE
  attributes:
    paths:
    - '/etc/syslog-ng/syslog-ng.conf'
    - '/etc/syslog-ng/conf-d/*.conf'
supported_os: [Linux]
urls: ['http://linux.die.net/man/5/syslog-ng.conf']
---
name: LinuxSystemdJournalConfig
doc: Linux systemd journal config file
sources:
- type: FILE
  attributes: {paths: ['/etc/systemd/journald.conf']}
supported_os: [Linux]
urls: ['https://wiki.archlinux.org/title/Systemd/Journal']
---
name: LinuxSystemdJournalLogs
doc: Linux systemd journal log files
sources:
- type: FILE
  attributes:
    paths:
    - '/var/log/journal/*/*.journal'
    - '/var/log/journal/*/*.journal~'
supported_os: [Linux]
urls: ['https://wiki.archlinux.org/title/Systemd/Journal']
---
name: LinuxSystemdOSRelease
doc: Linux systemd /etc/os-release file
sources:
- type: FILE
  attributes:
    paths:
    - '/etc/os-release'
    - '/usr/lib/os-release'
provides: [os_release, os_major_version, os_minor_version]
supported_os: [Linux]
urls: ['https://www.freedesktop.org/software/systemd/man/os-release.html']
---
name: LinuxSystemdServices
doc: Linux systemd service unit files
sources:
- type: FILE
  attributes:
    paths:
    - '/etc/systemd/system.control/*.service'
    - '/etc/systemd/systemd.attached/*.service'
    - '/etc/systemd/system/*.service'
    - '/etc/systemd/user/*.service'
    - '/lib/systemd/system/*.service'
    - '/lib/systemd/user/*.service'
    - '/run/systemd/generator.early/*.service'
    - '/run/systemd/generator.late/*.service'
    - '/run/systemd/generator/*.service'
    - '/run/systemd/system.control/*.service'
    - '/run/systemd/systemd.attached/*.service'
    - '/run/systemd/system/*.service'
    - '/run/systemd/transient/*.service'
    - '/run/systemd/user/*.service'
    - '/run/user/*/systemd/generator.early/*.service'
    - '/run/user/*/systemd/generator.late/*.service'
    - '/run/user/*/systemd/generator/*.service'
    - '/run/user/*/systemd/transient/*.service'
    - '/run/user/*/systemd/user.control/*.service'
    - '/run/user/*/systemd/user/*.service'
    - '/usr/lib/systemd/system/*.service'
    - '/usr/lib/systemd/user/*.service'
    - '%%users.homedir%%/.config/systemd/user.control/*.service'
    - '%%users.homedir%%/.config/systemd/user/*.service'
    - '%%users.homedir%%/.local/share/systemd/user/*.service'
supported_os: [Linux]
urls: ['https://www.freedesktop.org/software/systemd/man/systemd.unit.html#System%20Unit%20Search%20Path']
---
name: LinuxSystemdTimers
doc: Linux systemd Timer files
sources:
- type: FILE
  attributes:
    paths:
    - '/etc/systemd/system.control/*.timer'
    - '/etc/systemd/systemd.attached/*.timer'
    - '/etc/systemd/system/*.timer'
    - '/etc/systemd/user/*.timer'
    - '/lib/systemd/system/*.timer'
    - '/lib/systemd/user/*.timer'
    - '/run/systemd/generator.early/*.timer'
    - '/run/systemd/generator.late/*.timer'
    - '/run/systemd/generator/*.timer'
    - '/run/systemd/system.control/*.timer'
    - '/run/systemd/systemd.attached/*.timer'
    - '/run/systemd/system/*.timer'
    - '/run/systemd/transient/*.timer'
    - '/run/systemd/user/*.timer'
    - '/run/user/*/systemd/generator.early/*.timer'
    - '/run/user/*/systemd/generator.late/*.timer'
    - '/run/user/*/systemd/generator/*.timer'
    - '/run/user/*/systemd/transient/*.timer'
    - '/run/user/*/systemd/user.control/*.timer'
    - '/run/user/*/systemd/user/*.timer'
    - '/usr/lib/systemd/system/*.timer'
    - '/usr/lib/systemd/user/*.timer'
    - '%%users.homedir%%/.config/systemd/user.control/*.timer'
    - '%%users.homedir%%/.config/systemd/user/*.timer'
    - '%%users.homedir%%/.local/share/systemd/user/*.timer'
supported_os: [Linux]
urls: ['https://www.freedesktop.org/software/systemd/man/systemd.timer.html#']
---
name: LinuxSysVInit
doc: Services started by sysv-style init scripts.
sources:
- type: FILE
  attributes:
    paths:
    - '/etc/rc.local'
    - '/etc/rc*.d'
    - '/etc/rc*.d/*'
    - '/etc/rc.d/rc*.d/*'
    - '/etc/rc.d/init.d/*'
supported_os: [Linux]
urls:
- 'http://savannah.nongnu.org/projects/sysvinit'
- 'http://docs.oracle.com/cd/E37670_01/E41138/html/ol_svcscripts.html'
---
name: LinuxTimezoneFile
doc: Linux timezone file.
sources:
- type: FILE
  attributes: {paths: ['/etc/timezone']}
supported_os: [Linux]
---
name: LinuxUdevRules
doc: Linux udev rules for the events received by the udev's daemon from the Linux kernel.
sources:
- type: FILE
  attributes:
    paths:
    - '/usr/lib/udev/rules.d/*'
    - '/etc/udev/rules.d/*'
supported_os: [Linux]
urls: ['https://wiki.archlinux.org/title/Udev']
---
name: LinuxUtmpFiles
doc: Linux btmp, utmp and wtmp login record files.
sources:
- type: FILE
  attributes:
    paths:
    - '/var/log/btmp'
    - '/var/log/wtmp'
    - '/var/run/utmp'
supported_os: [Linux]
urls: ['https://github.com/libyal/dtformats/blob/main/documentation/Utmp%20login%20records%20format.asciidoc']
---
name: LinuxWtmp
doc: Linux wtmp login record file
sources:
- type: FILE
  attributes: {paths: ['/var/log/wtmp']}
provides: [users.username, users.last_logon]
supported_os: [Linux]
urls: ['https://github.com/libyal/dtformats/blob/main/documentation/Utmp%20login%20records%20format.asciidoc']
---
name: LinuxXinetd
doc: Linux xinetd configurations.
sources:
- type: FILE
  attributes:
    paths:
    - '/etc/xinetd.conf'
    - '/etc/xinetd.d/**'
supported_os: [Linux]
urls: ['http://en.wikipedia.org/wiki/Xinetd']
---
name: ListProcessesPsCommand
doc: Full process listing via the 'ps' command.
sources:
- type: COMMAND
  attributes:
    args: ['-ef']
    cmd: /bin/ps
supported_os: [Linux]
urls: ['https://gitlab.com/procps-ng/procps']
---
name: LoadedKernelModules
doc: Linux output of lsmod.
sources:
- type: COMMAND
  attributes:
    args: []
    cmd: /sbin/lsmod
supported_os: [Linux]
---
name: LocateDatabase
doc: locate/mlocate database and updatedb configuration.
sources:
- type: FILE
  attributes:
    paths:
    - '/var/lib/mlocate/mlocate.db'
    - '/etc/updatedb.conf'
urls:
- 'https://linux.die.net/man/1/locate'
- 'https://linux.die.net/man/8/updatedb'
supported_os: [Linux]
---
name: LoginPolicyConfiguration
doc: Linux files related to login policy configuration.
sources:
- type: FILE
  attributes:
    paths:
    - '/etc/netgroup'
    - '/etc/nsswitch.conf'
    - '/etc/passwd'
    - '/etc/shadow'
    - '/etc/security/access.conf'
    - '/root/.k5login'
supported_os: [Linux]
---
name: MySQLHistoryFile
doc: MySQL History file.
sources:
- type: FILE
  attributes:
    paths:
    - '%%users.homedir%%/.mysql_history'
supported_os: [Linux]
---
name: NanoHistoryFile
doc: nano history file that logs search and replace strings.
sources:
- type: FILE
  attributes: {paths: ['%%users.homedir%%/.nano_history']}
supported_os: [Linux]
urls: ['https://www.nano-editor.org/dist/v2.2/nano.html']
---
name: NetgroupConfiguration
doc: Linux netgroup configuration.
sources:
- type: FILE
  attributes: {paths: ['/etc/netgroup']}
provides: [users.username]
supported_os: [Linux]
---
name: NtpConfFile
doc: The configuration file for ntpd. e.g. ntp.conf.
sources:
- type: FILE
  attributes: {paths: ['/etc/ntp.conf']}
supported_os: [Linux]
urls: ['https://www.freebsd.org/cgi/man.cgi?query=ntp.conf&sektion=5']
---
name: PCIDevicesInfoFiles
doc: Info and config files for PCI devices located on the system.
sources:
- type: FILE
  attributes:
    paths:
    - '/sys/bus/pci/devices/*/vendor'
    - '/sys/bus/pci/devices/*/device'
    - '/sys/bus/pci/devices/*/class'
    - '/sys/bus/pci/devices/*/config'
urls:
- 'https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-bus-pci'
- 'https://www.kernel.org/doc/Documentation/filesystems/sysfs-pci.txt'
- 'https://wiki.debian.org/HowToIdentifyADevice/PCI'
supported_os: [Linux]
---
name: PostgreSQLHistoryFile
doc: PostgreSQL History file.
sources:
- type: FILE
  attributes:
    paths:
    - '/var/lib/postgresql/.psql_history'
    - '/var/lib/pgsql/.psql_history'
    - '%%users.homedir%%/.psql_history'
supported_os: [Linux]
---
name: PythonHistoryFile
doc: Python REPL history file.
sources:
- type: FILE
  attributes: {paths: ['%%users.homedir%%/.python_history']}
supported_os: [Linux]
---
name: RHostsFile
doc: RHosts file.
sources:
- type: FILE
  attributes:
    paths:
    - '%%users.homedir%%/.rhosts'
supported_os: [Linux]
---
name: SambaLogFiles
doc: Samba log files.
sources:
- type: FILE
  attributes:
    paths:
    - '/var/log/samba/*.log'
supported_os: [Linux]
urls:
- 'https://wiki.samba.org/index.php/Configuring_Logging_on_a_Samba_Server'
---
name: SecretsServiceDatabaseFile
doc: The System Security Services Daemon (SSSD) database file.
sources:
- type: FILE
  attributes:
    paths:
    - '/var/lib/sss/secrets/secrets.ldb'
    - '/var/lib/sss/secrets/.secrets.mkey'
supported_os: [Linux]
urls:
- 'https://docs.pagure.org/SSSD.sssd/design_pages/secrets_service.html'
- 'https://www.fireeye.com/blog/threat-research/2020/04/kerberos-tickets-on-linux-red-teams.html'
---
name: SQLiteHistoryFile
doc: SQLite History file.
sources:
- type: FILE
  attributes:
    paths:
    - '%%users.homedir%%/.sqlite_history'
supported_os: [Linux]
---
name: SSHAuthorizedKeysFiles
doc: SSH authorized keys files.
sources:
- type: FILE
  attributes:
    paths:
    - '%%users.homedir%%/.ssh/authorized_keys'
    - '%%users.homedir%%/.ssh/authorized_keys2'
supported_os: [Linux]
---
name: SSHHostPubKeys
doc: SSH host public keys
sources:
- type: FILE
  attributes:
    paths:
    - '/etc/ssh/ssh_host_*_key.pub'
supported_os: [Linux]
---
name: SSHKnownHostsFiles
doc: SSH known_hosts files.
sources:
- type: FILE
  attributes:
    paths:
    - '%%users.homedir%%/.ssh/known_hosts'
    - '/etc/ssh/known_hosts'
supported_os: [Linux]
---
name: ThumbnailCacheFolder
doc: Thumbnail cache folder.
sources:
- type: FILE
  attributes: {paths: ['%%users.homedir%%/.thumbnails/**3']}
supported_os: [Linux]
---
name: UFWConfigFiles
doc: UFW Configuration files.
sources:
- type: FILE
  attributes:
    paths:
    - '/etc/default/ufw'
    - '/etc/ufw/sysctl.conf'
    - '/etc/ufw/*.rules'
    - '/etc/ufw/applications.d/*'
supported_os: [Linux]
---
name: UFWLogFile
doc: UFW Log file.
sources:
- type: FILE
  attributes:
    paths:
    - '/var/log/ufw.log'
supported_os: [Linux]
---
name: Viminfo
doc: Viminfo file.
sources:
- type: FILE
  attributes:
    paths:
    - '%%users.homedir%%/.viminfo'
supported_os: [Linux]
---
name: WgetHSTSdatabase
doc: Default wget HTTP Strict Transport Security (HSTS) database
sources:
- type: FILE
  attributes:
    paths:
    - '%%users.homedir%%/.wget-hsts'
supported_os: [Linux]
urls: ['https://www.gnu.org/software/wget/manual/html_node/HTTPS-_0028SSL_002fTLS_0029-Options.html']
---
name: XDGAutostartEntries
doc: XDG Autostart Entries
sources:
- type: FILE
  attributes:
    paths:
    - '/etc/xdg/autostart/*.desktop'
    - '%%users.homedir%%/.config/autostart/*.desktop'
supported_os: [Linux]
urls: ['https://specifications.freedesktop.org/autostart-spec/autostart-spec-latest.html']
---
name: YumSources
doc: Yum package sources list
sources:
- type: FILE
  attributes:
    paths:
    - '/etc/yum.conf'
    - '/etc/yum.repos.d/*.repo'
supported_os: [Linux]
urls: ['https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/html/System_Administrators_Guide/sec-Configuring_Yum_and_Yum_Repositories.html']
---
name: ZeitgeistDatabase
doc: Zeitgeist user activity database.
sources:
- type: FILE
  attributes:
    paths:
    - '%%users.homedir%%/.local/share/zeitgeist/activity.sqlite'
    - '%%users.homedir%%/.local/share/zeitgeist/activity.sqlite-wal'
urls: ['https://forensics.wiki/zeitgeist']
supported_os: [Linux]