This file is indexed.

/usr/share/artifacts/unix_common.yaml is in forensic-artifacts 20170808-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
# Artifacts common to Unix based OSs

name: AllShellConfigs
doc: Common shell configuration files containing global, users & root settings.
sources:
- type: ARTIFACT_GROUP
  attributes:
    names:
      - GlobalShellConfigs
      - UsersShellConfigs
      - RootUserShellConfigs
labels: [Configuration Files]
supported_os: [Linux, Darwin]
---
name: AllUsersShellHistory
doc: Common shell history files for root and users.
sources:
- type: ARTIFACT_GROUP
  attributes:
    names:
      - UsersShellHistory
      - RootUserShellHistory
labels: [History Files]
supported_os: [Linux, Darwin]
---
name: GlobalShellConfigs
doc: Unix global shell configuration files.
sources:
- type: FILE
  attributes:
    paths:
      - '/etc/bashrc'
      - '/etc/bash.bashrc'
      - '/etc/kshrc'
      - '/etc/csh.cshrc'
      - '/etc/csh.login'
      - '/etc/csh.logout'
      - '/etc/profile'
      - '/etc/zsh/zlogin'
      - '/etc/zsh/zlogout'
      - '/etc/zsh/zprofile'
      - '/etc/zsh/zshenv'
      - '/etc/zsh/zshrc'
      - '/etc/zshenv'
      - '/etc/zshrc'
labels: [Configuration Files]
supported_os: [Linux, Darwin]
---
name: RootUserShellConfigs
doc: Common unix root shell configuration files.
sources:
- type: FILE
  attributes:
    paths:
      - '/root/.bashrc'
      - '/root/.bash_profile'
      - '/root/.bash_logout'
      - '/root/.cshrc'
      - '/root/.ksh'
      - '/root/.logout'
      - '/root/.profile'
      - '/root/.tcsh'
      - '/root/.zlogin'
      - '/root/.zlogout'
      - '/root/.zprofile'
labels: [Configuration Files]
supported_os: [Linux, Darwin]
---
name: RootUserShellHistory
doc: Common unix root shell history files.
sources:
- type: FILE
  attributes:
    paths:
      - '/root/.bash_history'
      - '/root/.sh_history'
      - '/root/.zhistory'
      - '/root/.zsh_history'
labels: [History Files]
supported_os: [Linux, Darwin]
---
name: UnixGroups
doc: Unix groups file.
sources:
- type: FILE
  attributes: {paths: ['/etc/group']}
labels: [Authentication]
supported_os: [Linux, Darwin]
---
name: UnixHostsFile
doc: Unix hosts file
sources:
- type: FILE
  attributes: {paths: ['/etc/hosts']}
labels: [Configuration Files]
supported_os: [Linux, Darwin]
---
name: UnixPasswd
doc: Unix /etc/passwd file.
sources:
- type: FILE
  attributes: {paths: ['/etc/passwd']}
labels: [Authentication]
supported_os: [Linux, Darwin]
---
name: UnixShadowFile
doc: Unix /etc/shadow file.
sources:
- type: FILE
  attributes: {paths: ['/etc/shadow']}
labels: [Authentication]
supported_os: [Linux, Darwin]
---
name: UnixSudoersConfiguration
doc: Unix sudoers configuration.
sources:
- type: FILE
  attributes: {paths: ['/etc/sudoers']}
labels: [Authentication, Configuration Files]
supported_os: [Linux, Darwin]
---
name: UnixUsersGroups
doc: Unix users and groups files.
sources:
- type: ARTIFACT_GROUP
  attributes:
    names:
      - 'UnixPasswd'
      - 'UnixShadowFile'
      - 'UnixGroups'
labels: [Authentication]
supported_os: [Linux, Darwin]
---
name: UsersShellConfigs
doc: Common unix user shell configuration files.
sources:
- type: FILE
  attributes:
    paths:
      - '%%users.homedir%%/.bashrc'
      - '%%users.homedir%%/.bash_profile'
      - '%%users.homedir%%/.bash_logout'
      - '%%users.homedir%%/.cshrc'
      - '%%users.homedir%%/.ksh'
      - '%%users.homedir%%/.logout'
      - '%%users.homedir%%/.profile'
      - '%%users.homedir%%/.tcsh'
      - '%%users.homedir%%/.zlogin'
      - '%%users.homedir%%/.zlogout'
      - '%%users.homedir%%/.zprofile'
labels: [Configuration Files]
supported_os: [Linux, Darwin]
---
name: UsersShellHistory
doc: Common unix user shell history files.
sources:
- type: FILE
  attributes:
    paths:
      - '/%%users.homedir%%/.bash_history'
      - '/%%users.homedir%%/.sh_history'
      - '/%%users.homedir%%/.zhistory'
      - '/%%users.homedir%%/.zsh_history'
labels: [History Files]
supported_os: [Linux, Darwin]